Skip to content

Commit a6e8075

Browse files
committed
fix typing
1 parent c7e1dcf commit a6e8075

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/symbols/call.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ def __init__(self, entry: SymbolID, arglist: Iterable[SymbolARGUMENT], lineno: i
4040
super().__init__()
4141
self.entry = entry
4242
self.args = arglist # Func. call / array access
43-
self.lineno = lineno
44-
self.filename = filename
43+
self.lineno: int = lineno
44+
self.filename: str = filename
4545

4646
ref = entry.ref
4747
if isinstance(ref, FuncRef):

0 commit comments

Comments
 (0)