Skip to content

Commit

Permalink
style: fix linter error
Browse files Browse the repository at this point in the history
  • Loading branch information
tzoiker committed Jan 9, 2024
1 parent a595729 commit cce8829
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion simdjson_schemaful/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import simdjson
from simdjson import Parser

JsonType = Union[dict, list, str, int, float, bool]
JsonType = Union[Dict[Any, Any], List[Any], str, int, float, bool]
Schema = Dict[Any, Any]
_Dict = Dict[Any, Any]
_List = List[Any]
Expand Down

0 comments on commit cce8829

Please sign in to comment.