diff --git a/src/oxcli/ox.py b/src/oxcli/ox.py index 80c6f42..9aad7ab 100644 --- a/src/oxcli/ox.py +++ b/src/oxcli/ox.py @@ -44,7 +44,7 @@ def __init__( def __eq__(self, other) -> bool: if not isinstance(other, OxCluster): return False - if ( self.master_username == other.master_username and + if ( self.master_username == other.master_username and self.master_password == other.master_password and self.name == self.name ): return True