Skip to content

Commit

Permalink
Remove unnecessary detail (event) from hot reload print (google#223)
Browse files Browse the repository at this point in the history
  • Loading branch information
wwwillchen authored and richard-to committed May 13, 2024
1 parent f254b13 commit 338c4be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mesop/bin/bin.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ def on_modified(self, event: FileSystemEvent):
if src_path.endswith(".py"):
try:
self.count += 1
print(f"Hot reload #{self.count}: starting...", event)
print(f"Hot reload #{self.count}: starting...")
reset_runtime()
execute_main_module(absolute_path=self.absolute_path)
hot_reload_finished()
Expand Down

0 comments on commit 338c4be

Please sign in to comment.