Skip to content

Commit

Permalink
Update JsonLoader import (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
AttilaGombosER authored Sep 13, 2024
1 parent 1424664 commit 4a7dea8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
Expand Down
3 changes: 2 additions & 1 deletion bin/debian-package-downloader.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
import os
from argparse import ArgumentParser, ArgumentDefaultsHelpFormatter, Namespace

from common_utility import JsonLoader, SessionProvider, FileDownloader
from common_utility import SessionProvider, FileDownloader
from common_utility.jsonLoader import JsonLoader
from context_logger import get_logger, setup_logging

from package_downloader import DebDownloader, RepositoryProvider, AssetDownloader, PackageDownloader
Expand Down
2 changes: 1 addition & 1 deletion package_downloader/packageDownloader.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# SPDX-FileCopyrightText: 2024 Attila Gombos <[email protected]>
# SPDX-License-Identifier: MIT

from common_utility import IJsonLoader
from common_utility.jsonLoader import IJsonLoader
from context_logger import get_logger

from package_downloader import IDebDownloader, PackageConfig
Expand Down
2 changes: 1 addition & 1 deletion tests/packageDownloaderTest.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from unittest import TestCase, mock
from unittest.mock import MagicMock

from common_utility import IJsonLoader
from common_utility.jsonLoader import IJsonLoader
from context_logger import setup_logging

from package_downloader import PackageDownloader, IDebDownloader, PackageConfig
Expand Down

0 comments on commit 4a7dea8

Please sign in to comment.