From 39b4b839770c7b76cf92a3347b2b2f9957aa8992 Mon Sep 17 00:00:00 2001 From: rocky Date: Tue, 7 May 2024 11:33:03 -0400 Subject: [PATCH] Small set literal change --- uncompyle6/parsers/parse38.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uncompyle6/parsers/parse38.py b/uncompyle6/parsers/parse38.py index 0aee3fa1b..4ecb5e59a 100644 --- a/uncompyle6/parsers/parse38.py +++ b/uncompyle6/parsers/parse38.py @@ -417,7 +417,7 @@ def customize_grammar_rules(self, tokens, customize): [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 # a specific instruction seen.