Cleanup: pep8

This commit is contained in:
2019-07-28 17:45:55 +10:00
parent 79ce2054d4
commit ae19f68d45
6 changed files with 10 additions and 6 deletions

View File

@@ -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

View File

@@ -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__ = ()

View File

@@ -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):