Cleanup: pep8 function indentation

This commit is contained in:
Campbell Barton
2018-06-26 19:41:37 +02:00
parent ecb56eac57
commit 532c8ac583
62 changed files with 1462 additions and 1389 deletions

View File

@@ -38,8 +38,8 @@ class ConsoleExec(Operator):
bl_label = "Console Execute"
interactive = BoolProperty(
options={'SKIP_SAVE'},
)
options={'SKIP_SAVE'},
)
@classmethod
def poll(cls, context):
@@ -61,7 +61,7 @@ class ConsoleExec(Operator):
class ConsoleAutocomplete(Operator):
"""Evaluate the namespace up until the cursor and give a list of """ \
"""options or complete the name if there is only one"""
"""options or complete the name if there is only one"""
bl_idname = "console.autocomplete"
bl_label = "Console Autocomplete"
@@ -138,9 +138,9 @@ class ConsoleLanguage(Operator):
bl_label = "Console Language"
language = StringProperty(
name="Language",
maxlen=32,
)
name="Language",
maxlen=32,
)
@classmethod
def poll(cls, context):