mirror of
https://github.com/samba-team/samba.git
synced 2025-01-07 17:18:11 +03:00
a001b03854
Also, update to latest upstream version. Signed-Off-By: Jelmer Vernooij <jelmer@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
16 lines
408 B
Python
16 lines
408 B
Python
#: 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
|
|
#:
|