aboutsummaryrefslogtreecommitdiffstats
path: root/webui.py
diff options
context:
space:
mode:
authorAUTOMATIC <16777216c@gmail.com>2023-04-29 09:39:05 +0000
committerAUTOMATIC <16777216c@gmail.com>2023-04-29 09:39:05 +0000
commitaee6d9bb74d9868d0782acc54b6cbefa32422a8f (patch)
treeb3c3913fa08cd99069e149ad6a75ddf8a741dc88 /webui.py
parentee71eee1818f6f6eba9895c93ba25e0cad27e069 (diff)
downloadstable-diffusion-webui-gfx803-aee6d9bb74d9868d0782acc54b6cbefa32422a8f.tar.gz
stable-diffusion-webui-gfx803-aee6d9bb74d9868d0782acc54b6cbefa32422a8f.tar.bz2
stable-diffusion-webui-gfx803-aee6d9bb74d9868d0782acc54b6cbefa32422a8f.zip
remove unneeded warning filter
Diffstat (limited to 'webui.py')
-rw-r--r--webui.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/webui.py b/webui.py
index 3fd6e1e9..759125e0 100644
--- a/webui.py
+++ b/webui.py
@@ -21,7 +21,6 @@ import torch
import pytorch_lightning # pytorch_lightning should be imported after torch, but it re-enables warnings on import so import once to disable them
warnings.filterwarnings(action="ignore", category=DeprecationWarning, module="pytorch_lightning")
warnings.filterwarnings(action="ignore", category=UserWarning, module="torchvision")
-warnings.filterwarnings(action='ignore', category=UserWarning, message='TypedStorage is deprecated')
startup_timer.record("import torch")