Merge pull request #5 from balloob/patch-1

Remove cmp=True from APIVersion
This commit is contained in:
Guillermo Ruffino 2020-06-13 20:45:41 -03:00 committed by GitHub
commit c215b82566
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)