yasoo
Advanced tools
+1
-1
| Metadata-Version: 2.1 | ||
| Name: yasoo | ||
| Version: 0.12.0 | ||
| Version: 0.12.1 | ||
| Summary: Yet another serializer of objects | ||
@@ -5,0 +5,0 @@ Home-page: https://github.com/drorvinkler/yasoo |
+1
-1
@@ -9,3 +9,3 @@ import setuptools | ||
| name="yasoo", | ||
| version="0.12.0", | ||
| version="0.12.1", | ||
| author="Dror A. Vinkler", | ||
@@ -12,0 +12,0 @@ description="Yet another serializer of objects", |
| Metadata-Version: 2.1 | ||
| Name: yasoo | ||
| Version: 0.12.0 | ||
| Version: 0.12.1 | ||
| Summary: Yet another serializer of objects | ||
@@ -5,0 +5,0 @@ Home-page: https://github.com/drorvinkler/yasoo |
@@ -332,5 +332,10 @@ import json | ||
| ) -> List[Tuple[Optional[type], Any]]: | ||
| if type_hint is None: | ||
| generic_args = None | ||
| try: | ||
| if type_hint is not None: | ||
| _, generic_args = normalize_type(type_hint) | ||
| except TypeError: | ||
| pass | ||
| if generic_args is None: | ||
| return [(None, item) for item in data] | ||
| _, generic_args = normalize_type(type_hint) | ||
| if len(generic_args) == 1 or ( | ||
@@ -337,0 +342,0 @@ len(generic_args) == 2 and generic_args[1] is ... |
Alert delta unavailable
Currently unable to show alert delta for PyPI packages.
53800
0.25%991
0.51%