Skip to content

Commit cae2b22

Browse files
ericvergnaudparrt
authored andcommitted
Fix type hint
1 parent 2c07aa8 commit cae2b22

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

runtime/Python3/src/antlr4/atn/ATNDeserializer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def __init__(self, options : ATNDeserializationOptions = None):
2222
options = ATNDeserializationOptions.defaultOptions
2323
self.deserializationOptions = options
2424

25-
def deserialize(self, data : int):
25+
def deserialize(self, data : [int]):
2626
self.data = data
2727
self.pos = 0
2828
self.checkVersion()

0 commit comments

Comments
 (0)