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 /mesh_inset
parentbcb71eea69a7b83c44112a5872ccd67cae96ec6f (diff)
Cleanup: remove <pep8 compliant> comment
This is no longer necessary, see: T98554.
Diffstat (limited to 'mesh_inset')
-rw-r--r--mesh_inset/__init__.py2
-rw-r--r--mesh_inset/geom.py2
-rw-r--r--mesh_inset/model.py2
-rw-r--r--mesh_inset/offset.py2
-rw-r--r--mesh_inset/triquad.py2
5 files changed, 0 insertions, 10 deletions
diff --git a/mesh_inset/__init__.py b/mesh_inset/__init__.py
index 2f769dac..a642476d 100644
--- a/mesh_inset/__init__.py
+++ b/mesh_inset/__init__.py
@@ -1,7 +1,5 @@
# SPDX-License-Identifier: GPL-2.0-or-later
-# <pep8 compliant>
-
bl_info = {
"name": "Inset Straight Skeleton",
"author": "Howard Trickey",
diff --git a/mesh_inset/geom.py b/mesh_inset/geom.py
index f9c83253..d69eb4b6 100644
--- a/mesh_inset/geom.py
+++ b/mesh_inset/geom.py
@@ -1,7 +1,5 @@
# SPDX-License-Identifier: GPL-2.0-or-later
-# <pep8 compliant>
-
"""Geometry classes and operations.
Also, vector file representation (Art).
"""
diff --git a/mesh_inset/model.py b/mesh_inset/model.py
index 476cb8c0..efc1138c 100644
--- a/mesh_inset/model.py
+++ b/mesh_inset/model.py
@@ -1,7 +1,5 @@
# SPDX-License-Identifier: GPL-2.0-or-later
-# <pep8 compliant>
-
"""Manipulations of Models.
"""
diff --git a/mesh_inset/offset.py b/mesh_inset/offset.py
index da4adaad..5ed21f1b 100644
--- a/mesh_inset/offset.py
+++ b/mesh_inset/offset.py
@@ -1,7 +1,5 @@
# SPDX-License-Identifier: GPL-2.0-or-later
-# <pep8 compliant>
-
"""Creating offset polygons inside faces."""
__author__ = "howard.trickey@gmail.com"
diff --git a/mesh_inset/triquad.py b/mesh_inset/triquad.py
index af1a9153..9c9c60c0 100644
--- a/mesh_inset/triquad.py
+++ b/mesh_inset/triquad.py
@@ -1,7 +1,5 @@
# SPDX-License-Identifier: GPL-2.0-or-later
-# <pep8 compliant>
-
from . import geom
import math