From 14cbf6d567b7e945f4a497d4e5b0d0631ec50f0a Mon Sep 17 00:00:00 2001 From: Varsha Rao Date: Wed, 8 Apr 2020 11:39:29 +0530 Subject: [PATCH] mgr/volumes: Remove unused typing module Signed-off-by: Varsha Rao --- src/pybind/mgr/volumes/fs/nfs.py | 4 ---- src/pybind/mgr/volumes/module.py | 2 -- 2 files changed, 6 deletions(-) diff --git a/src/pybind/mgr/volumes/fs/nfs.py b/src/pybind/mgr/volumes/fs/nfs.py index b7e19f4b8822e..4a868caec3ad7 100644 --- a/src/pybind/mgr/volumes/fs/nfs.py +++ b/src/pybind/mgr/volumes/fs/nfs.py @@ -1,10 +1,6 @@ import json import errno import logging -try: - from typing import Dict, List, Optional -except ImportError: - pass import cephfs import orchestrator diff --git a/src/pybind/mgr/volumes/module.py b/src/pybind/mgr/volumes/module.py index a1ab40d1658cd..e0017c3960eab 100644 --- a/src/pybind/mgr/volumes/module.py +++ b/src/pybind/mgr/volumes/module.py @@ -1,8 +1,6 @@ import errno import json -from typing import Optional - from mgr_module import MgrModule import orchestrator -- 2.39.5