Skip to content

Commit dc37c18

Browse files
committed
Merge pull request gvalkov#5 from kived/master
fix vendor id/product id
2 parents c5b67ca + 15020a0 commit dc37c18

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

evdev/device.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
_AbsInfo = namedtuple('AbsInfo', ['value', 'min', 'max', 'fuzz', 'flat', 'resolution'])
1212
_KbdInfo = namedtuple('KbdInfo', ['repeat', 'delay'])
13-
_DeviceInfo = namedtuple('DeviceInfo', ['bustype', 'product', 'vendor', 'version'])
13+
_DeviceInfo = namedtuple('DeviceInfo', ['bustype', 'vendor', 'product', 'version'])
1414

1515

1616
class AbsInfo(_AbsInfo):

0 commit comments

Comments
 (0)