Skip to content

Commit 446f987

Browse files
committed
Format with black==24.4.2
1 parent 80a04c4 commit 446f987

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

tests/test_declare.py

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -364,14 +364,11 @@ class Table_With_Underscores(dj.Manual):
364364

365365
def test_hidden_attributes(schema_any):
366366
assert (
367-
list(Experiment().heading._attributes.keys())[-1].split("_")[2]
368-
== "timestamp"
367+
list(Experiment().heading._attributes.keys())[-1].split("_")[2] == "timestamp"
369368
)
370369
assert (
371-
len([a for a in Experiment().heading._attributes.values() if a.is_hidden])
372-
!= 0
370+
len([a for a in Experiment().heading._attributes.values() if a.is_hidden]) != 0
373371
)
374372
assert (
375-
len([a for a in Experiment().heading.attributes.values() if a.is_hidden])
376-
== 0
373+
len([a for a in Experiment().heading.attributes.values() if a.is_hidden]) == 0
377374
)

0 commit comments

Comments
 (0)