Skip to content

Commit 55f6318

Browse files
Ignore EnvObject when printing expressions in the REPL (#122)
1 parent c468c20 commit 55f6318

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scrapscript.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4519,7 +4519,7 @@ def runsource(self, source: str, filename: str = "<input>", symbol: str = "singl
45194519
self.env.update(result.env)
45204520
else:
45214521
self.env["_"] = result
4522-
print(result)
4522+
print(result)
45234523
except UnexpectedEOFError:
45244524
# Need to read more text
45254525
return True

0 commit comments

Comments
 (0)