Skip to content

Commit 06276f0

Browse files
committed
trigger pipeline
1 parent 219faa3 commit 06276f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/python-fastui/fastui/json_schema.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ def deference_json_schema(
310310
if def_schema is None:
311311
raise ValueError(f'Invalid $ref "{ref}", not found in {defs}')
312312
else:
313-
return def_schema.copy(), required # clone dict to avoid attribute leakage via shared schema
313+
return def_schema.copy(), required # clone dict to avoid attribute leakage via shared schema.
314314
elif any_of := schema.get('anyOf'):
315315
if len(any_of) == 2 and sum(s.get('type') == 'null' for s in any_of) == 1:
316316
# If anyOf is a single type and null, then it is optional

0 commit comments

Comments
 (0)