From b0d6e2f3228e8ccf3e64f2a3c104b849efdd6989 Mon Sep 17 00:00:00 2001 From: Philippe Tillet Date: Sun, 30 Jan 2022 20:27:44 -0800 Subject: [PATCH] [STYLE] run autopep --- python/triton/code_gen.py | 1 - 1 file changed, 1 deletion(-) diff --git a/python/triton/code_gen.py b/python/triton/code_gen.py index 6e932859e..dc2b375b8 100644 --- a/python/triton/code_gen.py +++ b/python/triton/code_gen.py @@ -472,7 +472,6 @@ class CodeGenerator(ast.NodeVisitor): def visit_Str(self, node): return triton.language.constexpr(ast.literal_eval(node)) - def visit_Attribute(self, node): lhs = self.visit(node.value) return getattr(lhs, node.attr)