diff --git a/connexion/decorators/__init__.py b/connexion/decorators/__init__.py index f97a2f329..dd090edb3 100644 --- a/connexion/decorators/__init__.py +++ b/connexion/decorators/__init__.py @@ -1,4 +1,9 @@ """ This module defines decorators which Connexion uses to wrap user provided view functions. """ -from .main import ASGIDecorator, FlaskDecorator, StarletteDecorator # noqa +from .main import ( # noqa + ASGIDecorator, + FlaskDecorator, + StarletteDecorator, + WSGIDecorator, +)