Skip to content

Commit

Permalink
Ignore lint error about loader (#183)
Browse files Browse the repository at this point in the history
* Ignore lint error about loader

* Blacken
  • Loading branch information
busunkim96 authored and jkwlui committed Jan 23, 2019
1 parent ceca646 commit 01409d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion synthtool/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def main(synthfile: str, metadata: str, extra_args: Sequence[str]):
if spec.loader is None:
raise ImportError("Could not import synth.py")

spec.loader.exec_module(synth_module)
spec.loader.exec_module(synth_module) # type: ignore

else:
synthtool.log.exception(f"{synth_file} not found.")
Expand Down

0 comments on commit 01409d8

Please sign in to comment.