summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorDaniƫl van Noord <13665637+DanielNoord@users.noreply.github.com>2022-02-10 19:30:15 +0100
committerGitHub <noreply@github.com>2022-02-10 19:30:15 +0100
commit595ec422d6f9bd32f42c356d2f316ec69e0f7bee (patch)
tree766a12ddd91b43e09f670f913a4069bc7dc82d57 /examples
parente3d5deca2886d9e2d5f2be2a252e39e02ae42b96 (diff)
downloadpylint-git-595ec422d6f9bd32f42c356d2f316ec69e0f7bee.tar.gz
Update ``pydocstringformatter`` to 0.4.0 (#5787)
Diffstat (limited to 'examples')
-rw-r--r--examples/custom_raw.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/custom_raw.py b/examples/custom_raw.py
index 045f22ff4..365e9b7fa 100644
--- a/examples/custom_raw.py
+++ b/examples/custom_raw.py
@@ -10,7 +10,7 @@ if TYPE_CHECKING:
class MyRawChecker(BaseChecker):
- """check for line continuations with '\' instead of using triple
+ """Check for line continuations with '\' instead of using triple
quoted string or parenthesis
"""
@@ -30,7 +30,7 @@ class MyRawChecker(BaseChecker):
options = ()
def process_module(self, node: nodes.Module) -> None:
- """process a module
+ """Process a module.
the module's content is accessible via node.stream() function
"""