Commit e8456e1
authored
Merge pull request #709 from sed-i/feature/typing
#709
When running static checks, mypy complains:
```
tests/integration/test_bundle.py:24: error: Skipping analyzing "juju": module is installed, but missing library stubs or py.typed marker [import]
import juju
^
```
Error goes away after introducing the py.typed marker.
Ref: [Mypy docs for PEP-516](https://mypy.readthedocs.io/en/latest/installed_packages.html#creating-pep-561-compatible-packages)2 files changed
Lines changed: 1 addition & 0 deletions
Whitespace-only changes.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
30 | 30 | | |
31 | 31 | | |
32 | 32 | | |
| 33 | + | |
33 | 34 | | |
34 | 35 | | |
35 | 36 | | |
| |||
0 commit comments