Fix default value in docs for objects (#1900)

This commit is contained in:
Ali Abdalla 2022-07-28 13:43:17 +01:00 committed by GitHub
parent 5ee2122834
commit 3ef4d4da4c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -82,6 +82,8 @@ def document_fn(fn):
default = param.default
if type(default) == str:
default = '"' + default + '"'
if default.__class__.__module__ != "builtins":
default = f"{default.__class__.__name__}()"
parameter_doc["default"] = default
elif parameter_doc["doc"] is not None and "kwargs" in parameter_doc["doc"]:
parameter_doc["kwargs"] = True