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
Merge pull request #928 from cderici/fix-linter-issues
#928
#### Description
This fixes [the linter issues seen in the CI](https://github.com/juju/python-libjuju/actions/runs/5727882624/job/15521577432?pr=927) recently in #927. In particular, it changes the uses of `type(something) == T` into `isinstance(something, T)`. It also simplifies logical statement `~a or ~b == ~(a and b)`.
#### QA Steps
Linter job in the CI should pass. Could also be run manually by `make lint`.
0 commit comments