Skip to content

Commit c23fdf8

Browse files
fixed __eq__
1 parent f820b6b commit c23fdf8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mindsdb_sdk/agents.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ def __repr__(self):
186186
def __eq__(self, other):
187187
if self.name != other.name:
188188
return False
189-
if self.model_name != other.model_name:
189+
if self.model != other.model:
190190
return False
191191
if self.provider != other.provider:
192192
return False

0 commit comments

Comments
 (0)