Clean up with 2to3

This commit is contained in:
Griatch 2018-10-13 19:43:17 +02:00
parent f85968fad3
commit ebb2fb6c1c
6 changed files with 153 additions and 153 deletions

View file

@ -214,7 +214,7 @@ class SessionHandler(dict):
return newdict
elif is_iter(data):
return [_validate(part) for part in data]
elif isinstance(data, (str, bytes, )):
elif isinstance(data, (str, bytes )):
data = _utf8(data)
if _INLINEFUNC_ENABLED and not raw and isinstance(self, ServerSessionHandler):