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 /add_mesh_extra_objects
parentbcb71eea69a7b83c44112a5872ccd67cae96ec6f (diff)
Cleanup: remove <pep8 compliant> comment
This is no longer necessary, see: T98554.
Diffstat (limited to 'add_mesh_extra_objects')
-rw-r--r--add_mesh_extra_objects/add_mesh_rocks/__init__.py2
-rw-r--r--add_mesh_extra_objects/add_mesh_rocks/rockgen.py2
-rw-r--r--add_mesh_extra_objects/add_mesh_rocks/settings.py2
-rw-r--r--add_mesh_extra_objects/add_mesh_rocks/utils.py2
4 files changed, 0 insertions, 8 deletions
diff --git a/add_mesh_extra_objects/add_mesh_rocks/__init__.py b/add_mesh_extra_objects/add_mesh_rocks/__init__.py
index 39bf7349..656a4b6d 100644
--- a/add_mesh_extra_objects/add_mesh_rocks/__init__.py
+++ b/add_mesh_extra_objects/add_mesh_rocks/__init__.py
@@ -11,8 +11,6 @@
# Coded in IDLE, tested in Blender 2.68a. NumPy Recommended.
# Search for "@todo" to quickly find sections that need work.
-# <pep8 compliant>
-
bl_info = {
"name": "Rock Generator",
"author": "Paul Marshall (brikbot)",
diff --git a/add_mesh_extra_objects/add_mesh_rocks/rockgen.py b/add_mesh_extra_objects/add_mesh_rocks/rockgen.py
index a0088bbb..d0138787 100644
--- a/add_mesh_extra_objects/add_mesh_rocks/rockgen.py
+++ b/add_mesh_extra_objects/add_mesh_rocks/rockgen.py
@@ -90,8 +90,6 @@
# Functional code comes before fast code. Once it works, then worry about
# making it faster/more efficient.
-# <pep8 compliant>
-
import bpy
import time
from . import (
diff --git a/add_mesh_extra_objects/add_mesh_rocks/settings.py b/add_mesh_extra_objects/add_mesh_rocks/settings.py
index 3dd485f9..50b99be4 100644
--- a/add_mesh_extra_objects/add_mesh_rocks/settings.py
+++ b/add_mesh_extra_objects/add_mesh_rocks/settings.py
@@ -11,8 +11,6 @@
# Coded in IDLE, tested in Blender 2.59. NumPy Recommended.
# Search for "@todo" to quickly find sections that need work.
-# <pep8 compliant>
-
import inspect
import shutil
from . import utils
diff --git a/add_mesh_extra_objects/add_mesh_rocks/utils.py b/add_mesh_extra_objects/add_mesh_rocks/utils.py
index 5b4e26ca..d41e87c5 100644
--- a/add_mesh_extra_objects/add_mesh_rocks/utils.py
+++ b/add_mesh_extra_objects/add_mesh_rocks/utils.py
@@ -1,7 +1,5 @@
# SPDX-License-Identifier: GPL-2.0-or-later
-# <pep8 compliant>
-
# Converts a formatted string to a float tuple:
# IN - '(0.5, 0.2)' -> CONVERT -> OUT - (0.5, 0.2)
def toTuple(stringIn):