Skip to content

Commit

Permalink
Fix mypy issue by using an explicit export
Browse files Browse the repository at this point in the history
Fixes the following error when running mypy in `--strict` mode:

    error: Module "simple_pid" does not explicitly export attribute "PID";
  • Loading branch information
rnestler authored and m-lundberg committed Apr 25, 2022
1 parent 15a030f commit 1e1e1ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion simple_pid/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
from .PID import PID
from simple_pid.PID import PID as PID

0 comments on commit 1e1e1ee

Please sign in to comment.