Skip to content

Commit

Permalink
Merge pull request #90 from danielhundhausen/fix_mypy
Browse files Browse the repository at this point in the history
fix mypy 'attr-defined' error with matplotlib.cycler by ignoring it. …
  • Loading branch information
danielhundhausen authored Oct 9, 2024
2 parents 9d1b975 + 331e1c8 commit 752ff83
Show file tree
Hide file tree
Showing 3 changed files with 429 additions and 354 deletions.
2 changes: 1 addition & 1 deletion menu_tools/rate_table/menu_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class MenuTable:

def __init__(self, config: dict):
self.config: MenuConfig = MenuConfig(config)
self.arr_cache = {}
self.arr_cache: dict = {}
self.table: Optional[list[dict[str, Union[str, float]]]] = None
self._trigger_seeds: Optional[dict] = None
self._seed_masks: dict[str, np.ndarray] = {}
Expand Down
Loading

0 comments on commit 752ff83

Please sign in to comment.