You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the following case, dict type of node_attr cannot be recognized.
By the way, can the parameter default value move up to be after the type description for more attention?
Besides, change by default to default as Numpy Style Guide does
Versions (please complete the following information):
autoDocstring Version: v0.6.1
Operating System: Win 10
Vscode Version: v1.94.2
Original Code (with line to generate on):
classTest:
defload_graph_file(
self,
filename: str,
node_attr: dict= {"successor_idx": "successor_idx"},
edge_attr: dict= {},
):
pass# generate on this line
Describe the bug
In the following case, dict type of
node_attr
cannot be recognized.By the way, can the parameter default value move up to be after the type description for more attention?
Besides, change
by default
todefault
as Numpy Style Guide doesVersions (please complete the following information):
Original Code (with line to generate on):
Expected Result:
Actual Result:
The text was updated successfully, but these errors were encountered: