Change byte to explict class instead of newtype

This commit is contained in:
protolambda 2019-06-15 22:12:59 +02:00
parent 82e7392b17
commit 108410d862
1 changed files with 2 additions and 1 deletions

View File

@ -45,7 +45,8 @@ class uint8(uint):
# Alias for uint8
byte = NewType('byte', uint8)
class byte(uint8):
pass
class uint16(uint):