mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2026-03-23 06:40:23 -07:00
ci(M01): explicitly import k_diffusion submodules in __init__
Made-with: Cursor
This commit is contained in:
parent
feca86bca6
commit
afe4956de0
1 changed files with 4 additions and 1 deletions
|
|
@ -109,7 +109,10 @@ def main() -> None:
|
|||
|
||||
# k-diffusion: k_diffusion.sampling, utils (sd_schedulers, sd_samplers_lcm)
|
||||
kd = "k-diffusion"
|
||||
touch(os.path.join(REPOS, kd, "k_diffusion", "__init__.py"))
|
||||
touch(
|
||||
os.path.join(REPOS, kd, "k_diffusion", "__init__.py"),
|
||||
"from . import utils, sampling, external\n",
|
||||
)
|
||||
touch(os.path.join(REPOS, kd, "k_diffusion", "utils.py"), "# stub\n")
|
||||
touch(
|
||||
os.path.join(REPOS, kd, "k_diffusion", "external.py"),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue