python-by-example-150-chall.../venv/lib/python3.6/site-packages/pylint/test/functional/mixed_indentation.py
2019-08-04 15:26:35 +03:00

11 lines
204 B
Python

"""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]