From c817284d86f799fef70d187ff4f1af523cedeadc Mon Sep 17 00:00:00 2001 From: Lev Vereshchagin Date: Thu, 13 Jun 2024 13:43:15 +0300 Subject: [PATCH] Fix linting --- that_depends/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/that_depends/__init__.py b/that_depends/__init__.py index 0ed599bb..549e5a82 100644 --- a/that_depends/__init__.py +++ b/that_depends/__init__.py @@ -1,7 +1,7 @@ from that_depends import providers -from that_depends.providers import container_context from that_depends.container import BaseContainer from that_depends.injection import Provide, inject +from that_depends.providers import container_context __all__ = ["container_context", "providers", "BaseContainer", "inject", "Provide"]