From 4445d039a697bb2af90c4a5809634eb74e45f9c5 Mon Sep 17 00:00:00 2001 From: luz paz Date: Fri, 18 Mar 2022 17:05:05 -0400 Subject: [PATCH] Fix trivial typos Found via `codespell -q 3 -L ba` --- scour/scour.py | 2 +- test_scour.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scour/scour.py b/scour/scour.py index 9d19906..4a03732 100644 --- a/scour/scour.py +++ b/scour/scour.py @@ -340,7 +340,7 @@ colors = { 'yellowgreen': 'rgb(154, 205, 50)', } -# A list of default poperties that are safe to remove +# A list of default properties that are safe to remove # # Sources for this list: # https://www.w3.org/TR/SVG/propidx.html (implemented) diff --git a/test_scour.py b/test_scour.py index 549333f..0c07746 100755 --- a/test_scour.py +++ b/test_scour.py @@ -1123,7 +1123,7 @@ class BooleanFlagsInEllipticalPath(unittest.TestCase): paths = doc.getElementsByTagNameNS(SVGNS, 'path') for path in paths: self.assertEqual(path.getAttribute('d'), 'm0 0a100 50 0 00100 50', - 'Did not ommit spaces after boolean flags in elliptical arg path command') + 'Did not omit spaces after boolean flags in elliptical arg path command') def test_output_spaces_with_renderer_workaround(self): doc = scourXmlFile('unittests/path-elliptical-flags.svg', parse_args(['--renderer-workaround']))