From: Guillaume Abrioux Date: Wed, 13 Mar 2024 14:04:28 +0000 (+0100) Subject: ceph-volume: add missing import X-Git-Tag: testing/wip-pdonnell-testing-20240430.123648-reef-debug~96^2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=9b01baa97fdeb18ba4b7d11476037374d65da73b;p=ceph-ci.git ceph-volume: add missing import This adds the missing import `List` (from typing). Probably missed by 36c83bf54243. Fixes: https://tracker.ceph.com/issues/64898 Signed-off-by: Guillaume Abrioux (cherry picked from commit 1abd3e659ff59d7b0c5c2360a665c395a748e3ff) --- diff --git a/src/ceph-volume/ceph_volume/devices/lvm/zap.py b/src/ceph-volume/ceph_volume/devices/lvm/zap.py index 7d808a5f4fc..f512a3bde1d 100644 --- a/src/ceph-volume/ceph_volume/devices/lvm/zap.py +++ b/src/ceph-volume/ceph_volume/devices/lvm/zap.py @@ -10,6 +10,7 @@ from ceph_volume.api import lvm as api from ceph_volume.util import system, encryption, disk, arg_validators, str_to_int, merge_dict from ceph_volume.util.device import Device from ceph_volume.systemd import systemctl +from typing import List logger = logging.getLogger(__name__) mlogger = terminal.MultiLogger(__name__)