fix pep8 W503

This commit is contained in:
Alexandre Fayolle 2015-02-16 10:34:59 +01:00 committed by Marcos Oitaben
parent fad42ea756
commit 5978607c44
1 changed files with 2 additions and 1 deletions

View File

@ -108,7 +108,8 @@ class _Defaults(dict):
__slots__ = ()
def __setitem__(self, key, value):
func = lambda *a: str(value)
def func(*a):
return str(value)
return dict.__setitem__(self, key, func)