Skip to content

Commit 2e9f3b6

Browse files
committed
Break up lines for dummy class definition to clarify indentation
1 parent f38dff6 commit 2e9f3b6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

interpreter/profiles.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,9 @@ def load(self, path):
147147
# This avoids loading the full interpreter module which is resource intensive
148148
content = content.replace(
149149
"from interpreter import interpreter",
150-
"class Interpreter:\n pass\ninterpreter = Interpreter()",
150+
"class Interpreter:\n"
151+
" pass\n"
152+
"interpreter = Interpreter()",
151153
)
152154

153155
# Execute the modified profile content

0 commit comments

Comments
 (0)