-
-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Labels
featureNew feature or requestNew feature or request
Description
Is your feature request related to a problem? Please describe.
I want to display the full type signature of my functions, because I feel that this better summarises how to use them.
Describe the solution you'd like
A function with signature like this:
def subjects(self, predicate: URIRef, object: URIRef) -> Iterable[UriNode]: ...
Should result in a code block with all the type annotations included, e.g.
subjects(self, predicate: URIRef, object: URIRef) -> Iterable[UriNode]
Whereas currently it lacks this:
subject(predicate, object)
Metadata
Metadata
Assignees
Labels
featureNew feature or requestNew feature or request