You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
chore: Linting, Clean-up, and Standardization (#66)
Came in to fix one Linting issue, ended up doing a more detailed clean-up:
* replaced all instances of `type(object) == Type` for `isinstance(object, type)`
* replaced all instances of `"some {} string".format(x)` with `f"some {x} string"
* simplified long compound comparisons to reduce risk of bugs
* fixed a bug
There are still more improvements that could be made, but I've already done way more than I intended.
0 commit comments