Skip to content

Commit

Permalink
Fix flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
taldcroft committed Sep 21, 2023
1 parent fb68961 commit 3476f87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ska_helpers/tests/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ def test_temp_env_var():
def test_convert_to_int_float_str(value, type_, expected):
out = convert_to_int_float_str(value)
assert out == expected
assert type(out) == type_
assert type(out) is type_ # noqa: E721


def test_convert_to_int_float_str_error():
Expand Down

0 comments on commit 3476f87

Please sign in to comment.