mirror of
https://github.com/openkmip/pykmip
synced 2025-12-14 23:33:19 +00:00
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:
@@ -103,10 +103,9 @@ class ProtocolVersion(Struct):
|
|||||||
def __eq__(self, other):
|
def __eq__(self, other):
|
||||||
if isinstance(other, ProtocolVersion):
|
if isinstance(other, ProtocolVersion):
|
||||||
if ((self.protocol_version_major ==
|
if ((self.protocol_version_major ==
|
||||||
other.protocol_version_major)
|
other.protocol_version_major) and
|
||||||
and
|
(self.protocol_version_minor ==
|
||||||
(self.protocol_version_minor ==
|
other.protocol_version_minor)):
|
||||||
other.protocol_version_minor)):
|
|
||||||
return True
|
return True
|
||||||
else:
|
else:
|
||||||
return False
|
return False
|
||||||
|
|||||||
Reference in New Issue
Block a user