Fix lint errors

This commit is contained in:
Cristi Vijdea
2019-03-04 00:49:28 +02:00
parent 340a60324c
commit 652a33a54d
+1 -1
View File
@@ -167,7 +167,7 @@ class SwaggerDict(OrderedDict):
def __reduce__(self):
# for pickle supprt; this skips calls to all SwaggerDict __init__ methods and relies
# on the already set attributes instead
attrs = {k: v for k ,v in vars(self).items() if not k.startswith('_NP_')}
attrs = {k: v for k, v in vars(self).items() if not k.startswith('_NP_')}
return _bare_SwaggerDict, (type(self),), attrs, None, iter(self.items())