Skip to content

Commit

Permalink
fix type checking with mypy 920
Browse files Browse the repository at this point in the history
  • Loading branch information
jenshnielsen committed Dec 17, 2021
1 parent 341e2fb commit 782a354
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 782a354

Please sign in to comment.