Skip to content

Commit aab63a0

Browse files
committed
Formatting
1 parent b251826 commit aab63a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pdl/pdl_schema_error_analyzer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ def analyze_errors(defs, schema, data, loc: LocationType) -> list[str]: # noqa:
135135
the_type_exists = False
136136
for item in schema["anyOf"]:
137137
if item == {}:
138-
the_type_exists = True
138+
the_type_exists = True
139139
if "type" in item and item["type"] == the_type:
140140
the_type_exists = True
141141
if "enum" in item and data in item["enum"]:

0 commit comments

Comments
 (0)