Skip to content

Commit 186ea10

Browse files
committed
update env file loads
1 parent 127c613 commit 186ea10

File tree

1 file changed

+3
-1
lines changed
  • simple_backend/src/task_tracker

1 file changed

+3
-1
lines changed

simple_backend/src/task_tracker/main.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
from fastapi import FastAPI
22
from fastapi import HTTPException
3-
from storage_gist import GistStorage
3+
from storage_gist import GistStorage
4+
from dotenv import load_dotenv
5+
load_dotenv()
46
app = FastAPI()
57
storage = GistStorage()
68
# we display a list of all received tasks.

0 commit comments

Comments
 (0)