Skip to content

Commit 07244c3

Browse files
committed
Format with black==24.8.0
1 parent 7b11db2 commit 07244c3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/test_attributes.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,9 @@ def validate(table, inserted_value, expected_type, expected_value, client, token
5050
headers=dict(Authorization=f"Bearer {token}"),
5151
)
5252
assert resp.status_code == 200, f"Failed to get records: {resp.text=}"
53-
assert resp.json is not None, f"resp.json is None: {resp=} {dir(resp)=} {resp.text=}"
53+
assert (
54+
resp.json is not None
55+
), f"resp.json is None: {resp=} {dir(resp)=} {resp.text=}"
5456
assert "records" in resp.json, f"No records in response: {resp.json=}"
5557
REST_records = resp.json["records"]
5658
assert len(REST_records) == 1

0 commit comments

Comments
 (0)