tptimer/env/lib/python2.7/site-packages/pylint/test/functional/mixed_indentation.py

11 lines
204 B
Python
Raw Normal View History

2018-07-20 05:43:02 +00:00
"""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]