mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2026-01-30 12:22:26 -08:00
added python-dotenv
This commit is contained in:
parent
abe3169876
commit
ecc31f611d
3 changed files with 4 additions and 1 deletions
|
|
@ -1 +1 @@
|
|||
Subproject commit 56cec5b2958edf3b1807b7e7b2b1b5186dbd2f81
|
||||
Subproject commit b63899a654ee2f70d475c259691f35ac67c320d4
|
||||
|
|
@ -20,6 +20,7 @@ open-clip-torch
|
|||
piexif
|
||||
psutil
|
||||
pytorch_lightning
|
||||
python-dotenv
|
||||
requests
|
||||
resize-right
|
||||
|
||||
|
|
|
|||
2
webui.py
2
webui.py
|
|
@ -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()
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue