diff options
author | w-e-w <40751091+w-e-w@users.noreply.github.com> | 2023-06-03 20:19:47 +0000 |
---|---|---|
committer | w-e-w <40751091+w-e-w@users.noreply.github.com> | 2023-06-03 20:19:47 +0000 |
commit | 0a277ab59183df638650d8373d785c94d14634ed (patch) | |
tree | f32528b58acac7fda5de52e8a6fa914f04bfb386 /modules/extra_networks.py | |
parent | 1c9d1b0ee06cffe0ba1b33a5795755cf39e5dde2 (diff) | |
download | stable-diffusion-webui-gfx803-0a277ab59183df638650d8373d785c94d14634ed.tar.gz stable-diffusion-webui-gfx803-0a277ab59183df638650d8373d785c94d14634ed.tar.bz2 stable-diffusion-webui-gfx803-0a277ab59183df638650d8373d785c94d14634ed.zip |
remove redone compare
Diffstat (limited to 'modules/extra_networks.py')
-rw-r--r-- | modules/extra_networks.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/extra_networks.py b/modules/extra_networks.py index 5c5c9a53..1f093df2 100644 --- a/modules/extra_networks.py +++ b/modules/extra_networks.py @@ -33,7 +33,7 @@ class ExtraNetworkParams: self.positional.append(item)
def __eq__(self, other):
- return self.items == other.items and self.positional == other.positional and self.named == other.named
+ return self.items == other.items
class ExtraNetwork:
|