Skip to content

Commit 21a064f

Browse files
committed
update
1 parent 6458f86 commit 21a064f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

schema_entry/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ def parse_schema_as_cmd(key: str, schema: PropertyType, parser: argparse.Argumen
220220

221221
def _remove_sigal_allOf(x: Dict[str, Any]) -> Dict[str, Any]:
222222
info: Dict[str, Any] = {}
223-
if x.get("allOf") and isinstance(x['allOf'], list) :
223+
if x.get("allOf") and isinstance(x['allOf'], list):
224224
if len(x["allOf"]) == 1:
225225
info.update(**x["allOf"][0])
226226
del x["allOf"]

0 commit comments

Comments
 (0)