Skip to content

Commit

Permalink
annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
hudson-ai committed Oct 29, 2024
1 parent fab1385 commit 4caa003
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion guidance/library/_json.py
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ def get_sibling_keys(node: Mapping[str, Any], key: str) -> set[str]:
class GenJson:
item_separator = ", "
key_separator = ": "
def __init__(self, schema: JSONSchema, separators: Optional[tuple[str, str]] = None, strict_properties=True) -> None:
def __init__(self, schema: JSONSchema, separators: Optional[tuple[str, str]] = None, strict_properties: bool = True) -> None:
self.schema = schema
if separators is not None:
self.item_separator, self.key_separator = separators
Expand Down

0 comments on commit 4caa003

Please sign in to comment.