From 99509df8d8abf1e7b701a4a09cf170a362f6d878 Mon Sep 17 00:00:00 2001 From: capellancitizen Date: Sun, 9 Mar 2025 21:21:48 -0400 Subject: Mypy type correctness (#3199) --- tests/test_lib_svg_svg.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/test_lib_svg_svg.py') diff --git a/tests/test_lib_svg_svg.py b/tests/test_lib_svg_svg.py index 1d873fb2..825715d6 100644 --- a/tests/test_lib_svg_svg.py +++ b/tests/test_lib_svg_svg.py @@ -6,7 +6,7 @@ from inkex.tester.svg import svg class LibSvgSvgTest(TestCase): - def test_point_upwards(self): + def test_point_upwards(self) -> None: root = svg() rect = root.add(Rectangle(attrib={ "width": "10", @@ -24,7 +24,7 @@ class LibSvgSvgTest(TestCase): 4 ) - def test_point_upwards_mirrored(self): + def test_point_upwards_mirrored(self) -> None: root = svg() rect = root.add(PathElement(attrib={ "d": "M 0,0 L 10,0 0,5 Z", -- cgit v1.2.3