Skip to content

Commit ffe876a

Browse files
committed
Remove debug messages
1 parent 934115c commit ffe876a

1 file changed

Lines changed: 0 additions & 8 deletions

File tree

tests/metaschema/properties/test_ArgsMetaschemaProperty.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ def __eq__(self, solf):
1010
import inspect
1111
a_str = f"{self.__module__}.{self.__name__}[{inspect.getfile(self)}]"
1212
b_str = f"{solf.__module__}.{solf.__name__}[{inspect.getfile(solf)}]"
13-
print(f"Dummy __eq__ = {a_str == b_str}\n a = {a_str}\n b = {b_str}")
1413
return a_str == b_str
1514

1615
def __hash__(self):
@@ -41,13 +40,6 @@ def __init__(self, a, b, c=0, d=Dummy):
4140
def __eq__(self, solf):
4241
if solf.__class__ != self.__class__: # pragma: debug
4342
return False
44-
print(self._input_args, solf._input_args,
45-
(self._input_args == solf._input_args),
46-
[a == b for a, b in zip(self._input_args, solf._input_args)])
47-
print(self._input_kwargs, solf._input_kwargs,
48-
(self._input_kwargs == solf._input_kwargs),
49-
{k: (self._input_kwargs[k] == solf._input_kwargs.get(k, None))
50-
for k in self._input_kwargs.keys()})
5143
return ((self._input_args == solf._input_args)
5244
and (self._input_kwargs == solf._input_kwargs))
5345

0 commit comments

Comments
 (0)