File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed
Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,10 @@ class Container(containers.DeclarativeContainer):
1010 ]
1111 )
1212
13- config = providers .Configuration (ini_files = ["config.ini" ], strict = True )
13+ config = providers .Configuration (
14+ ini_files = ["config.ini" ],
15+ strict = True
16+ )
1417
1518 spotify_service = providers .Singleton (
1619 SpotifyService ,
Original file line number Diff line number Diff line change 1+ from dotenv import load_dotenv
12from fastapi import FastAPI
23from pydantic import TypeAdapter
34
45from app .container import Container
56from app .spotify .router import spotify_router
67from app .system .router import system_router
78
9+ load_dotenv ()
810container = Container ()
911
1012
Original file line number Diff line number Diff line change 11spotipy == 2.23.0
2- environs == 9.5 .0
2+ python-dotenv == 1.0 .0
33fastapi [all ]== 0.104.1
44typing_inspect == 0.9.0
5- dependency-injector == 4.41.0
5+ dependency-injector == 4.41.0
You can’t perform that action at this time.
0 commit comments