Skip to content

Commit

Permalink
Merge pull request #248 from jenshnielsen/mypy920
Browse files Browse the repository at this point in the history
fix type checking with mypy 920
  • Loading branch information
astafan8 committed Dec 17, 2021
2 parents 42f2a84 + 62c93d2 commit 5f59f8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plottr/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def config(names: Optional[List[str]] = None) -> \
for name in names:
modn = f"plottrcfg_{name}"
filen = f"{modn}.py"
this_cfg = {}
this_cfg: Dict[str, Any] = {}
for filep in configFiles(filen)[::-1]:
spec = spec_from_file_location(modn, filep)
if spec is None:
Expand Down

0 comments on commit 5f59f8d

Please sign in to comment.