From aa439fec02a10fbca982e937867e770179281e9f Mon Sep 17 00:00:00 2001 From: Benjamin Drung Date: Wed, 3 Dec 2025 14:35:04 +0100 Subject: [PATCH] add missing return type annotation --- ubuntutools/test/example_package.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ubuntutools/test/example_package.py b/ubuntutools/test/example_package.py index c352d2e..9dd6fcf 100644 --- a/ubuntutools/test/example_package.py +++ b/ubuntutools/test/example_package.py @@ -60,7 +60,7 @@ class ExamplePackage: with tempfile.TemporaryDirectory() as tmpdir: self._create(Path(tmpdir)) - def _create(self, directory: Path): + def _create(self, directory: Path) -> None: pkgdir = directory / self.dirname pkgdir.mkdir() (pkgdir / self.content_filename).write_text(self.content_text)