We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d58edec commit e5898e2Copy full SHA for e5898e2
slither/core/declarations/contract.py
@@ -67,7 +67,7 @@ def __init__(self, compilation_unit: "SlitherCompilationUnit"):
67
self._variables_ordered: List["StateVariable"] = []
68
self._modifiers: Dict[str, "Modifier"] = {}
69
self._functions: Dict[str, "FunctionContract"] = {}
70
- self._linearizedBaseContracts = List[int]
+ self._linearizedBaseContracts: List[int] = []
71
72
# The only str is "*"
73
self._using_for: Dict[Union[str, Type], List[str]] = {}
0 commit comments