diff options
Diffstat (limited to 'docs/refman/jsonschema.py')
-rw-r--r-- | docs/refman/jsonschema.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/refman/jsonschema.py b/docs/refman/jsonschema.py index 00c0b5e..e64bf06 100644 --- a/docs/refman/jsonschema.py +++ b/docs/refman/jsonschema.py @@ -26,7 +26,7 @@ class BaseObject(T.TypedDict): class Type(T.TypedDict): obj: str # References an object from `root.objects` - holds: T.Sequence[object] # Mypy does not support recusive dicts, but this should be T.List[Type]... + holds: T.Sequence[object] # Mypy does not support recursive dicts, but this should be T.List[Type]... class Argument(BaseObject): ''' |