Skip to content

Commit

Permalink
Update tron/eventbus.py
Browse files Browse the repository at this point in the history
  • Loading branch information
nemacysts authored Nov 10, 2023
1 parent 9bb8f35 commit a11d078
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tron/eventbus.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ def sync_load_log(self):

def sync_save_log(self, reason: str) -> None:
started = time.time()
pickle_file = os.path.join(self.log_dir, f"events.pickle")
pickle_file = os.path.join(self.log_dir, "events.pickle")
with open(pickle_file, "wb") as f:
pickle.dump(self.event_log, f)

Expand Down

0 comments on commit a11d078

Please sign in to comment.