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 /object_print3d_utils
parentbcb71eea69a7b83c44112a5872ccd67cae96ec6f (diff)
Cleanup: remove <pep8 compliant> comment
This is no longer necessary, see: T98554.
Diffstat (limited to 'object_print3d_utils')
-rw-r--r--object_print3d_utils/__init__.py2
-rw-r--r--object_print3d_utils/export.py2
-rw-r--r--object_print3d_utils/mesh_helpers.py2
-rw-r--r--object_print3d_utils/operators.py2
-rw-r--r--object_print3d_utils/report.py2
-rw-r--r--object_print3d_utils/ui.py2
6 files changed, 0 insertions, 12 deletions
diff --git a/object_print3d_utils/__init__.py b/object_print3d_utils/__init__.py
index 3c5d4cf9..35099642 100644
--- a/object_print3d_utils/__init__.py
+++ b/object_print3d_utils/__init__.py
@@ -1,7 +1,5 @@
# SPDX-License-Identifier: GPL-2.0-or-later
-# <pep8 compliant>
-
bl_info = {
"name": "3D-Print Toolbox",
"author": "Campbell Barton",
diff --git a/object_print3d_utils/export.py b/object_print3d_utils/export.py
index a73b2fde..aec19732 100644
--- a/object_print3d_utils/export.py
+++ b/object_print3d_utils/export.py
@@ -1,7 +1,5 @@
# SPDX-License-Identifier: GPL-2.0-or-later
-# <pep8-80 compliant>
-
# Export wrappers and integration with external tools.
diff --git a/object_print3d_utils/mesh_helpers.py b/object_print3d_utils/mesh_helpers.py
index 6ce5da50..7d23a078 100644
--- a/object_print3d_utils/mesh_helpers.py
+++ b/object_print3d_utils/mesh_helpers.py
@@ -1,7 +1,5 @@
# SPDX-License-Identifier: GPL-2.0-or-later
-# <pep8-80 compliant>
-
# Generic helper functions, to be used by any modules.
diff --git a/object_print3d_utils/operators.py b/object_print3d_utils/operators.py
index 39142dde..85f268e7 100644
--- a/object_print3d_utils/operators.py
+++ b/object_print3d_utils/operators.py
@@ -1,7 +1,5 @@
# SPDX-License-Identifier: GPL-2.0-or-later
-# <pep8-80 compliant>
-
# All Operator
diff --git a/object_print3d_utils/report.py b/object_print3d_utils/report.py
index 633b65c7..e6e2cb60 100644
--- a/object_print3d_utils/report.py
+++ b/object_print3d_utils/report.py
@@ -1,7 +1,5 @@
# SPDX-License-Identifier: GPL-2.0-or-later
-# <pep8-80 compliant>
-
# Report errors with the mesh.
diff --git a/object_print3d_utils/ui.py b/object_print3d_utils/ui.py
index e000544c..b01b936b 100644
--- a/object_print3d_utils/ui.py
+++ b/object_print3d_utils/ui.py
@@ -1,7 +1,5 @@
# SPDX-License-Identifier: GPL-2.0-or-later
-# <pep8-80 compliant>
-
# Interface for this addon.