Skip to content

Commit

Permalink
improve import
Browse files Browse the repository at this point in the history
  • Loading branch information
montyly committed Jan 6, 2023
1 parent ed9cbf8 commit 8e4d388
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions slither/solc_parsing/declarations/using_for_top_level.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,19 @@
Using For Top Level module
"""
import logging
from typing import TYPE_CHECKING, Dict, Union, Any
from typing import TYPE_CHECKING, Dict, Union

from slither.core.compilation_unit import SlitherCompilationUnit
from slither.core.declarations.using_for_top_level import UsingForTopLevel
from slither.core.scope.scope import FileScope
from slither.core.solidity_types import TypeAliasTopLevel
from slither.core.declarations import (
StructureTopLevel,
EnumTopLevel,
)
from slither.core.declarations.using_for_top_level import UsingForTopLevel
from slither.core.scope.scope import FileScope
from slither.core.solidity_types import TypeAliasTopLevel
from slither.core.solidity_types.user_defined_type import UserDefinedType
from slither.solc_parsing.declarations.caller_context import CallerContextExpression
from slither.solc_parsing.solidity_types.type_parsing import parse_type
from slither.core.solidity_types.user_defined_type import UserDefinedType

if TYPE_CHECKING:
from slither.solc_parsing.slither_compilation_unit_solc import SlitherCompilationUnitSolc
Expand Down

0 comments on commit 8e4d388

Please sign in to comment.