We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
doc
1 parent b6c1ffa commit c8dbf47Copy full SHA for c8dbf47
contrib/pyln-client/pyln/client/plugin.py
@@ -938,16 +938,6 @@ def _getmanifest(self, **kwargs) -> JSONType:
938
'after': method.after})
939
continue
940
941
- doc = inspect.getdoc(method.func)
942
- if not doc:
943
- self.log(
944
- 'RPC method \'{}\' does not have a docstring.'.format(
945
- method.name
946
- )
947
948
- doc = "Undocumented RPC method from a plugin."
949
- doc = re.sub('\n+', ' ', doc)
950
-
951
# For compatibility with lightningd prior to 24.08, we must
952
# provide a description. Ignored by 24.08 onwards,
953
description = method.description
0 commit comments