@@ -60,30 +60,36 @@ def __set__(self, obj, value):
6060
6161class Int8Characteristic (IntCharacteristic ):
6262 """Int8 number."""
63+ # pylint: disable=too-few-public-methods
6364 def __init__ (self , * , min_value = - 128 , max_value = 127 , ** kwargs ):
6465 super ().__init__ ("<b" , min_value , max_value , ** kwargs )
6566
6667class Uint8Characteristic (IntCharacteristic ):
6768 """Uint8 number."""
69+ # pylint: disable=too-few-public-methods
6870 def __init__ (self , * , min_value = 0 , max_value = 0xff , ** kwargs ):
6971 super ().__init__ ("<B" , min_value , max_value , ** kwargs )
7072
7173class Int16Characteristic (IntCharacteristic ):
7274 """Int16 number."""
75+ # pylint: disable=too-few-public-methods
7376 def __init__ (self , * , min_value = - 32768 , max_value = 32767 , ** kwargs ):
7477 super ().__init__ ("<h" , min_value , max_value , ** kwargs )
7578
7679class Uint16Characteristic (IntCharacteristic ):
7780 """Uint16 number."""
81+ # pylint: disable=too-few-public-methods
7882 def __init__ (self , * , min_value = 0 , max_value = 0xffff , ** kwargs ):
7983 super ().__init__ ("<H" , min_value , max_value , ** kwargs )
8084
8185class Int32Characteristic (IntCharacteristic ):
8286 """Int32 number."""
87+ # pylint: disable=too-few-public-methods
8388 def __init__ (self , * , min_value = - 2147483648 , max_value = 2147483647 , ** kwargs ):
8489 super ().__init__ ("<i" , min_value , max_value , ** kwargs )
8590
8691class Uint32Characteristic (IntCharacteristic ):
8792 """Uint32 number."""
93+ # pylint: disable=too-few-public-methods
8894 def __init__ (self , * , min_value = 0 , max_value = 0xffffffff , ** kwargs ):
8995 super ().__init__ ("<I" , min_value , max_value , ** kwargs )
0 commit comments