Skip to content

Commit

Permalink
component.py - using Python3's relative import
Browse files Browse the repository at this point in the history
  • Loading branch information
pchakraborty committed Apr 13, 2024
1 parent f3f521e commit ad71e17
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/mepo/component.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,12 @@
import textwrap

from collections import namedtuple

from mepo.utilities.version import MepoVersion
from mepo.utilities import shellcmd, mepoconfig
from urllib.parse import urlparse

from .utilities import shellcmd
from .utilities import mepoconfig
from .utilities.version import MepoVersion

# This will be used to store the "final nodes" from each subrepo
original_final_node_list = []

Expand Down

0 comments on commit ad71e17

Please sign in to comment.