Skip to content

Commit

Permalink
Lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
dagardner-nv committed Nov 26, 2024
1 parent 65f5aa4 commit 047f2e5
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions ci/release/download_deps.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,13 @@
UTILITIES_RELEASE_DIR = os.path.join(PROJ_ROOT, "external/utilities/ci/release")

sys.path.append(UTILITIES_RELEASE_DIR)
from download_deps_lib import TAG_BARE
from download_deps_lib import TAG_NAME_DASH_BARE
from download_deps_lib import download_source_deps
from download_deps_lib import parse_args
# pylint: disable=wrong-import-position
from download_deps_lib import TAG_BARE # noqa: E402
from download_deps_lib import TAG_NAME_DASH_BARE # noqa: E402
from download_deps_lib import download_source_deps # noqa: E402
from download_deps_lib import parse_args # noqa: E402

# pylint: enable=wrong-import-position

# In some cases multiple packages are derived from a single upstream repo, please keep sorted
PACKAGE_ALIASES = { # <conda package nanme>: <upstream name>
Expand Down

0 comments on commit 047f2e5

Please sign in to comment.