diff options
Diffstat (limited to 'examples/custom.py')
-rw-r--r-- | examples/custom.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/custom.py b/examples/custom.py index 695f77d20..d4376fc4e 100644 --- a/examples/custom.py +++ b/examples/custom.py @@ -52,7 +52,8 @@ class MyAstroidChecker(BaseChecker): def visit_call(self, node: nodes.Call) -> None: """Called when a :class:`.nodes.Call` node is visited. - See :mod:`astroid` for the description of available nodes.""" + See :mod:`astroid` for the description of available nodes. + """ if not ( isinstance(node.func, nodes.Attribute) and isinstance(node.func.expr, nodes.Name) |