Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2022-06-03 04:50:09 +0300
committerCampbell Barton <ideasman42@gmail.com>2022-06-03 04:50:32 +0300
commit016430de4b06714c006bb6de2ae3a28e05a86169 (patch)
tree0644482c7f78d17f11fbd26c30d74cc519b1999d /io_curve_svg
parentbcb71eea69a7b83c44112a5872ccd67cae96ec6f (diff)
Cleanup: remove <pep8 compliant> comment
This is no longer necessary, see: T98554.
Diffstat (limited to 'io_curve_svg')
-rw-r--r--io_curve_svg/__init__.py2
-rw-r--r--io_curve_svg/import_svg.py2
-rw-r--r--io_curve_svg/svg_colors.py2
-rw-r--r--io_curve_svg/svg_util.py2
-rwxr-xr-xio_curve_svg/svg_util_test.py2
5 files changed, 0 insertions, 10 deletions
diff --git a/io_curve_svg/__init__.py b/io_curve_svg/__init__.py
index a4883578..5ac9353a 100644
--- a/io_curve_svg/__init__.py
+++ b/io_curve_svg/__init__.py
@@ -1,7 +1,5 @@
# SPDX-License-Identifier: GPL-2.0-or-later
-# <pep8 compliant>
-
bl_info = {
"name": "Scalable Vector Graphics (SVG) 1.1 format",
"author": "JM Soler, Sergey Sharybin",
diff --git a/io_curve_svg/import_svg.py b/io_curve_svg/import_svg.py
index c9df4dfb..28f40764 100644
--- a/io_curve_svg/import_svg.py
+++ b/io_curve_svg/import_svg.py
@@ -1,7 +1,5 @@
# SPDX-License-Identifier: GPL-2.0-or-later
-# <pep8 compliant>
-
import re
import xml.dom.minidom
from math import cos, sin, tan, atan2, pi, ceil
diff --git a/io_curve_svg/svg_colors.py b/io_curve_svg/svg_colors.py
index 36825202..ca123224 100644
--- a/io_curve_svg/svg_colors.py
+++ b/io_curve_svg/svg_colors.py
@@ -1,7 +1,5 @@
# SPDX-License-Identifier: GPL-2.0-or-later
-# <pep8 compliant>
-
#
# Copied and adopted from paths_svg2obj.py script for Blender 2.49 which is
# Copyright (c) jm soler juillet/novembre 2004-april 2009,
diff --git a/io_curve_svg/svg_util.py b/io_curve_svg/svg_util.py
index 8bae3abb..f02dc7ff 100644
--- a/io_curve_svg/svg_util.py
+++ b/io_curve_svg/svg_util.py
@@ -1,7 +1,5 @@
# SPDX-License-Identifier: GPL-2.0-or-later
-# <pep8 compliant>
-
import re
diff --git a/io_curve_svg/svg_util_test.py b/io_curve_svg/svg_util_test.py
index 8dcd5c3d..976d9c3f 100755
--- a/io_curve_svg/svg_util_test.py
+++ b/io_curve_svg/svg_util_test.py
@@ -1,8 +1,6 @@
#!/usr/bin/env python3
# SPDX-License-Identifier: GPL-2.0-or-later
-# <pep8 compliant>
-
# XXX Not really nice, but that hack is needed to allow execution of that test
# from both automated CTest and by directly running the file manually.
if __name__ == '__main__':