Commit c75f45d5 authored by Frederik Teichert's avatar Frederik Teichert Committed by oroulet

asyncua.ua.uatypes.SByte and asyncua.ua.uatypes.Byte inherit from int instead of bytes

parent f08f8693
......@@ -77,11 +77,11 @@ def type_string_from_type(uatype):
return uatype.__name__
class SByte(bytes):
class SByte(int):
pass
class Byte(bytes):
class Byte(int):
pass
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment