Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
BerndSchuller committed Jun 20, 2024
1 parent 06fa49c commit 226c0dd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ repos:
args: ["--config", "pyproject.toml"]

- repo: https://github.com/pycqa/flake8
rev: 5.0.4
rev: 7.1.0
hooks:
- id: flake8
additional_dependencies:
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/cli/test_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def test_base_setup(self):
cmd.config["registry"],
)
cmd.create_credential()
self.assertTrue(type(cmd.credential) == UsernamePassword)
self.assertTrue(isinstance(cmd.credential, UsernamePassword))


if __name__ == "__main__":
Expand Down

0 comments on commit 226c0dd

Please sign in to comment.