Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,11 @@ yamllint:
.PHONY: package
package:
(umask 0022; python -m build; python -m twine check --strict ./dist/*)

.PHONY: check-typos
check-typos:
typos

.PHONY: fix-typos
fix-typos:
typos -w
2 changes: 2 additions & 0 deletions _typos.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[files]
extend-exclude = ["_introspect.py"]
2 changes: 1 addition & 1 deletion src/dbus_python_client_gen/_invokers.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def prop_builder( # noqa: PLR0915
:param str interface_name: the interface to which these properties belong
:param properties: iterable of interface specifications for each property
:type properties: iterable of xml.element.ElementTree.Element
:param int defaul_timeout: the D-Bus timeout, -1 is the libdbus default ~25s
:param int default_timeout: the D-Bus timeout, -1 is the libdbus default ~25s

:raises DPClientGenerationError:
"""
Expand Down