Micro-optimization

This commit is contained in:
Kovid Goyal 2019-03-13 13:46:40 +05:30
parent 7fd5940ef8
commit 073e97121e
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -118,7 +118,7 @@ static PyObject* get_devices(PyObject *self, PyObject *args) {
static char libusb_doc[] = "Interface to libusb.";
static PyMethodDef libusb_methods[] = {
{"get_devices", get_devices, METH_VARARGS,
{"get_devices", get_devices, METH_NOARGS,
"get_devices()\n\nGet the list of USB devices on the system."
},