mirror of
https://github.com/openkmip/pykmip
synced 2025-12-10 13:23:15 +00:00
Merge pull request #119 from OpenKMIP/bug/fix-binary-operator-line-break
Fixing line break style error
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user