summaryrefslogtreecommitdiff
path: root/pylint/checkers/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'pylint/checkers/utils.py')
-rw-r--r--pylint/checkers/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pylint/checkers/utils.py b/pylint/checkers/utils.py
index 86a65c6da..6c11eeb9d 100644
--- a/pylint/checkers/utils.py
+++ b/pylint/checkers/utils.py
@@ -776,7 +776,7 @@ def error_of_type(handler: astroid.ExceptHandler, error_type) -> bool:
def decorated_with_property(node: astroid.FunctionDef) -> bool:
- """Detect if the given function node is decorated with a property. """
+ """Detect if the given function node is decorated with a property."""
if not node.decorators:
return False
for decorator in node.decorators.nodes: