Skip to content

Commit

Permalink
Fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
axnsan12 committed Mar 3, 2019
1 parent 340a603 commit 652a33a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/drf_yasg/openapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ def as_odict(self):
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())


Expand Down

0 comments on commit 652a33a

Please sign in to comment.