コード例 #1
0
ファイル: generation_strategy.py プロジェクト: mengwa41/Ax
 def __eq__(self, other: GenerationStep) -> bool:
     return object_attribute_dicts_equal(
         one_dict=self._asdict(), other_dict=other._asdict()
     )
コード例 #2
0
ファイル: base.py プロジェクト: viotemp1/Ax
 def __eq__(self, other: Base) -> bool:
     return object_attribute_dicts_equal(
         one_dict=self.__dict__, other_dict=other.__dict__
     )