We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa06bfd commit afa2cbcCopy full SHA for afa2cbc
interpreter/profiles.py
@@ -147,7 +147,9 @@ def load(self, path):
147
# This avoids loading the full interpreter module which is resource intensive
148
content = content.replace(
149
"from interpreter import interpreter",
150
- "class Interpreter:\n pass\ninterpreter = Interpreter()",
+ "class Interpreter:\n"
151
+ " pass\n"
152
+ "interpreter = Interpreter()",
153
)
154
155
# Execute the modified profile content
0 commit comments