fix conds caching with extra network

This commit is contained in:
w-e-w
2023-06-04 04:24:44 +09:00
parent 30bbb8bce3
commit f098e726d3
2 changed files with 15 additions and 12 deletions

View File

@@ -32,6 +32,9 @@ class ExtraNetworkParams:
else:
self.positional.append(item)
def __eq__(self, other):
return self.items == other.items and self.positional == other.positional and self.named == other.named
class ExtraNetwork:
def __init__(self, name):