Revert config eq
This commit is contained in:
parent
3979f6eaa4
commit
d10441d877
|
@ -225,11 +225,11 @@ class ConfigMixin:
|
||||||
text = reader.read()
|
text = reader.read()
|
||||||
return json.loads(text)
|
return json.loads(text)
|
||||||
|
|
||||||
# def __eq__(self, other):
|
def __eq__(self, other):
|
||||||
# return self.__dict__ == other.__dict__
|
return self.__dict__ == other.__dict__
|
||||||
|
|
||||||
# def __repr__(self):
|
def __repr__(self):
|
||||||
# return f"{self.__class__.__name__} {self.to_json_string()}"
|
return f"{self.__class__.__name__} {self.to_json_string()}"
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def config(self) -> Dict[str, Any]:
|
def config(self) -> Dict[str, Any]:
|
||||||
|
|
Loading…
Reference in New Issue