Remove semicolon

This commit is contained in:
Jakub Trllo 2023-10-26 19:12:15 +02:00 committed by GitHub
parent bbfff158b0
commit 576ac94e31
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -243,7 +243,7 @@ class UILabelDef(UIDef):
def __eq__(self, other):
if not super(UILabelDef, self).__eq__(other):
return False
return self.label == other.label:
return self.label == other.label
# ---------------------------------------