Skip to content

Commit

Permalink
Restore missing imports
Browse files Browse the repository at this point in the history
  • Loading branch information
DarkaMaul committed Jun 12, 2024
1 parent d84ffd5 commit 9ff554f
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions slither/all_exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,15 @@
This module import all slither exceptions
"""
# pylint: disable=unused-import
from slither.slithir.exceptions import SlithIRError
from slither.solc_parsing.exceptions import ParsingError, VariableNotFound
from slither.core.exceptions import SlitherCoreError
from slither.exceptions import SlitherException

__all__ = [
"SlithIRError",
"ParsingError",
"VariableNotFound",
"SlitherCoreError",
"SlitherException",
]

0 comments on commit 9ff554f

Please sign in to comment.