mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-04-02 14:29:37 +07:00
8 lines
191 B
Python
8 lines
191 B
Python
# not required for ChromeOS. May be required for other operational systems, like Linux or Mac
|
|
import usb
|
|
|
|
dev = usb.core.find(idVendor=0x0922, idProduct=0x0020)
|
|
|
|
dev.detach_kernel_driver(0)
|
|
|