Skip to content

Commit

Permalink
Update trace.py - parenthesis fix
Browse files Browse the repository at this point in the history
so "rb" argument is used by open() rather than pickle.load()
  • Loading branch information
ralphpeterson authored Apr 10, 2024
1 parent ead9ca7 commit 01be88c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion snub/gui/tracks/trace.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def __init__(
if data is not None:
self.data = data
else:
self.data = pickle.load(open(data_path), "rb")
self.data = pickle.load(open(data_path, "rb"))

if initial_visible_traces is not None:
self.visible_traces = set(initial_visible_traces)
Expand Down

0 comments on commit 01be88c

Please sign in to comment.