From 652a33a54dc05e2a31eb3c0c199b29da2db6afa2 Mon Sep 17 00:00:00 2001 From: Cristi Vijdea Date: Mon, 4 Mar 2019 00:49:28 +0200 Subject: [PATCH] Fix lint errors --- src/drf_yasg/openapi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/drf_yasg/openapi.py b/src/drf_yasg/openapi.py index d03b6413..94a784d2 100644 --- a/src/drf_yasg/openapi.py +++ b/src/drf_yasg/openapi.py @@ -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())