Skip to content

Commit

Permalink
Import WSGIDecorator under connexion.decorators (#1768)
Browse files Browse the repository at this point in the history
  • Loading branch information
RobbeSneyders committed Nov 1, 2023
1 parent c1ef3f4 commit a7584a6
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion connexion/decorators/__init__.py
Original file line number Diff line number Diff line change
@@ -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,
)

0 comments on commit a7584a6

Please sign in to comment.