Skip to content

Commit

Permalink
Fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
bjhardcastle committed Dec 5, 2023
1 parent 70d19da commit c05fc7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/npc_shields/widgets.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def __init__(
save_paths = pathlib.Path(save_paths)
if not isinstance(save_paths, Iterable):
save_paths = (save_paths, )
self.save_paths = save_paths
self.save_paths: Iterable[pathlib.Path] = save_paths # type: ignore [assignment]

self.insertion = insertion
self.initial_targets = dict(insertion.probes)
Expand Down

0 comments on commit c05fc7e

Please sign in to comment.