Skip to content

Commit

Permalink
typing.tuple
Browse files Browse the repository at this point in the history
  • Loading branch information
keithasaurus committed Aug 19, 2024
1 parent c0d5776 commit 1b03141
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion koda_validate/tuple.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def __init__(
self.fields = fields
self.validate_object = validate_object
self.coerce = coerce
self._len_predicate: Predicate[tuple[Any, ...]] = ExactItemCount(len(fields))
self._len_predicate: Predicate[Tuple[Any, ...]] = ExactItemCount(len(fields))
self._wrapped_fields_sync = [_wrap_sync_validator(v) for v in fields]
self._wrapped_fields_async = [_wrap_async_validator(v) for v in fields]

Expand Down

0 comments on commit 1b03141

Please sign in to comment.