Skip to content

Commit 9136ad0

Browse files
committed
Removed spurious prints.
1 parent fff540a commit 9136ad0

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

scalene/scalene_magics.py

-2
Original file line numberDiff line numberDiff line change
@@ -53,15 +53,13 @@ def scalene(self, line: str, cell: str = "") -> None:
5353
@line_magic
5454
def scrun(self, line: str = "") -> None:
5555
"""%scrun magic: see https://github.com/plasma-umass/scalene for usage info."""
56-
print("SCRUN MAGIC")
5756
if line:
5857
sys.argv = ["scalene", "--ipython", *line.split()]
5958
(args, left) = ScaleneParseArgs.parse_args()
6059
if args:
6160
self.run_code(args, " ".join(left)) # type: ignore
6261

6362
def load_ipython_extension(ip: Any) -> None:
64-
print("LOADING")
6563
ip.register_magics(ScaleneMagics)
6664
with contextlib.suppress(Exception):
6765
# For some reason, this isn't loading correctly on the web.

0 commit comments

Comments
 (0)