Remove cmp=True from APIVersion

This commit is contained in:
Paulus Schoutsen 2020-01-29 22:03:58 -08:00 committed by GitHub
parent 8ed1d1ad12
commit 7a186109d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ import attr
# for a field (False, 0, empty string, enum with value 0, ...)
@attr.s(cmp=True)
@attr.s
class APIVersion:
major = attr.ib(type=int, default=0)
minor = attr.ib(type=int, default=0)