mirror of https://github.com/OpenKMIP/PyKMIP.git
Fixing line break style error
This change fixes a minor style error where a line break was used before a binary operator in an if-statement.
This commit is contained in:
parent
a7a3b958d0
commit
fee1157ee7
|
@ -103,10 +103,9 @@ class ProtocolVersion(Struct):
|
|||
def __eq__(self, other):
|
||||
if isinstance(other, ProtocolVersion):
|
||||
if ((self.protocol_version_major ==
|
||||
other.protocol_version_major)
|
||||
and
|
||||
(self.protocol_version_minor ==
|
||||
other.protocol_version_minor)):
|
||||
other.protocol_version_major) and
|
||||
(self.protocol_version_minor ==
|
||||
other.protocol_version_minor)):
|
||||
return True
|
||||
else:
|
||||
return False
|
||||
|
|
Loading…
Reference in New Issue