Cleanup: remove "<pep8 compliant>" from headers
It can be assumed that all scripts comply with basic pep8 formatting regarding white-space, indentation etc. Also remove note in best practices page & update `tests/python/pep8.py`. If we want to exclude some scripts from make format, this can be done by adding them to `ignore_files` in: source/tools/utils_maintenance/autopep8_format_paths.py Or using `# nopep8` for to ignore for individual lines. Ref T98554
This commit is contained in:
@@ -1,8 +1,6 @@
|
|||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8 compliant>
|
|
||||||
|
|
||||||
"""
|
"""
|
||||||
Example linux usage
|
Example linux usage
|
||||||
python3 ~/blender-git/blender/build_files/cmake/cmake_netbeans_project.py ~/blender-git/cmake
|
python3 ~/blender-git/blender/build_files/cmake/cmake_netbeans_project.py ~/blender-git/cmake
|
||||||
|
|||||||
@@ -1,8 +1,6 @@
|
|||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8 compliant>
|
|
||||||
|
|
||||||
r"""
|
r"""
|
||||||
Example Linux usage:
|
Example Linux usage:
|
||||||
python ~/blender-git/blender/build_files/cmake/cmake_qtcreator_project.py --build-dir ~/blender-git/cmake
|
python ~/blender-git/blender/build_files/cmake/cmake_qtcreator_project.py --build-dir ~/blender-git/cmake
|
||||||
|
|||||||
@@ -1,8 +1,6 @@
|
|||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8 compliant>
|
|
||||||
|
|
||||||
import project_source_info
|
import project_source_info
|
||||||
import subprocess
|
import subprocess
|
||||||
import sys
|
import sys
|
||||||
|
|||||||
@@ -1,8 +1,6 @@
|
|||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8 compliant>
|
|
||||||
|
|
||||||
import project_source_info
|
import project_source_info
|
||||||
import subprocess
|
import subprocess
|
||||||
import sys
|
import sys
|
||||||
|
|||||||
@@ -1,8 +1,6 @@
|
|||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8 compliant>
|
|
||||||
|
|
||||||
CHECKER_IGNORE_PREFIX = [
|
CHECKER_IGNORE_PREFIX = [
|
||||||
"extern",
|
"extern",
|
||||||
"intern/moto",
|
"intern/moto",
|
||||||
|
|||||||
@@ -1,8 +1,6 @@
|
|||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8 compliant>
|
|
||||||
|
|
||||||
CHECKER_IGNORE_PREFIX = [
|
CHECKER_IGNORE_PREFIX = [
|
||||||
"extern",
|
"extern",
|
||||||
"intern/moto",
|
"intern/moto",
|
||||||
|
|||||||
@@ -1,8 +1,6 @@
|
|||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8 compliant>
|
|
||||||
|
|
||||||
CHECKER_IGNORE_PREFIX = [
|
CHECKER_IGNORE_PREFIX = [
|
||||||
"extern",
|
"extern",
|
||||||
"intern/moto",
|
"intern/moto",
|
||||||
|
|||||||
@@ -1,8 +1,6 @@
|
|||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8 compliant>
|
|
||||||
|
|
||||||
"""
|
"""
|
||||||
Module for accessing project file data for Blender.
|
Module for accessing project file data for Blender.
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8 compliant>
|
|
||||||
|
|
||||||
__all__ = (
|
__all__ = (
|
||||||
"build_info",
|
"build_info",
|
||||||
"SOURCE_DIR",
|
"SOURCE_DIR",
|
||||||
|
|||||||
@@ -1,8 +1,6 @@
|
|||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8 compliant>
|
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import shutil
|
import shutil
|
||||||
import subprocess
|
import subprocess
|
||||||
|
|||||||
@@ -11,8 +11,6 @@ where <path-to-blender> is the path to the Blender executable,
|
|||||||
and <output-filename> is where to write the generated man page.
|
and <output-filename> is where to write the generated man page.
|
||||||
'''
|
'''
|
||||||
|
|
||||||
# <pep8 compliant>
|
|
||||||
|
|
||||||
import argparse
|
import argparse
|
||||||
import os
|
import os
|
||||||
import subprocess
|
import subprocess
|
||||||
|
|||||||
@@ -40,15 +40,6 @@ As well as pep8 we have additional conventions used for Blender Python scripts:
|
|||||||
- pep8 also defines that lines should not exceed 79 characters,
|
- pep8 also defines that lines should not exceed 79 characters,
|
||||||
we have decided that this is too restrictive so it is optional per script.
|
we have decided that this is too restrictive so it is optional per script.
|
||||||
|
|
||||||
Periodically we run checks for pep8 compliance on Blender scripts,
|
|
||||||
for scripts to be included in this check add this line as a comment at the top of the script:
|
|
||||||
|
|
||||||
``# <pep8 compliant>``
|
|
||||||
|
|
||||||
To enable line length checks use this instead:
|
|
||||||
|
|
||||||
``# <pep8-80 compliant>``
|
|
||||||
|
|
||||||
|
|
||||||
User Interface Layout
|
User Interface Layout
|
||||||
=====================
|
=====================
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8 compliant>
|
|
||||||
|
|
||||||
# This is a quite stupid script which extracts bmesh api docs from
|
# This is a quite stupid script which extracts bmesh api docs from
|
||||||
# 'bmesh_opdefines.c' in order to avoid having to add a lot of introspection
|
# 'bmesh_opdefines.c' in order to avoid having to add a lot of introspection
|
||||||
# data access into the api.
|
# data access into the api.
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8 compliant>
|
|
||||||
|
|
||||||
"""
|
"""
|
||||||
Dump the python API into a text file so we can generate changelogs.
|
Dump the python API into a text file so we can generate changelogs.
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8 compliant>
|
|
||||||
|
|
||||||
"""
|
"""
|
||||||
API dump in RST files
|
API dump in RST files
|
||||||
---------------------
|
---------------------
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8 compliant>
|
|
||||||
|
|
||||||
bpy_types_Operator_bl_property__doc__ = (
|
bpy_types_Operator_bl_property__doc__ = (
|
||||||
"""
|
"""
|
||||||
The name of a property to use as this operators primary property.
|
The name of a property to use as this operators primary property.
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
# SPDX-License-Identifier: Apache-2.0
|
# SPDX-License-Identifier: Apache-2.0
|
||||||
# Copyright 2011-2022 Blender Foundation
|
# Copyright 2011-2022 Blender Foundation
|
||||||
|
|
||||||
# <pep8 compliant>
|
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
|
||||||
bl_info = {
|
bl_info = {
|
||||||
|
|||||||
@@ -1,8 +1,6 @@
|
|||||||
# SPDX-License-Identifier: Apache-2.0
|
# SPDX-License-Identifier: Apache-2.0
|
||||||
# Copyright 2011-2022 Blender Foundation
|
# Copyright 2011-2022 Blender Foundation
|
||||||
|
|
||||||
# <pep8 compliant>
|
|
||||||
|
|
||||||
# Fit to match default projective camera with focal_length 50 and sensor_width 36.
|
# Fit to match default projective camera with focal_length 50 and sensor_width 36.
|
||||||
default_fisheye_polynomial = [
|
default_fisheye_polynomial = [
|
||||||
-1.1735143712967577e-05,
|
-1.1735143712967577e-05,
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
# SPDX-License-Identifier: Apache-2.0
|
# SPDX-License-Identifier: Apache-2.0
|
||||||
# Copyright 2011-2022 Blender Foundation
|
# Copyright 2011-2022 Blender Foundation
|
||||||
|
|
||||||
# <pep8 compliant>
|
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
# SPDX-License-Identifier: Apache-2.0
|
# SPDX-License-Identifier: Apache-2.0
|
||||||
# Copyright 2011-2022 Blender Foundation
|
# Copyright 2011-2022 Blender Foundation
|
||||||
|
|
||||||
# <pep8 compliant>
|
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
|
||||||
import bpy
|
import bpy
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
# SPDX-License-Identifier: Apache-2.0
|
# SPDX-License-Identifier: Apache-2.0
|
||||||
# Copyright 2011-2022 Blender Foundation
|
# Copyright 2011-2022 Blender Foundation
|
||||||
|
|
||||||
# <pep8 compliant>
|
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
|
||||||
import bpy
|
import bpy
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
# SPDX-License-Identifier: Apache-2.0
|
# SPDX-License-Identifier: Apache-2.0
|
||||||
# Copyright 2011-2022 Blender Foundation
|
# Copyright 2011-2022 Blender Foundation
|
||||||
|
|
||||||
# <pep8 compliant>
|
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
|
||||||
from bl_operators.presets import AddPresetBase
|
from bl_operators.presets import AddPresetBase
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
# SPDX-License-Identifier: Apache-2.0
|
# SPDX-License-Identifier: Apache-2.0
|
||||||
# Copyright 2011-2022 Blender Foundation
|
# Copyright 2011-2022 Blender Foundation
|
||||||
|
|
||||||
# <pep8 compliant>
|
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
|
||||||
import bpy
|
import bpy
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
# SPDX-License-Identifier: Apache-2.0
|
# SPDX-License-Identifier: Apache-2.0
|
||||||
# Copyright 2011-2022 Blender Foundation
|
# Copyright 2011-2022 Blender Foundation
|
||||||
|
|
||||||
# <pep8 compliant>
|
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
|
||||||
import bpy
|
import bpy
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
# SPDX-License-Identifier: Apache-2.0
|
# SPDX-License-Identifier: Apache-2.0
|
||||||
# Copyright 2011-2022 Blender Foundation
|
# Copyright 2011-2022 Blender Foundation
|
||||||
|
|
||||||
# <pep8 compliant>
|
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
|
||||||
import bpy
|
import bpy
|
||||||
|
|||||||
@@ -1,8 +1,6 @@
|
|||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8 compliant>
|
|
||||||
|
|
||||||
# This script updates icons from the SVG file
|
# This script updates icons from the SVG file
|
||||||
import os
|
import os
|
||||||
import subprocess
|
import subprocess
|
||||||
|
|||||||
@@ -1,8 +1,6 @@
|
|||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8 compliant>
|
|
||||||
|
|
||||||
# This script updates icons from the BLEND file
|
# This script updates icons from the BLEND file
|
||||||
import os
|
import os
|
||||||
import subprocess
|
import subprocess
|
||||||
|
|||||||
@@ -1,8 +1,6 @@
|
|||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8 compliant>
|
|
||||||
|
|
||||||
# This script updates icons from the SVG file
|
# This script updates icons from the SVG file
|
||||||
import os
|
import os
|
||||||
import subprocess
|
import subprocess
|
||||||
|
|||||||
@@ -2,8 +2,6 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
# Copyright 2009 Blender Foundation. All rights reserved.
|
# Copyright 2009 Blender Foundation. All rights reserved.
|
||||||
|
|
||||||
# <pep8 compliant>
|
|
||||||
|
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
argv = sys.argv[:]
|
argv = sys.argv[:]
|
||||||
|
|||||||
@@ -1,8 +1,6 @@
|
|||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8 compliant>
|
|
||||||
|
|
||||||
# This script updates icons from the SVG file
|
# This script updates icons from the SVG file
|
||||||
import os
|
import os
|
||||||
import subprocess
|
import subprocess
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8-80 compliant>
|
|
||||||
|
|
||||||
__all__ = (
|
__all__ = (
|
||||||
"paths",
|
"paths",
|
||||||
"modules",
|
"modules",
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8 compliant>
|
|
||||||
|
|
||||||
"""
|
"""
|
||||||
This module has utility functions for renaming
|
This module has utility functions for renaming
|
||||||
rna values in fcurves and drivers.
|
rna values in fcurves and drivers.
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8-80 compliant>
|
|
||||||
|
|
||||||
"""
|
"""
|
||||||
Module to manage overriding various parts of Blender.
|
Module to manage overriding various parts of Blender.
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8-80 compliant>
|
|
||||||
|
|
||||||
# -----------------------------------------------------------------------------
|
# -----------------------------------------------------------------------------
|
||||||
# AppOverrideState
|
# AppOverrideState
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8-80 compliant>
|
|
||||||
|
|
||||||
"""
|
"""
|
||||||
Similar to ``addon_utils``, except we can only have one active at a time.
|
Similar to ``addon_utils``, except we can only have one active at a time.
|
||||||
|
|
||||||
|
|||||||
@@ -2,6 +2,4 @@
|
|||||||
|
|
||||||
# Copyright (c) 2009 www.stani.be
|
# Copyright (c) 2009 www.stani.be
|
||||||
|
|
||||||
# <pep8 compliant>
|
|
||||||
|
|
||||||
"""Package for console specific modules."""
|
"""Package for console specific modules."""
|
||||||
|
|||||||
@@ -2,8 +2,6 @@
|
|||||||
|
|
||||||
# Copyright (c) 2009 www.stani.be
|
# Copyright (c) 2009 www.stani.be
|
||||||
|
|
||||||
# <pep8-80 compliant>
|
|
||||||
|
|
||||||
import inspect
|
import inspect
|
||||||
import re
|
import re
|
||||||
|
|
||||||
|
|||||||
@@ -10,8 +10,6 @@
|
|||||||
# the file COPYING, distributed as part of this software.
|
# the file COPYING, distributed as part of this software.
|
||||||
# ****************************************************************************
|
# ****************************************************************************
|
||||||
|
|
||||||
# <pep8 compliant>
|
|
||||||
|
|
||||||
"""Completer for import statements
|
"""Completer for import statements
|
||||||
|
|
||||||
Original code was from IPython/Extensions/ipy_completers.py. The following
|
Original code was from IPython/Extensions/ipy_completers.py. The following
|
||||||
|
|||||||
@@ -2,8 +2,6 @@
|
|||||||
|
|
||||||
# Copyright (c) 2009 www.stani.be
|
# Copyright (c) 2009 www.stani.be
|
||||||
|
|
||||||
# <pep8-80 compliant>
|
|
||||||
|
|
||||||
"""Autocomplete with the standard library"""
|
"""Autocomplete with the standard library"""
|
||||||
|
|
||||||
import re
|
import re
|
||||||
|
|||||||
@@ -2,8 +2,6 @@
|
|||||||
|
|
||||||
# Copyright (c) 2009 www.stani.be
|
# Copyright (c) 2009 www.stani.be
|
||||||
|
|
||||||
# <pep8-80 compliant>
|
|
||||||
|
|
||||||
"""This module provides intellisense features such as:
|
"""This module provides intellisense features such as:
|
||||||
|
|
||||||
* autocompletion
|
* autocompletion
|
||||||
|
|||||||
@@ -1,5 +1,3 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8 compliant>
|
|
||||||
|
|
||||||
"""Package for translation (i18n) tools."""
|
"""Package for translation (i18n) tools."""
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8 compliant>
|
|
||||||
|
|
||||||
# Populate a template file (POT format currently) from Blender RNA/py/C data.
|
# Populate a template file (POT format currently) from Blender RNA/py/C data.
|
||||||
# XXX: This script is meant to be used from inside Blender!
|
# XXX: This script is meant to be used from inside Blender!
|
||||||
# You should not directly use this script, rather use update_msg.py!
|
# You should not directly use this script, rather use update_msg.py!
|
||||||
|
|||||||
@@ -1,8 +1,6 @@
|
|||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8 compliant>
|
|
||||||
|
|
||||||
# Merge one or more .po files into the first dest one.
|
# Merge one or more .po files into the first dest one.
|
||||||
# If a msgkey is present in more than one merged po, the one in the first file wins, unless
|
# If a msgkey is present in more than one merged po, the one in the first file wins, unless
|
||||||
# it’s marked as fuzzy and one later is not.
|
# it’s marked as fuzzy and one later is not.
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8 compliant>
|
|
||||||
|
|
||||||
# Global settings used by all scripts in this dir.
|
# Global settings used by all scripts in this dir.
|
||||||
# XXX Before any use of the tools in this dir, please make a copy of this file
|
# XXX Before any use of the tools in this dir, please make a copy of this file
|
||||||
# named "setting.py"
|
# named "setting.py"
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8 compliant>
|
|
||||||
|
|
||||||
import os
|
import os
|
||||||
|
|
||||||
import settings
|
import settings
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8 compliant>
|
|
||||||
|
|
||||||
# Some misc utilities...
|
# Some misc utilities...
|
||||||
|
|
||||||
import collections
|
import collections
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8 compliant>
|
|
||||||
|
|
||||||
# Some useful operations from utils' I18nMessages class exposed as a CLI.
|
# Some useful operations from utils' I18nMessages class exposed as a CLI.
|
||||||
|
|
||||||
import os
|
import os
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8 compliant>
|
|
||||||
|
|
||||||
# Update "languages" text file used by Blender at runtime to build translations menu.
|
# Update "languages" text file used by Blender at runtime to build translations menu.
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,8 +1,6 @@
|
|||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8 compliant>
|
|
||||||
|
|
||||||
# Pre-process right-to-left languages.
|
# Pre-process right-to-left languages.
|
||||||
# You can use it either standalone, or through import_po_from_branches or
|
# You can use it either standalone, or through import_po_from_branches or
|
||||||
# update_trunk.
|
# update_trunk.
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8 compliant>
|
|
||||||
|
|
||||||
import enchant
|
import enchant
|
||||||
import os
|
import os
|
||||||
import pickle
|
import pickle
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8 compliant>
|
|
||||||
|
|
||||||
__all__ = (
|
__all__ = (
|
||||||
"io",
|
"io",
|
||||||
"keymap_from_toolbar",
|
"keymap_from_toolbar",
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8 compliant>
|
|
||||||
|
|
||||||
# -----------------------------------------------------------------------------
|
# -----------------------------------------------------------------------------
|
||||||
# Export Functions
|
# Export Functions
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8 compliant>
|
|
||||||
|
|
||||||
# Dynamically create a keymap which is used by the popup toolbar
|
# Dynamically create a keymap which is used by the popup toolbar
|
||||||
# for accelerator key access.
|
# for accelerator key access.
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8 compliant>
|
|
||||||
|
|
||||||
__all__ = (
|
__all__ = (
|
||||||
"generate",
|
"generate",
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8 compliant>
|
|
||||||
|
|
||||||
# Update Blender version this key-map was written in:
|
# Update Blender version this key-map was written in:
|
||||||
#
|
#
|
||||||
# When the version is `(0, 0, 0)`, the key-map being loaded didn't contain any versioning information.
|
# When the version is `(0, 0, 0)`, the key-map being loaded didn't contain any versioning information.
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8 compliant>
|
|
||||||
|
|
||||||
# Populate a template file (POT format currently) from Blender RNA/py/C data.
|
# Populate a template file (POT format currently) from Blender RNA/py/C data.
|
||||||
# Note: This script is meant to be used from inside Blender!
|
# Note: This script is meant to be used from inside Blender!
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8 compliant>
|
|
||||||
|
|
||||||
__all__ = (
|
__all__ = (
|
||||||
"property_definition_from_data_path",
|
"property_definition_from_data_path",
|
||||||
"decompose_data_path",
|
"decompose_data_path",
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8-80 compliant>
|
|
||||||
|
|
||||||
|
|
||||||
def url_prefill_from_blender(*, addon_info=None):
|
def url_prefill_from_blender(*, addon_info=None):
|
||||||
import bpy
|
import bpy
|
||||||
|
|||||||
@@ -1,8 +1,6 @@
|
|||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8 compliant>
|
|
||||||
|
|
||||||
# This module can get render info without running from inside blender.
|
# This module can get render info without running from inside blender.
|
||||||
#
|
#
|
||||||
# This struct won't change according to Ton.
|
# This struct won't change according to Ton.
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8-80 compliant>
|
|
||||||
|
|
||||||
"""
|
"""
|
||||||
Give access to blender data and utility functions.
|
Give access to blender data and utility functions.
|
||||||
"""
|
"""
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8-80 compliant>
|
|
||||||
|
|
||||||
# for slightly faster access
|
# for slightly faster access
|
||||||
from _bpy import ops as _ops_module
|
from _bpy import ops as _ops_module
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8-80 compliant>
|
|
||||||
|
|
||||||
"""
|
"""
|
||||||
This module has a similar scope to os.path, containing utility
|
This module has a similar scope to os.path, containing utility
|
||||||
functions for dealing with paths in Blender.
|
functions for dealing with paths in Blender.
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8-80 compliant>
|
|
||||||
|
|
||||||
"""
|
"""
|
||||||
This module contains utility functions specific to blender but
|
This module contains utility functions specific to blender but
|
||||||
not associated with blenders internal data.
|
not associated with blenders internal data.
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8 compliant>
|
|
||||||
|
|
||||||
"""
|
"""
|
||||||
This module contains utility functions to handle custom previews.
|
This module contains utility functions to handle custom previews.
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8 compliant>
|
|
||||||
|
|
||||||
# Until we untangle ToolDef from bl_ui internals,
|
# Until we untangle ToolDef from bl_ui internals,
|
||||||
# use this module to document ToolDef.
|
# use this module to document ToolDef.
|
||||||
from bl_ui.space_toolsystem_common import ToolDef
|
from bl_ui.space_toolsystem_common import ToolDef
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8-80 compliant>
|
|
||||||
|
|
||||||
"""
|
"""
|
||||||
Utility modules associated with the bpy module.
|
Utility modules associated with the bpy module.
|
||||||
"""
|
"""
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8 compliant>
|
|
||||||
|
|
||||||
__all__ = (
|
__all__ = (
|
||||||
"bake_action",
|
"bake_action",
|
||||||
"bake_action_objects",
|
"bake_action_objects",
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8 compliant>
|
|
||||||
|
|
||||||
"""
|
"""
|
||||||
Helpers for asset management tasks.
|
Helpers for asset management tasks.
|
||||||
"""
|
"""
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8 compliant>
|
|
||||||
|
|
||||||
from typing import Dict, Set
|
from typing import Dict, Set
|
||||||
import bpy
|
import bpy
|
||||||
from bpy.types import ID
|
from bpy.types import ID
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8-80 compliant>
|
|
||||||
|
|
||||||
__all__ = (
|
__all__ = (
|
||||||
"load_image",
|
"load_image",
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8-80 compliant>
|
|
||||||
|
|
||||||
__all__ = (
|
__all__ = (
|
||||||
"ExportHelper",
|
"ExportHelper",
|
||||||
"ImportHelper",
|
"ImportHelper",
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8 compliant>
|
|
||||||
|
|
||||||
|
|
||||||
# -----------------------------------------------------------------------------
|
# -----------------------------------------------------------------------------
|
||||||
# Add-on helpers to properly (un)register their own keymaps.
|
# Add-on helpers to properly (un)register their own keymaps.
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8-80 compliant>
|
|
||||||
|
|
||||||
__all__ = (
|
__all__ = (
|
||||||
"mesh_linked_uv_islands",
|
"mesh_linked_uv_islands",
|
||||||
"mesh_linked_triangles",
|
"mesh_linked_triangles",
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8 compliant>
|
|
||||||
|
|
||||||
from mathutils import Color, Vector
|
from mathutils import Color, Vector
|
||||||
|
|
||||||
__all__ = (
|
__all__ = (
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8-80 compliant>
|
|
||||||
|
|
||||||
__all__ = (
|
__all__ = (
|
||||||
"find_node_input",
|
"find_node_input",
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -1,6 +1,4 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8-80 compliant>
|
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
|
||||||
__all__ = (
|
__all__ = (
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8-80 compliant>
|
|
||||||
|
|
||||||
__all__ = (
|
__all__ = (
|
||||||
"region_2d_to_vector_3d",
|
"region_2d_to_vector_3d",
|
||||||
"region_2d_to_origin_3d",
|
"region_2d_to_origin_3d",
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8 compliant>
|
|
||||||
|
|
||||||
import time
|
import time
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8-80 compliant>
|
|
||||||
|
|
||||||
"""
|
"""
|
||||||
This module contains RestrictBlend context manager.
|
This module contains RestrictBlend context manager.
|
||||||
"""
|
"""
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8-80 compliant>
|
|
||||||
|
|
||||||
from _bpy import types as bpy_types
|
from _bpy import types as bpy_types
|
||||||
|
|
||||||
StructRNA = bpy_types.bpy_struct
|
StructRNA = bpy_types.bpy_struct
|
||||||
|
|||||||
@@ -1,6 +1,4 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8-80 compliant>
|
|
||||||
import sys
|
import sys
|
||||||
import bpy
|
import bpy
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,4 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8 compliant>
|
|
||||||
import os
|
import os
|
||||||
import bpy
|
import bpy
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8 compliant>
|
|
||||||
|
|
||||||
import bpy
|
import bpy
|
||||||
|
|
||||||
header = '''
|
header = '''
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8-80 compliant>
|
|
||||||
|
|
||||||
# This file defines a set of methods that are useful for various
|
# This file defines a set of methods that are useful for various
|
||||||
# Relative Keying Set (RKS) related operations, such as: callbacks
|
# Relative Keying Set (RKS) related operations, such as: callbacks
|
||||||
# for polling, iterator callbacks, and also generate callbacks.
|
# for polling, iterator callbacks, and also generate callbacks.
|
||||||
|
|||||||
@@ -1,6 +1,4 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8 compliant>
|
|
||||||
import bpy
|
import bpy
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8 compliant>
|
|
||||||
|
|
||||||
# classes for extracting info from blenders internal classes
|
# classes for extracting info from blenders internal classes
|
||||||
|
|
||||||
import bpy
|
import bpy
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8 compliant>
|
|
||||||
|
|
||||||
__all__ = (
|
__all__ = (
|
||||||
"draw_entry",
|
"draw_entry",
|
||||||
"draw_km",
|
"draw_km",
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8 compliant>
|
|
||||||
|
|
||||||
import bpy
|
import bpy
|
||||||
|
|
||||||
from mathutils import Vector
|
from mathutils import Vector
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8 compliant>
|
|
||||||
|
|
||||||
import bpy
|
import bpy
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8 compliant>
|
|
||||||
|
|
||||||
# classes for extracting info from blenders internal classes
|
# classes for extracting info from blenders internal classes
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,4 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8 compliant>
|
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
|
||||||
# support reloading sub-modules
|
# support reloading sub-modules
|
||||||
|
|||||||
@@ -1,6 +1,4 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8-80 compliant>
|
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
|
||||||
import bpy
|
import bpy
|
||||||
|
|||||||
@@ -1,6 +1,4 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8-80 compliant>
|
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
|
||||||
if "bpy" in locals():
|
if "bpy" in locals():
|
||||||
|
|||||||
@@ -1,6 +1,4 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8 compliant>
|
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
|
||||||
import bpy
|
import bpy
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8 compliant>
|
|
||||||
|
|
||||||
# Utilities to detect the next matching element (vert/edge/face)
|
# Utilities to detect the next matching element (vert/edge/face)
|
||||||
# based on an existing pair of elements.
|
# based on an existing pair of elements.
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,4 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8 compliant>
|
|
||||||
import bpy
|
import bpy
|
||||||
from bpy.types import Operator
|
from bpy.types import Operator
|
||||||
from bpy.props import FloatProperty
|
from bpy.props import FloatProperty
|
||||||
|
|||||||
@@ -1,6 +1,4 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8-80 compliant>
|
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
|
||||||
import bpy
|
import bpy
|
||||||
|
|||||||
@@ -1,6 +1,4 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8-80 compliant>
|
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
|
||||||
from bpy.types import (
|
from bpy.types import (
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8 compliant>
|
|
||||||
|
|
||||||
import bpy
|
import bpy
|
||||||
from bpy.types import (
|
from bpy.types import (
|
||||||
Operator,
|
Operator,
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# <pep8 compliant>
|
|
||||||
|
|
||||||
import bpy
|
import bpy
|
||||||
|
|
||||||
from bpy.types import (
|
from bpy.types import (
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user