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_scene_fbx
parentbcb71eea69a7b83c44112a5872ccd67cae96ec6f (diff)
Cleanup: remove <pep8 compliant> comment
This is no longer necessary, see: T98554.
Diffstat (limited to 'io_scene_fbx')
-rw-r--r--io_scene_fbx/__init__.py2
-rw-r--r--io_scene_fbx/data_types.py2
-rw-r--r--io_scene_fbx/encode_bin.py2
-rw-r--r--io_scene_fbx/export_fbx_bin.py2
-rwxr-xr-xio_scene_fbx/fbx2json.py2
-rw-r--r--io_scene_fbx/fbx_utils.py2
-rw-r--r--io_scene_fbx/import_fbx.py2
-rwxr-xr-xio_scene_fbx/json2fbx.py2
-rw-r--r--io_scene_fbx/parse_fbx.py2
9 files changed, 0 insertions, 18 deletions
diff --git a/io_scene_fbx/__init__.py b/io_scene_fbx/__init__.py
index a84dca34..02d135b1 100644
--- a/io_scene_fbx/__init__.py
+++ b/io_scene_fbx/__init__.py
@@ -1,7 +1,5 @@
# SPDX-License-Identifier: GPL-2.0-or-later
-# <pep8 compliant>
-
bl_info = {
"name": "FBX format",
"author": "Campbell Barton, Bastien Montagne, Jens Restemeier",
diff --git a/io_scene_fbx/data_types.py b/io_scene_fbx/data_types.py
index fa835232..38d3fec4 100644
--- a/io_scene_fbx/data_types.py
+++ b/io_scene_fbx/data_types.py
@@ -1,7 +1,5 @@
# SPDX-License-Identifier: GPL-2.0-or-later
-# <pep8 compliant>
-
# Script copyright (C) 2006-2012, assimp team
# Script copyright (C) 2013 Blender Foundation
diff --git a/io_scene_fbx/encode_bin.py b/io_scene_fbx/encode_bin.py
index 80116692..516221e6 100644
--- a/io_scene_fbx/encode_bin.py
+++ b/io_scene_fbx/encode_bin.py
@@ -1,7 +1,5 @@
# SPDX-License-Identifier: GPL-2.0-or-later
-# <pep8 compliant>
-
# Script copyright (C) 2013 Campbell Barton
try:
diff --git a/io_scene_fbx/export_fbx_bin.py b/io_scene_fbx/export_fbx_bin.py
index 473b2947..ae7be61c 100644
--- a/io_scene_fbx/export_fbx_bin.py
+++ b/io_scene_fbx/export_fbx_bin.py
@@ -1,7 +1,5 @@
# SPDX-License-Identifier: GPL-2.0-or-later
-# <pep8 compliant>
-
# Script copyright (C) Campbell Barton, Bastien Montagne
diff --git a/io_scene_fbx/fbx2json.py b/io_scene_fbx/fbx2json.py
index 70cdcc84..526e61ee 100755
--- a/io_scene_fbx/fbx2json.py
+++ b/io_scene_fbx/fbx2json.py
@@ -1,8 +1,6 @@
#!/usr/bin/env python3
# SPDX-License-Identifier: GPL-2.0-or-later
-# <pep8 compliant>
-
# Script copyright (C) 2006-2012, assimp team
# Script copyright (C) 2013 Blender Foundation
diff --git a/io_scene_fbx/fbx_utils.py b/io_scene_fbx/fbx_utils.py
index 680ee387..35fdede7 100644
--- a/io_scene_fbx/fbx_utils.py
+++ b/io_scene_fbx/fbx_utils.py
@@ -1,7 +1,5 @@
# SPDX-License-Identifier: GPL-2.0-or-later
-# <pep8 compliant>
-
# Script copyright (C) Campbell Barton, Bastien Montagne
diff --git a/io_scene_fbx/import_fbx.py b/io_scene_fbx/import_fbx.py
index bf5641ca..5fabec24 100644
--- a/io_scene_fbx/import_fbx.py
+++ b/io_scene_fbx/import_fbx.py
@@ -1,7 +1,5 @@
# SPDX-License-Identifier: GPL-2.0-or-later
-# <pep8 compliant>
-
# Script copyright (C) Blender Foundation
# FBX 7.1.0 -> 7.4.0 loader for Blender
diff --git a/io_scene_fbx/json2fbx.py b/io_scene_fbx/json2fbx.py
index 5e8d177e..9712c8bb 100755
--- a/io_scene_fbx/json2fbx.py
+++ b/io_scene_fbx/json2fbx.py
@@ -1,8 +1,6 @@
#!/usr/bin/env python3
# SPDX-License-Identifier: GPL-2.0-or-later
-# <pep8 compliant>
-
# Script copyright (C) 2014 Blender Foundation
"""
diff --git a/io_scene_fbx/parse_fbx.py b/io_scene_fbx/parse_fbx.py
index 43ae255f..96fd8104 100644
--- a/io_scene_fbx/parse_fbx.py
+++ b/io_scene_fbx/parse_fbx.py
@@ -1,7 +1,5 @@
# SPDX-License-Identifier: GPL-2.0-or-later
-# <pep8 compliant>
-
# Script copyright (C) 2006-2012, assimp team
# Script copyright (C) 2013 Blender Foundation