Small set literal change

This commit is contained in:
rocky
2024-05-07 11:33:03 -04:00
parent 458d4727dd
commit 39b4b83977

View File

@@ -417,7 +417,7 @@ class Python38Parser(Python37Parser):
[opname[: opname.rfind("_")] for opname in self.seen_ops] [opname[: opname.rfind("_")] for opname in self.seen_ops]
) )
custom_ops_processed = set(["DICT_MERGE"]) custom_ops_processed = {"DICT_MERGE"}
# Loop over instructions adding custom grammar rules based on # Loop over instructions adding custom grammar rules based on
# a specific instruction seen. # a specific instruction seen.