diff options
author | Aarni Koskela <akx@iki.fi> | 2023-06-02 11:58:10 +0000 |
---|---|---|
committer | Aarni Koskela <akx@iki.fi> | 2023-06-02 12:07:10 +0000 |
commit | 51864790fd72386fbbbb015d24a43ce501ecaa4b (patch) | |
tree | a114dc065c25ec267043f35dea735f8e3097e9a0 /modules/call_queue.py | |
parent | 3e995778fc525ff15d56c1472c1a1bc701019ec5 (diff) | |
download | stable-diffusion-webui-gfx803-51864790fd72386fbbbb015d24a43ce501ecaa4b.tar.gz stable-diffusion-webui-gfx803-51864790fd72386fbbbb015d24a43ce501ecaa4b.tar.bz2 stable-diffusion-webui-gfx803-51864790fd72386fbbbb015d24a43ce501ecaa4b.zip |
Simplify a bunch of `len(x) > 0`/`len(x) == 0` style expressions
Diffstat (limited to 'modules/call_queue.py')
-rw-r--r-- | modules/call_queue.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/call_queue.py b/modules/call_queue.py index 53af6d70..1b5e5273 100644 --- a/modules/call_queue.py +++ b/modules/call_queue.py @@ -21,7 +21,7 @@ def wrap_gradio_gpu_call(func, extra_outputs=None): def f(*args, **kwargs):
# if the first argument is a string that says "task(...)", it is treated as a job id
- if len(args) > 0 and type(args[0]) == str and args[0][0:5] == "task(" and args[0][-1] == ")":
+ if args and type(args[0]) == str and args[0].startswith("task(") and args[0].endswith(")"):
id_task = args[0]
progress.add_task_to_queue(id_task)
else:
|