From: Phil Howard Date: Thu, 12 Oct 2023 19:51:39 +0000 (+0100) Subject: bindings: python: simplify environ access X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=9f9671dbb68e612e4ea9e12921ba05c0f11955bd;p=qemu-gpiodev%2Flibgpiod.git bindings: python: simplify environ access Use environ.get() in lieu of an explicit check for GPIOD_WITH_TESTS in os.environ. Returns None and evaluates as False if GPIOD_WITH_TESTS == "1" is not specified. Signed-off-by: Phil Howard Signed-off-by: Bartosz Golaszewski --- diff --git a/bindings/python/setup.py b/bindings/python/setup.py index fd674aa..df10e18 100644 --- a/bindings/python/setup.py +++ b/bindings/python/setup.py @@ -50,7 +50,7 @@ procname_ext = Extension( ) extensions = [gpiod_ext] -if "GPIOD_WITH_TESTS" in environ and environ["GPIOD_WITH_TESTS"] == "1": +if environ.get("GPIOD_WITH_TESTS") == "1": extensions.append(gpiosim_ext) extensions.append(procname_ext)