Message ID | 20240927-vfazio-mypy-v1-6-91a7c2e20884@xes-inc.com |
---|---|
State | Superseded |
Headers | show |
Series | bindings: python: conform to mypy and ruff linter recommendations | expand |
On Fri, Sep 27, 2024 at 8:57 PM Vincent Fazio <vfazio@xes-inc.com> wrote: > > Signed-off-by: Vincent Fazio <vfazio@xes-inc.com> > --- > bindings/python/gpiod/chip.py | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/bindings/python/gpiod/chip.py b/bindings/python/gpiod/chip.py > index 75cc337e74bc965a30962b39a1584b13b4c4b067..4aa5677f94caf8c5d863aa6d75915a5b650de137 100644 > --- a/bindings/python/gpiod/chip.py > +++ b/bindings/python/gpiod/chip.py > @@ -57,8 +57,8 @@ class Chip: > path: > Path to the GPIO character device file. > """ > - self._chip = _ext.Chip(path) > - self._info = None > + self._chip: Union[_ext.Chip, None] = _ext.Chip(path) > + self._info: Union[ChipInfo, None] = None > > def __bool__(self) -> bool: > """ > > -- > 2.34.1 > Needs, commit message. Otherwise looks good. Bart
diff --git a/bindings/python/gpiod/chip.py b/bindings/python/gpiod/chip.py index 75cc337e74bc965a30962b39a1584b13b4c4b067..4aa5677f94caf8c5d863aa6d75915a5b650de137 100644 --- a/bindings/python/gpiod/chip.py +++ b/bindings/python/gpiod/chip.py @@ -57,8 +57,8 @@ class Chip: path: Path to the GPIO character device file. """ - self._chip = _ext.Chip(path) - self._info = None + self._chip: Union[_ext.Chip, None] = _ext.Chip(path) + self._info: Union[ChipInfo, None] = None def __bool__(self) -> bool: """
Signed-off-by: Vincent Fazio <vfazio@xes-inc.com> --- bindings/python/gpiod/chip.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)