We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0cd29ec commit c0ea048Copy full SHA for c0ea048
pydocstringformatter/_formatting/base.py
@@ -26,15 +26,13 @@ class Formatter:
26
Default is always ran.
27
"""
28
29
- @property
30
- @abc.abstractmethod
31
- def name(self) -> str:
32
- """Name of the Formatter.
+ name: str
+ """Name of the Formatter.
33
34
- This will be used to create argparse options when added to
35
- 'pydocstringformatter.formatting.FORMATTERS'. Therefore, it is
36
- user-facing and should be chosen carefully.
37
- """
+ This will be used to create argparse options when added to
+ 'pydocstringformatter.formatting.FORMATTERS'. Therefore, it is
+ REQUIRED, user-facing and should be chosen carefully.
+ """
38
39
@property
40
def activate_option(self) -> str:
0 commit comments