summaryrefslogtreecommitdiff
path: root/tests/test_lib_svg_svg.py
diff options
context:
space:
mode:
authorcapellancitizen <thecapellancitizen@gmail.com>2025-03-09 21:21:48 -0400
committerGitHub <noreply@github.com>2025-03-09 21:21:48 -0400
commit99509df8d8abf1e7b701a4a09cf170a362f6d878 (patch)
treea461549502fa9f37dc287789b6c7db81dfcd5368 /tests/test_lib_svg_svg.py
parent0d2fc24f25f87562f0755b53dad6204efad1330d (diff)
Mypy type correctness (#3199)
Diffstat (limited to 'tests/test_lib_svg_svg.py')
-rw-r--r--tests/test_lib_svg_svg.py4
1 files changed, 2 insertions, 2 deletions
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",