diff options
| author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-07-27 09:00:47 +0300 |
|---|---|---|
| committer | AUTOMATIC1111 <16777216c@gmail.com> | 2023-07-27 09:00:59 +0300 |
| commit | f82e08cf45e9eb0ea4fa15825f27313b8e78a73c (patch) | |
| tree | 52b1b0ef18b6d85748d51912077a7183c2483325 | |
| parent | 3039925b2746441b8ee2bd18c1f4cdfb9aaea65d (diff) | |
| download | stable-diffusion-webui-gfx803-f82e08cf45e9eb0ea4fa15825f27313b8e78a73c.tar.gz | |
update lora extension to work with python 3.8
| -rw-r--r-- | extensions-builtin/Lora/network.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/extensions-builtin/Lora/network.py b/extensions-builtin/Lora/network.py index 8ecfa29a..0a18d69e 100644 --- a/extensions-builtin/Lora/network.py +++ b/extensions-builtin/Lora/network.py @@ -1,3 +1,4 @@ +from __future__ import annotations
import os
from collections import namedtuple
import enum
|
