Skip to content

Commit 0097c9e

Browse files
committed
chore: ruff fix
1 parent 605de21 commit 0097c9e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/validate_data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
class SimselectSchema(Schema):
1818
def validate(self, data, _is_simselect_schema=True):
1919
data = super().validate(data, _is_simselect_schema=False)
20-
if _is_simselect_schema and not "simulator" in data["features"]:
20+
if _is_simselect_schema and "simulator" not in data["features"]:
2121
if "biological_level" in data:
2222
raise SchemaError("biological_level is only valid for simulators")
2323
return data

0 commit comments

Comments
 (0)