summaryrefslogtreecommitdiff
path: root/tests/functional/b/bad_indentation.py
blob: 3b38347e4020d59a678fcb0b86e277a581605d19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# pylint: disable=missing-docstring, pointless-statement


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]