Skip to content

Commit

Permalink
fix mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
gilesknap committed Dec 12, 2024
1 parent 14353aa commit 2d27aff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ibek/runtime_cmds/autosave.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def __init__(self, db_substitution_file: Path):
"""
self.db_substitution_file = db_substitution_file
self.subst_entries = self.parse_subst()
self.settings_req: Dict[str, List[self.SubstEntry]] = {}
self.settings_req: Dict[str, List[self.SubstEntry]] = {} # type: ignore
for suffix in ["settings", "positions"]:
self.settings_req[suffix] = self.find_req(suffix)

Expand Down

0 comments on commit 2d27aff

Please sign in to comment.