Skip to content

Commit

Permalink
Move failure module into error_handling subpkg
Browse files Browse the repository at this point in the history
  • Loading branch information
lmmx committed Nov 7, 2022
1 parent 641ef01 commit 310f844
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/mvdef/core/check.py
Expand Up @@ -20,7 +20,7 @@
)
from pyflakes.messages import UnusedImport

from ..failure import FailableMixIn
from ..error_handling.failure import FailableMixIn

__all__ = ["Checker"]

Expand Down
@@ -1,6 +1,6 @@
from sys import stderr

from .error_handling.exceptions import CheckFailure
from .exceptions import CheckFailure

__all__ = ["FailableMixIn"]

Expand Down
2 changes: 1 addition & 1 deletion src/mvdef/transfer/base.py
Expand Up @@ -2,7 +2,7 @@

from ..core.check import Checker
from ..error_handling.exceptions import CheckFailure
from ..failure import FailableMixIn
from ..error_handling.failure import FailableMixIn
from ..log_utils import set_up_logging

__all__ = ["MvDefBase"]
Expand Down

0 comments on commit 310f844

Please sign in to comment.