diff options
author | Ashley Whetter <ashley@awhetter.co.uk> | 2019-06-14 22:28:42 -0700 |
---|---|---|
committer | Claudiu Popa <pcmanticore@gmail.com> | 2019-06-20 10:02:14 +0200 |
commit | 33b8185a455c1686d038258697bb93005f2441c2 (patch) | |
tree | 4a50ccac775c009436e45803129e428ed694065f /pylint/test/functional/mixed_indentation.py | |
parent | 7081d91f30728653000bdfc59ea85a3395f96418 (diff) | |
download | pylint-git-33b8185a455c1686d038258697bb93005f2441c2.tar.gz |
Stopped installing tests with package
Diffstat (limited to 'pylint/test/functional/mixed_indentation.py')
-rw-r--r-- | pylint/test/functional/mixed_indentation.py | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/pylint/test/functional/mixed_indentation.py b/pylint/test/functional/mixed_indentation.py deleted file mode 100644 index 724ecff7a..000000000 --- a/pylint/test/functional/mixed_indentation.py +++ /dev/null @@ -1,10 +0,0 @@ -"""test mixed tabs and spaces""" -from __future__ import print_function - -def spaces_func(): - """yo""" - print("yo") - -def tab_func(): - """yo""" # [mixed-indentation] - print("yo") # [mixed-indentation] |