Skip to content

Commit

Permalink
Fix ruff linting
Browse files Browse the repository at this point in the history
  • Loading branch information
nexy7574 committed Jan 20, 2025
1 parent bd0752e commit f1dfcfe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,6 @@ def test_client_init(
expected_attrs = kwargs
client = niobot.NioBot(**kwargs)
for expected_attr_name, expected_attr_value in expected_attrs.items():
assert (
getattr(client, expected_attr_name) == expected_attr_value
), f"Attribute {expected_attr_name} is not {expected_attr_value}"
assert getattr(client, expected_attr_name) == expected_attr_value, (
f"Attribute {expected_attr_name} is not {expected_attr_value}"
)

0 comments on commit f1dfcfe

Please sign in to comment.