summaryrefslogtreecommitdiff
path: root/testsuite/noqa.py
blob: 02fdd4f825182ff5f1bde0ed7f6a0990825e73d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#: Okay
# silence E501
url = 'https://api.github.com/repos/sigmavirus24/Todo.txt-python/branches/master?client_id=xxxxxxxxxxxxxxxxxxxxxxxxxxxx&?client_secret=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'  # noqa

# silence E128
from functools import (partial, reduce, wraps,  # noqa
    cmp_to_key)

from functools import (partial, reduce, wraps,
    cmp_to_key)   # noqa

a = 1
if a == None:   # noqa
    pass
#: