added python-dotenv

This commit is contained in:
Logan Olson 2024-10-01 12:55:40 -05:00
parent abe3169876
commit ecc31f611d
3 changed files with 4 additions and 1 deletions

@ -1 +1 @@
Subproject commit 56cec5b2958edf3b1807b7e7b2b1b5186dbd2f81
Subproject commit b63899a654ee2f70d475c259691f35ac67c320d4

View file

@ -20,6 +20,7 @@ open-clip-torch
piexif
psutil
pytorch_lightning
python-dotenv
requests
resize-right

View file

@ -1,5 +1,6 @@
from __future__ import annotations
from dotenv import load_dotenv
import os
import time
@ -9,6 +10,7 @@ from modules import initialize
startup_timer = timer.startup_timer
startup_timer.record("launcher")
load_dotenv()
initialize.imports()