Releases: analyticsinmotion/werpy
Releases · analyticsinmotion/werpy
Version 0.0.3
Bug Fix
- Fixed a bug contained within the modules that was causing a Cyclic Import issue (R0401). One of the import statements was missing a period at the start of the module name. The fix has been tested and deployed successfully.
Version 0.0.2
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.