File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -946,7 +946,6 @@ def get_ixxat_hwids():
946
946
947
947
948
948
def _detect_available_configs () -> List [AutoDetectedConfig ]:
949
-
950
949
config_list = [] # list in wich to store the resulting bus kwargs
951
950
952
951
# used to detect HWID
@@ -983,7 +982,13 @@ def _detect_available_configs() -> List[AutoDetectedConfig]:
983
982
break
984
983
else :
985
984
_canlib .canChannelClose (channel_handle )
986
- config_list .append ({"interface" : "ixxat" , "channel" : channel , "unique_hardware_id" : hwid })
985
+ config_list .append (
986
+ {
987
+ "interface" : "ixxat" ,
988
+ "channel" : channel ,
989
+ "unique_hardware_id" : hwid ,
990
+ }
991
+ )
987
992
_canlib .vciDeviceClose (device_handle2 )
988
993
_canlib .vciEnumDeviceClose (device_handle )
989
994
except AttributeError :
You can’t perform that action at this time.
0 commit comments