Skip to content

Commit

Permalink
Correct ruff error
Browse files Browse the repository at this point in the history
  • Loading branch information
jobar8 committed Oct 17, 2024
1 parent 67c37a8 commit 651394d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/attractor_explorer/attractors.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ class ParameterSets(param.Parameterized):
'saved_attractors.yml', check_exists=False, search_paths=[data_folder.as_posix()]
)
current = param.Callable(lambda: None, precedence=-1)
attractors: dict[str, Attractor] = {}
attractors: dict[str, Attractor]

load = param.Action(lambda x: x._load())
randomize = param.Action(lambda x: x._randomize())
Expand Down

0 comments on commit 651394d

Please sign in to comment.