MCPcopy Create free account
hub / github.com/pyfa-org/Pyfa / __ne__

Method __ne__

eos/eqBase.py:27–28  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

25 return type(self) == type(other) and self.ID == other.ID
26
27 def __ne__(self, other):
28 return type(self) != type(other) or self.ID != other.ID
29
30 def __hash__(self):
31 return id(type(self)) + self.ID

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected