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

20 lines
380 B
Python
Raw Normal View History

2018-07-20 05:43:02 +00:00
# pylint: disable=missing-docstring, pointless-statement
from __future__ import print_function
def totoo():
print('malindented') # [bad-indentation]
def tutuu():
print('good indentation')
def titii():
1 # and this. # [bad-indentation]
def tataa(kdict):
for key in ['1', '2', '3']:
key = key.lower()
if key in kdict:
del kdict[key]