toolslm 0.3.23__tar.gz → 0.3.24__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {toolslm-0.3.23/toolslm.egg-info → toolslm-0.3.24}/PKG-INFO +1 -1
- {toolslm-0.3.23 → toolslm-0.3.24}/settings.ini +1 -1
- toolslm-0.3.24/toolslm/__init__.py +1 -0
- {toolslm-0.3.23 → toolslm-0.3.24}/toolslm/funccall.py +1 -1
- {toolslm-0.3.23 → toolslm-0.3.24/toolslm.egg-info}/PKG-INFO +1 -1
- toolslm-0.3.23/toolslm/__init__.py +0 -1
- {toolslm-0.3.23 → toolslm-0.3.24}/LICENSE +0 -0
- {toolslm-0.3.23 → toolslm-0.3.24}/MANIFEST.in +0 -0
- {toolslm-0.3.23 → toolslm-0.3.24}/README.md +0 -0
- {toolslm-0.3.23 → toolslm-0.3.24}/pyproject.toml +0 -0
- {toolslm-0.3.23 → toolslm-0.3.24}/setup.cfg +0 -0
- {toolslm-0.3.23 → toolslm-0.3.24}/setup.py +0 -0
- {toolslm-0.3.23 → toolslm-0.3.24}/toolslm/_modidx.py +0 -0
- {toolslm-0.3.23 → toolslm-0.3.24}/toolslm/download.py +0 -0
- {toolslm-0.3.23 → toolslm-0.3.24}/toolslm/md_hier.py +0 -0
- {toolslm-0.3.23 → toolslm-0.3.24}/toolslm/shell.py +0 -0
- {toolslm-0.3.23 → toolslm-0.3.24}/toolslm/xml.py +0 -0
- {toolslm-0.3.23 → toolslm-0.3.24}/toolslm.egg-info/SOURCES.txt +0 -0
- {toolslm-0.3.23 → toolslm-0.3.24}/toolslm.egg-info/dependency_links.txt +0 -0
- {toolslm-0.3.23 → toolslm-0.3.24}/toolslm.egg-info/entry_points.txt +0 -0
- {toolslm-0.3.23 → toolslm-0.3.24}/toolslm.egg-info/not-zip-safe +0 -0
- {toolslm-0.3.23 → toolslm-0.3.24}/toolslm.egg-info/requires.txt +0 -0
- {toolslm-0.3.23 → toolslm-0.3.24}/toolslm.egg-info/top_level.txt +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.3.24"
|
|
@@ -70,7 +70,7 @@ def _handle_type(t, defs):
|
|
|
70
70
|
def _is_container(t):
|
|
71
71
|
"Check if type is a container (list, dict, tuple, set, Union)"
|
|
72
72
|
origin = get_origin(t)
|
|
73
|
-
return origin in (list, dict, tuple, set, Union) if origin else False
|
|
73
|
+
return origin in (list, dict, tuple, set, Union, UnionType) if origin else False
|
|
74
74
|
|
|
75
75
|
def _is_parameterized(t):
|
|
76
76
|
"Check if type has arguments (e.g. list[int] vs list, dict[str, int] vs dict)"
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.3.23"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|