diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2022-12-24 07:17:38 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-24 07:17:38 +0000 |
commit | ee65237d69f015a53fc9dffa363e9161ba83fe40 (patch) | |
tree | f9cb9ec81a2ce52cf8d05564723c844b157a25d4 /modules | |
parent | 7578b50ba66cefbdd80a09ea578252e582160785 (diff) | |
parent | 957e15c4642199e0792eba817a15e244246fb012 (diff) | |
download | stable-diffusion-webui-gfx803-ee65237d69f015a53fc9dffa363e9161ba83fe40.tar.gz stable-diffusion-webui-gfx803-ee65237d69f015a53fc9dffa363e9161ba83fe40.tar.bz2 stable-diffusion-webui-gfx803-ee65237d69f015a53fc9dffa363e9161ba83fe40.zip |
Merge pull request #5747 from yuvalabou/singleton-comparison
Format singleton comparisons
Diffstat (limited to 'modules')
-rw-r--r-- | modules/extras.py | 2 | ||||
-rw-r--r-- | modules/ngrok.py | 4 | ||||
-rw-r--r-- | modules/ui.py | 8 |
3 files changed, 9 insertions, 5 deletions
diff --git a/modules/extras.py b/modules/extras.py index 704e5165..6fa7d856 100644 --- a/modules/extras.py +++ b/modules/extras.py @@ -188,7 +188,7 @@ def run_extras(extras_mode, resize_mode, image, image_folder, input_dir, output_ for op in extras_ops:
image, info = op(image, info)
- if opts.use_original_name_batch and image_name != None:
+ if opts.use_original_name_batch and image_name is not None:
basename = os.path.splitext(os.path.basename(image_name))[0]
else:
basename = ''
diff --git a/modules/ngrok.py b/modules/ngrok.py index 64c9a3c2..3df2c06b 100644 --- a/modules/ngrok.py +++ b/modules/ngrok.py @@ -2,7 +2,7 @@ from pyngrok import ngrok, conf, exception def connect(token, port, region): account = None - if token == None: + if token is None: token = 'None' else: if ':' in token: @@ -14,7 +14,7 @@ def connect(token, port, region): auth_token=token, region=region ) try: - if account == None: + if account is None: public_url = ngrok.connect(port, pyngrok_config=config, bind_tls=True).public_url else: public_url = ngrok.connect(port, pyngrok_config=config, bind_tls=True, auth=account).public_url diff --git a/modules/ui.py b/modules/ui.py index 76919b0f..c81732f1 100644 --- a/modules/ui.py +++ b/modules/ui.py @@ -49,10 +49,14 @@ if not cmd_opts.share and not cmd_opts.listen: gradio.utils.version_check = lambda: None
gradio.utils.get_local_ip_address = lambda: '127.0.0.1'
-if cmd_opts.ngrok != None:
+if cmd_opts.ngrok is not None:
import modules.ngrok as ngrok
print('ngrok authtoken detected, trying to connect...')
- ngrok.connect(cmd_opts.ngrok, cmd_opts.port if cmd_opts.port != None else 7860, cmd_opts.ngrok_region)
+ ngrok.connect(
+ cmd_opts.ngrok,
+ cmd_opts.port if cmd_opts.port is not None else 7860,
+ cmd_opts.ngrok_region
+ )
def gr_show(visible=True):
|