diff options
Diffstat (limited to 'python/tidy/tests/lints/proper_file.py')
-rw-r--r-- | python/tidy/tests/lints/proper_file.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/python/tidy/tests/lints/proper_file.py b/python/tidy/tests/lints/proper_file.py new file mode 100644 index 00000000000..acecb82abd4 --- /dev/null +++ b/python/tidy/tests/lints/proper_file.py @@ -0,0 +1,6 @@ +from servo_tidy.tidy import LintRunner + +class Lint(LintRunner): + def run(self): + for _ in [None]: + yield ('path', 0, 'foobar') |