Skip to content

Commit e8d11a5

Browse files
committed
Fix circular imports introduced in #3267
1 parent 3340df0 commit e8d11a5

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

netsim/cli/show/defaults.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from box import Box
99

1010
from ...utils import log, strings
11-
from . import show_common_parser
11+
from .utils import show_common_parser
1212

1313

1414
def parse() -> argparse.ArgumentParser:

netsim/cli/show/outputs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
from ...outputs import _TopologyOutput
1212
from ...utils import files as _files
1313
from ...utils import strings
14-
from . import show_common_parser
14+
from .utils import show_common_parser
1515

1616

1717
def parse() -> argparse.ArgumentParser:

netsim/cli/show/providers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from ... import data
1010
from ...utils import log, strings
1111
from ..external_commands import test_probe
12-
from . import show_common_parser
12+
from .utils import show_common_parser
1313

1414

1515
def parse() -> argparse.ArgumentParser:

netsim/cli/show/reports.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
from ... import data
1212
from ...utils import files as _files
1313
from ...utils import strings
14-
from . import show_common_parser
14+
from .utils import show_common_parser
1515

1616

1717
def parse() -> argparse.ArgumentParser:

0 commit comments

Comments
 (0)