py: Rename 'efd' to 'event_fd'

Perhaps it's better to have a more descriptive name here. I also
considered just renaming 'efd' to 'fd', but 'event_fd' won.

Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
This commit is contained in:
Tomi Valkeinen
2022-05-27 17:44:31 +03:00
committed by Laurent Pinchart
parent 1698442aa8
commit 7a0a464dd1
6 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -205,7 +205,7 @@ PYBIND11_MODULE(_libcamera, m)
.def_property_readonly("version", &CameraManager::version)
.def_property_readonly("efd", [](CameraManager &) {
.def_property_readonly("event_fd", [](CameraManager &) {
return gEventfd;
})