Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
S
stable-diffusion-webui
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
stable-diffusion-webui
Commits
9757c0b3
Unverified
Commit
9757c0b3
authored
Jan 11, 2023
by
AUTOMATIC1111
Committed by
GitHub
Jan 11, 2023
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #6633 from space-nuko/expose-xy-grid-to-extensions
Expose XY Grid module to extensions
parents
9cfd10cd
37a23011
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
scripts.py
modules/scripts.py
+3
-3
No files found.
modules/scripts.py
View file @
9757c0b3
...
@@ -152,7 +152,7 @@ def basedir():
...
@@ -152,7 +152,7 @@ def basedir():
scripts_data
=
[]
scripts_data
=
[]
ScriptFile
=
namedtuple
(
"ScriptFile"
,
[
"basedir"
,
"filename"
,
"path"
])
ScriptFile
=
namedtuple
(
"ScriptFile"
,
[
"basedir"
,
"filename"
,
"path"
])
ScriptClassData
=
namedtuple
(
"ScriptClassData"
,
[
"script_class"
,
"path"
,
"basedir"
])
ScriptClassData
=
namedtuple
(
"ScriptClassData"
,
[
"script_class"
,
"path"
,
"basedir"
,
"module"
])
def
list_scripts
(
scriptdirname
,
extension
):
def
list_scripts
(
scriptdirname
,
extension
):
...
@@ -206,7 +206,7 @@ def load_scripts():
...
@@ -206,7 +206,7 @@ def load_scripts():
for
key
,
script_class
in
module
.
__dict__
.
items
():
for
key
,
script_class
in
module
.
__dict__
.
items
():
if
type
(
script_class
)
==
type
and
issubclass
(
script_class
,
Script
):
if
type
(
script_class
)
==
type
and
issubclass
(
script_class
,
Script
):
scripts_data
.
append
(
ScriptClassData
(
script_class
,
scriptfile
.
path
,
scriptfile
.
basedir
))
scripts_data
.
append
(
ScriptClassData
(
script_class
,
scriptfile
.
path
,
scriptfile
.
basedir
,
module
))
except
Exception
:
except
Exception
:
print
(
f
"Error loading script: {scriptfile.filename}"
,
file
=
sys
.
stderr
)
print
(
f
"Error loading script: {scriptfile.filename}"
,
file
=
sys
.
stderr
)
...
@@ -241,7 +241,7 @@ class ScriptRunner:
...
@@ -241,7 +241,7 @@ class ScriptRunner:
self
.
alwayson_scripts
.
clear
()
self
.
alwayson_scripts
.
clear
()
self
.
selectable_scripts
.
clear
()
self
.
selectable_scripts
.
clear
()
for
script_class
,
path
,
basedir
in
scripts_data
:
for
script_class
,
path
,
basedir
,
script_module
in
scripts_data
:
script
=
script_class
()
script
=
script_class
()
script
.
filename
=
path
script
.
filename
=
path
script
.
is_txt2img
=
not
is_img2img
script
.
is_txt2img
=
not
is_img2img
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment