We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80a04c4 commit 446f987Copy full SHA for 446f987
tests/test_declare.py
@@ -364,14 +364,11 @@ class Table_With_Underscores(dj.Manual):
364
365
def test_hidden_attributes(schema_any):
366
assert (
367
- list(Experiment().heading._attributes.keys())[-1].split("_")[2]
368
- == "timestamp"
+ list(Experiment().heading._attributes.keys())[-1].split("_")[2] == "timestamp"
369
)
370
371
- len([a for a in Experiment().heading._attributes.values() if a.is_hidden])
372
- != 0
+ len([a for a in Experiment().heading._attributes.values() if a.is_hidden]) != 0
373
374
375
- len([a for a in Experiment().heading.attributes.values() if a.is_hidden])
376
- == 0
+ len([a for a in Experiment().heading.attributes.values() if a.is_hidden]) == 0
377
0 commit comments