From 2438114b711b529c3daac7cbe9fadbfae8a7c0b9 Mon Sep 17 00:00:00 2001 From: Robbe Sneyders Date: Sat, 26 Nov 2022 22:30:46 +0100 Subject: [PATCH] Rename and move decorators --- connexion/decorators/{decorator.py => lifecycle.py} | 0 connexion/operations/abstract.py | 2 +- connexion/{decorators => }/uri_parsing.py | 0 3 files changed, 1 insertion(+), 1 deletion(-) rename connexion/decorators/{decorator.py => lifecycle.py} (100%) rename connexion/{decorators => }/uri_parsing.py (100%) diff --git a/connexion/decorators/decorator.py b/connexion/decorators/lifecycle.py similarity index 100% rename from connexion/decorators/decorator.py rename to connexion/decorators/lifecycle.py diff --git a/connexion/operations/abstract.py b/connexion/operations/abstract.py index 8c082d9..eff4ed9 100644 --- a/connexion/operations/abstract.py +++ b/connexion/operations/abstract.py @@ -6,7 +6,7 @@ and functionality shared between Swagger 2 and OpenAPI 3 specifications. import abc import logging -from ..decorators.decorator import RequestResponseDecorator +from ..decorators.lifecycle import RequestResponseDecorator from ..decorators.parameter import parameter_to_arg from ..utils import all_json diff --git a/connexion/decorators/uri_parsing.py b/connexion/uri_parsing.py similarity index 100% rename from connexion/decorators/uri_parsing.py rename to connexion/uri_parsing.py