Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
chenpangpang
ComfyUI
Commits
fad02dc2
"git@developer.sourcefind.cn:chenpangpang/ComfyUI.git" did not exist on "072e3bd2b542eaf7f757d898f2fac67de4dea099"
Commit
fad02dc2
authored
Jan 17, 2024
by
realazthat
Browse files
Don't use PEP 604 type hints, to stay compatible with Python<3.10.
parent
ee2c5fa7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
execution.py
execution.py
+1
-1
No files found.
execution.py
View file @
fad02dc2
...
@@ -751,7 +751,7 @@ class PromptQueue:
...
@@ -751,7 +751,7 @@ class PromptQueue:
if
len
(
self
.
history
)
>
MAXIMUM_HISTORY_SIZE
:
if
len
(
self
.
history
)
>
MAXIMUM_HISTORY_SIZE
:
self
.
history
.
pop
(
next
(
iter
(
self
.
history
)))
self
.
history
.
pop
(
next
(
iter
(
self
.
history
)))
status_dict
:
dict
|
None
=
None
status_dict
:
Optional
[
dict
]
=
None
if
status
is
not
None
:
if
status
is
not
None
:
status_dict
=
copy
.
deepcopy
(
status
.
_asdict
())
status_dict
=
copy
.
deepcopy
(
status
.
_asdict
())
...
...
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