summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorOllie <46904826+ollie-iterators@users.noreply.github.com>2023-03-02 13:49:28 -0500
committerGitHub <noreply@github.com>2023-03-02 19:49:28 +0100
commit5337e6280e76e13d1922b03ffeba7887a00e6356 (patch)
tree712fb303a3f03615c0a5fb224668298485803dba /examples
parent61844d87bd03be1233a431186efe5d61ccc758c9 (diff)
downloadpylint-git-5337e6280e76e13d1922b03ffeba7887a00e6356.tar.gz
Changing flake8 to have max-line-length of 115 (#8362)
Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com>
Diffstat (limited to 'examples')
-rw-r--r--examples/deprecation_checker.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/deprecation_checker.py b/examples/deprecation_checker.py
index 6fb21eedd..228b7bdad 100644
--- a/examples/deprecation_checker.py
+++ b/examples/deprecation_checker.py
@@ -52,9 +52,9 @@ class DeprecationChecker(DeprecatedMixin, BaseChecker):
"""Class implementing deprecation checker."""
# DeprecatedMixin class is Mixin class implementing logic for searching deprecated methods and functions.
- # The list of deprecated methods/functions is defined by the implementing class via deprecated_methods callback.
- # DeprecatedMixin class is overriding attributes of BaseChecker hence must be specified *before* BaseChecker
- # in list of base classes.
+ # The list of deprecated methods/functions is defined by the implementing class via
+ # deprecated_methods callback. DeprecatedMixin class is overriding attributes of BaseChecker hence must
+ # be specified *before* BaseChecker in list of base classes.
# The name defines a custom section of the config for this checker.
name = "deprecated"