Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2019-07-28 10:45:55 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-07-28 10:45:55 +0300
commitae19f68d458ef89c5739ba1a95d6f9cf41adc1c1 (patch)
tree821f0e48161f4d7f1ed475f2221d6dcc8b3946a4 /release/scripts/modules
parent79ce2054d4362f39cd4083992098b7378861a4c8 (diff)
Cleanup: pep8
Diffstat (limited to 'release/scripts/modules')
-rw-r--r--release/scripts/modules/bl_ui_utils/bug_report_url.py3
-rw-r--r--release/scripts/modules/bpy_types.py2
-rw-r--r--release/scripts/modules/rna_prop_ui.py2
3 files changed, 4 insertions, 3 deletions
diff --git a/release/scripts/modules/bl_ui_utils/bug_report_url.py b/release/scripts/modules/bl_ui_utils/bug_report_url.py
index 33eeb1c278d..be94b45c8ac 100644
--- a/release/scripts/modules/bl_ui_utils/bug_report_url.py
+++ b/release/scripts/modules/bl_ui_utils/bug_report_url.py
@@ -18,7 +18,8 @@
# <pep8-80 compliant>
-def url_prefill_from_blender(addon_info = None):
+
+def url_prefill_from_blender(addon_info=None):
import bpy
import bgl
import struct
diff --git a/release/scripts/modules/bpy_types.py b/release/scripts/modules/bpy_types.py
index ec016d364c6..c407b441273 100644
--- a/release/scripts/modules/bpy_types.py
+++ b/release/scripts/modules/bpy_types.py
@@ -655,7 +655,7 @@ class Gizmo(StructRNA):
return (batch, shader)
- # Dummy class to keep the reference in `bpy_types_dict` and avoid
+# Dummy class to keep the reference in `bpy_types_dict` and avoid
# erros like: "TypeError: expected GizmoGroup subclass of class ..."
class GizmoGroup(StructRNA):
__slots__ = ()
diff --git a/release/scripts/modules/rna_prop_ui.py b/release/scripts/modules/rna_prop_ui.py
index 50becba0e3f..9d1ba035b3e 100644
--- a/release/scripts/modules/rna_prop_ui.py
+++ b/release/scripts/modules/rna_prop_ui.py
@@ -280,7 +280,7 @@ class PropertyPanel:
"""
bl_label = "Custom Properties"
bl_options = {'DEFAULT_CLOSED'}
- bl_order = 1000 # Order panel after all others
+ bl_order = 1000 # Order panel after all others
@classmethod
def poll(cls, context):