summaryrefslogtreecommitdiff
path: root/pylint/exceptions.py
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 /pylint/exceptions.py
parente3d5deca2886d9e2d5f2be2a252e39e02ae42b96 (diff)
downloadpylint-git-595ec422d6f9bd32f42c356d2f316ec69e0f7bee.tar.gz
Update ``pydocstringformatter`` to 0.4.0 (#5787)
Diffstat (limited to 'pylint/exceptions.py')
-rw-r--r--pylint/exceptions.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/pylint/exceptions.py b/pylint/exceptions.py
index ec1e513f7..5999dcfd4 100644
--- a/pylint/exceptions.py
+++ b/pylint/exceptions.py
@@ -16,24 +16,24 @@
class InvalidMessageError(Exception):
- """raised when a message creation, registration or addition is rejected"""
+ """Raised when a message creation, registration or addition is rejected."""
class UnknownMessageError(Exception):
- """raised when an unregistered message id is encountered"""
+ """Raised when an unregistered message id is encountered."""
class EmptyReportError(Exception):
- """raised when a report is empty and so should not be displayed"""
+ """Raised when a report is empty and so should not be displayed."""
class InvalidReporterError(Exception):
- """raised when selected reporter is invalid (e.g. not found)"""
+ """Raised when selected reporter is invalid (e.g. not found)."""
class InvalidArgsError(ValueError):
- """raised when passed arguments are invalid, e.g., have the wrong length"""
+ """Raised when passed arguments are invalid, e.g., have the wrong length."""
class NoLineSuppliedError(Exception):
- """raised when trying to disable a message on a next line without supplying a line number"""
+ """Raised when trying to disable a message on a next line without supplying a line number."""