Skip to content
Snippets Groups Projects
Commit 614a62a2 authored by pycsham's avatar pycsham
Browse files

fixed type error of set

parent eb475e4a
No related branches found
No related tags found
No related merge requests found
......@@ -59,7 +59,7 @@ def idsToTokens(tokens):
# a set that contains keywords that are in java but not in joos
wrongKeyWordDict = set(
wrongKeyWordDict = {
'assert',
'break',
'case',
......@@ -85,8 +85,8 @@ wrongKeyWordDict = set(
'throws',
'transient',
'try',
'volatile'
)
'volatile',
}
######################## DFA Stuff ###################################
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment