Closed jxtngx closed 2 years ago
Thanks for your pull request! It looks like this may be your first contribution to a Google open source project. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA).
For more information, open the CLA check for this pull request.
Steps taken:
from sphinx.util.inspect import Signature
to from sphinx.util.inspect import signature
from sphinx.util.inspect import stringify_signature
def get_signature_end(function):
sig = signature(function)
signature_end = stringify_signature(sig, show_annotation=False)
if utils.ismethod(function):
signature_end = signature_end.replace("(self, ", "(")
signature_end = signature_end.replace("(self)", "()")
return signature_end
Sadly I don't have many right anymore in this repository. I can't approve the workflow to run. Maybe this repo could be transferred to my github username, so that I can continue to maintain it? @qlzh727 what do you think? Can we transfer this repo under @gabrieldemarmiesse ? Or do you want to keep it there and re-add me as maintainer?
resolves issue#92