summaryrefslogtreecommitdiff
path: root/pylint/checkers/format.py
diff options
context:
space:
mode:
Diffstat (limited to 'pylint/checkers/format.py')
-rw-r--r--pylint/checkers/format.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/pylint/checkers/format.py b/pylint/checkers/format.py
index b5f35cd00..38b6649c5 100644
--- a/pylint/checkers/format.py
+++ b/pylint/checkers/format.py
@@ -1333,3 +1333,9 @@ class FormatChecker(BaseTokenChecker):
def register(linter):
"""required method to auto register this checker """
linter.register_checker(FormatChecker(linter))
+
+
+def funkier():
+ for val in range(3):
+ pass
+ print(val)