gh-87864: Use correct function definition syntax in the docs (#103312)

This commit is contained in:
Nikita Sobolev 2023-04-11 16:50:25 +03:00 committed by GitHub
parent 55c99d97e1
commit 50b4b15984
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 7 additions and 7 deletions

View file

@ -18,7 +18,7 @@ def abstractmethod(funcobj):
class C(metaclass=ABCMeta):
@abstractmethod
def my_abstract_method(self, ...):
def my_abstract_method(self, arg1, arg2, argN):
...
"""
funcobj.__isabstractmethod__ = True