toolslm 0.3.22__tar.gz → 0.3.23__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.22/toolslm.egg-info → toolslm-0.3.23}/PKG-INFO +1 -1
- {toolslm-0.3.22 → toolslm-0.3.23}/settings.ini +1 -1
- toolslm-0.3.23/toolslm/__init__.py +1 -0
- {toolslm-0.3.22 → toolslm-0.3.23}/toolslm/funccall.py +1 -1
- {toolslm-0.3.22 → toolslm-0.3.23/toolslm.egg-info}/PKG-INFO +1 -1
- toolslm-0.3.22/toolslm/__init__.py +0 -1
- {toolslm-0.3.22 → toolslm-0.3.23}/LICENSE +0 -0
- {toolslm-0.3.22 → toolslm-0.3.23}/MANIFEST.in +0 -0
- {toolslm-0.3.22 → toolslm-0.3.23}/README.md +0 -0
- {toolslm-0.3.22 → toolslm-0.3.23}/pyproject.toml +0 -0
- {toolslm-0.3.22 → toolslm-0.3.23}/setup.cfg +0 -0
- {toolslm-0.3.22 → toolslm-0.3.23}/setup.py +0 -0
- {toolslm-0.3.22 → toolslm-0.3.23}/toolslm/_modidx.py +0 -0
- {toolslm-0.3.22 → toolslm-0.3.23}/toolslm/download.py +0 -0
- {toolslm-0.3.22 → toolslm-0.3.23}/toolslm/md_hier.py +0 -0
- {toolslm-0.3.22 → toolslm-0.3.23}/toolslm/shell.py +0 -0
- {toolslm-0.3.22 → toolslm-0.3.23}/toolslm/xml.py +0 -0
- {toolslm-0.3.22 → toolslm-0.3.23}/toolslm.egg-info/SOURCES.txt +0 -0
- {toolslm-0.3.22 → toolslm-0.3.23}/toolslm.egg-info/dependency_links.txt +0 -0
- {toolslm-0.3.22 → toolslm-0.3.23}/toolslm.egg-info/entry_points.txt +0 -0
- {toolslm-0.3.22 → toolslm-0.3.23}/toolslm.egg-info/not-zip-safe +0 -0
- {toolslm-0.3.22 → toolslm-0.3.23}/toolslm.egg-info/requires.txt +0 -0
- {toolslm-0.3.22 → toolslm-0.3.23}/toolslm.egg-info/top_level.txt +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.3.23"
|
|
@@ -144,7 +144,7 @@ def get_schema(
|
|
|
144
144
|
has_type = (ret.anno is not empty) and (ret.anno is not None)
|
|
145
145
|
has_doc = ret.docment
|
|
146
146
|
if has_type or has_doc:
|
|
147
|
-
type_str = f'type: {_types(ret.anno)[0]}'
|
|
147
|
+
type_str = f'type: {_types(ret.anno)[0]}' if has_type else None
|
|
148
148
|
ret_str = f'{ret.docment} ({type_str})' if has_type and has_doc else (type_str if has_type else ret.docment)
|
|
149
149
|
desc += f'\n\nReturns:\n- {ret_str}'
|
|
150
150
|
return {"name": f.__name__, "description": desc, pname: schema}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.3.22"
|
|
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
|