Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions polyapi/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -465,6 +465,7 @@ def visit_FunctionDef(self, node: ast.FunctionDef):
# Parse docstring which may contain param types and descriptions
self._extract_docstring_from_function(node)
function_args = [arg for arg in node.args.args]
function_args.extend(node.args.kwonlyargs)
docstring_params = deployable["types"]["params"]
parsed_params = []
# parse params from actual function and merge in any data from the docstring
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ requires = ["setuptools>=61.2", "wheel"]

[project]
name = "polyapi-python"
version = "0.3.10.dev1"
version = "0.3.10.dev2"
description = "The Python Client for PolyAPI, the IPaaS by Developers for Developers"
authors = [{ name = "Dan Fellin", email = "dan@polyapi.io" }]
dependencies = [
Expand Down