Skip to content

Commit

Permalink
Use typing module for exactly one purpose
Browse files Browse the repository at this point in the history
Add mypy and pyright to the lint tasks.

Configure mypy and pyright in pyproject.toml.

Signed-off-by: mulhern <[email protected]>
  • Loading branch information
mulkieran committed Dec 2, 2024
1 parent df1b576 commit 53dcf2d
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 9 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,10 @@ jobs:
python3-dbus
python3-dbus-signature-pyparsing
python3-hypothesis
python3-mypy
task: >
PYTHONPATH=./src:/github/home/.local/lib/python3.12/site-packages
make -f Makefile lint
PATH=${PATH}:/github/home/.local/bin
PYTHONPATH=./src make -f Makefile lint
- dependencies: >
python3-dbus
python3-dbus-signature-pyparsing
Expand All @@ -53,6 +54,8 @@ jobs:
${{ matrix.dependencies }}
- name: Install hs-dbus-signature
run: pip install --user hs-dbus-signature
- name: Install pyright
run: pip install --user pyright
- name: ${{ matrix.task }}
run: ${{ matrix.task }}

Expand All @@ -66,7 +69,10 @@ jobs:
python3-dbus-signature-pyparsing
python3-hypothesis
python3-hs-dbus-signature
task: PYTHONPATH=./src make -f Makefile lint
python3-mypy
task: >
PATH=${PATH}:/github/home/.local/bin
PYTHONPATH=./src make -f Makefile lint
- dependencies: >
python3-dbus
python3-dbus-signature-pyparsing
Expand All @@ -90,6 +96,9 @@ jobs:
run: >
dnf install -y
make
pip
${{ matrix.dependencies }}
- name: Install pyright
run: pip install --user pyright
- name: ${{ matrix.task }}
run: ${{ matrix.task }}
7 changes: 5 additions & 2 deletions .github/workflows/weekly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,10 @@ jobs:
python3-dbus
python3-dbus-signature-pyparsing
python-hypothesis
python3-mypy
task: >
PYTHONPATH=./src:/github/home/.local/lib/python3.12/site-packages
make -f Makefile lint
PATH=${PATH}:/github/home/.local/bin
PYTHONPATH=./src make -f Makefile lint
runs-on: ubuntu-latest
container: fedora:41 # NEXT DEVELOPMENT ENVIRONMENT
steps:
Expand All @@ -36,5 +37,7 @@ jobs:
${{ matrix.dependencies }}
- name: Install hs-dbus-signature
run: pip install --user hs-dbus-signature
- name: Install pyright
run: pip install --user pyright
- name: ${{ matrix.task }}
run: ${{ matrix.task }}
2 changes: 2 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ lint:
pylint setup.py
pylint src/into_dbus_python
pylint tests
pyright
mypy src

.PHONY: test
test:
Expand Down
6 changes: 6 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"

[tool.pyright]
include = ["src"]

[tool.mypy]
disable_error_code = "import-untyped"
13 changes: 9 additions & 4 deletions src/into_dbus_python/_xformer.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
# isort: STDLIB
import functools
from collections.abc import Sequence
from typing import Any

# isort: THIRDPARTY
import dbus
Expand Down Expand Up @@ -148,7 +149,7 @@ def the_dict_func(a_dict, *, variant=0):
if len(toks) == 2:
(func, sig) = toks[1]

def the_array_func(a_list, *, variant=0):
def the_array_func(a_list: Sequence[Any], *, variant=0):
"""
Function for generating an Array from a list.
Expand Down Expand Up @@ -188,7 +189,7 @@ def _handle_struct(toks):
signature = "".join(s for (_, s) in subtrees)
funcs = [f for (f, _) in subtrees]

def the_func(a_list, *, variant=0):
def the_func(a_list: Sequence[Any], *, variant=0):
"""
Function for generating a Struct from a list.
Expand Down Expand Up @@ -290,9 +291,13 @@ def __init__(self):

self.VARIANT.setParseAction(self._handle_variant)

self.ARRAY.setParseAction(_ToDbusXformer._handle_array)
self.ARRAY.setParseAction( # pyright: ignore [ reportOptionalMemberAccess ]
_ToDbusXformer._handle_array
)

self.STRUCT.setParseAction(_ToDbusXformer._handle_struct)
self.STRUCT.setParseAction( # pyright: ignore [ reportOptionalMemberAccess ]
_ToDbusXformer._handle_struct
)


_XFORMER = _ToDbusXformer()
Expand Down

0 comments on commit 53dcf2d

Please sign in to comment.