Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
README.md | 2023-05-01 | 256 Bytes | |
Version 0.0.2.tar.gz | 2023-05-01 | 122.5 kB | |
Version 0.0.2.zip | 2023-05-01 | 132.1 kB | |
Totals: 3 Items | 254.8 kB | 0 |
General Changes
- Added Module Docstrings
Bug Fix
- Fixed an unidiomatic-typecheck (C0123) from type() to isinstance(). The idiomatic way to perform an explicit typecheck in Python is to use isinstance(x, y) rather than type(x) == Y.