Merge pull request #2927 from ericvergnaud/fix-python3-typo

Fix undefined value
This commit is contained in:
Terence Parr 2020-10-10 16:11:22 -07:00 committed by GitHub
commit 69687b96bb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -158,7 +158,7 @@ class SingletonPredictionContext(PredictionContext):
class EmptyPredictionContext(SingletonPredictionContext):
def __init__(self):
super().__init__(None, self.EMPTY_RETURN_STATE)
super().__init__(None, PredictionContext.EMPTY_RETURN_STATE)
def isEmpty(self):
return True