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):
class Test:
def load_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: