Skip to content

Commit

Permalink
Fix minor linting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
willkg committed Jul 1, 2024
1 parent 4e5f025 commit 4d04e98
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ def test_parse_class_config():

def test_get_parser():
assert get_parser(bool) == parse_bool
assert get_parser(str) == str
assert get_parser(str) is str

def foo():
pass
Expand Down Expand Up @@ -516,7 +516,7 @@ def test_configurationmissingerror():
)
assert exc_info.value.namespace == ["foo"]
assert exc_info.value.key == "DOESNOTEXISTNOWAY"
assert exc_info.value.parser == str
assert exc_info.value.parser is str


def test_config_from_dict():
Expand Down

0 comments on commit 4d04e98

Please sign in to comment.