ran through pep8 checker
This commit is contained in:
		@@ -22,17 +22,17 @@ import os
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
KM_HIERARCHY = [
 | 
			
		||||
    ('Window', 'EMPTY', 'WINDOW', []), # file save, window change, exit
 | 
			
		||||
    ('Screen', 'EMPTY', 'WINDOW', [    # full screen, undo, screenshot
 | 
			
		||||
    ('Window', 'EMPTY', 'WINDOW', []),  # file save, window change, exit
 | 
			
		||||
    ('Screen', 'EMPTY', 'WINDOW', [     # full screen, undo, screenshot
 | 
			
		||||
        ('Screen Editing', 'EMPTY', 'WINDOW', []),    # resizing, action corners
 | 
			
		||||
        ]),
 | 
			
		||||
 | 
			
		||||
    ('View2D', 'EMPTY', 'WINDOW', []),    # view 2d navigation (per region)
 | 
			
		||||
    ('View2D Buttons List', 'EMPTY', 'WINDOW', []), # view 2d with buttons navigation
 | 
			
		||||
    ('View2D Buttons List', 'EMPTY', 'WINDOW', []),  # view 2d with buttons navigation
 | 
			
		||||
    ('Header', 'EMPTY', 'WINDOW', []),    # header stuff (per region)
 | 
			
		||||
    ('Grease Pencil', 'EMPTY', 'WINDOW', []), # grease pencil stuff (per region)
 | 
			
		||||
    ('Grease Pencil', 'EMPTY', 'WINDOW', []),  # grease pencil stuff (per region)
 | 
			
		||||
 | 
			
		||||
    ('3D View', 'VIEW_3D', 'WINDOW', [ # view 3d navigation and generic stuff (select, transform)
 | 
			
		||||
    ('3D View', 'VIEW_3D', 'WINDOW', [  # view 3d navigation and generic stuff (select, transform)
 | 
			
		||||
        ('Object Mode', 'EMPTY', 'WINDOW', []),
 | 
			
		||||
        ('Mesh', 'EMPTY', 'WINDOW', []),
 | 
			
		||||
        ('Curve', 'EMPTY', 'WINDOW', []),
 | 
			
		||||
@@ -46,13 +46,13 @@ KM_HIERARCHY = [
 | 
			
		||||
        ('Vertex Paint', 'EMPTY', 'WINDOW', []),
 | 
			
		||||
        ('Weight Paint', 'EMPTY', 'WINDOW', []),
 | 
			
		||||
        ('Face Mask', 'EMPTY', 'WINDOW', []),
 | 
			
		||||
        ('Image Paint', 'EMPTY', 'WINDOW', []), # image and view3d
 | 
			
		||||
        ('Image Paint', 'EMPTY', 'WINDOW', []),  # image and view3d
 | 
			
		||||
        ('Sculpt', 'EMPTY', 'WINDOW', []),
 | 
			
		||||
 | 
			
		||||
        ('Armature Sketch', 'EMPTY', 'WINDOW', []),
 | 
			
		||||
        ('Particle', 'EMPTY', 'WINDOW', []),
 | 
			
		||||
 | 
			
		||||
        ('Object Non-modal', 'EMPTY', 'WINDOW', []), # mode change
 | 
			
		||||
        ('Object Non-modal', 'EMPTY', 'WINDOW', []),  # mode change
 | 
			
		||||
 | 
			
		||||
        ('3D View Generic', 'VIEW_3D', 'WINDOW', [])    # toolbar and properties
 | 
			
		||||
        ]),
 | 
			
		||||
@@ -71,8 +71,8 @@ KM_HIERARCHY = [
 | 
			
		||||
        ]),
 | 
			
		||||
 | 
			
		||||
    ('Image', 'IMAGE_EDITOR', 'WINDOW', [
 | 
			
		||||
        ('UV Editor', 'EMPTY', 'WINDOW', []), # image (reverse order, UVEdit before Image
 | 
			
		||||
        ('Image Paint', 'EMPTY', 'WINDOW', []), # image and view3d
 | 
			
		||||
        ('UV Editor', 'EMPTY', 'WINDOW', []),  # image (reverse order, UVEdit before Image
 | 
			
		||||
        ('Image Paint', 'EMPTY', 'WINDOW', []),  # image and view3d
 | 
			
		||||
        ('Image Generic', 'IMAGE_EDITOR', 'WINDOW', [])
 | 
			
		||||
        ]),
 | 
			
		||||
 | 
			
		||||
@@ -90,7 +90,7 @@ KM_HIERARCHY = [
 | 
			
		||||
        ('File Browser Buttons', 'FILE_BROWSER', 'WINDOW', [])
 | 
			
		||||
        ]),
 | 
			
		||||
 | 
			
		||||
    ('Property Editor', 'PROPERTIES', 'WINDOW', []), # align context menu
 | 
			
		||||
    ('Property Editor', 'PROPERTIES', 'WINDOW', []),  # align context menu
 | 
			
		||||
 | 
			
		||||
    ('Script', 'SCRIPTS_WINDOW', 'WINDOW', []),
 | 
			
		||||
    ('Text', 'TEXT_EDITOR', 'WINDOW', []),
 | 
			
		||||
@@ -538,7 +538,7 @@ class WM_OT_keyconfig_import(bpy.types.Operator):
 | 
			
		||||
        if config_name is None:
 | 
			
		||||
            raise Exception("config name not found")
 | 
			
		||||
 | 
			
		||||
        path = os.path.join(__file__, "..", "..", "cfg") # remove ui/space_userpref.py
 | 
			
		||||
        path = os.path.join(__file__, "..", "..", "cfg")  # remove ui/space_userpref.py
 | 
			
		||||
        path = os.path.normpath(path)
 | 
			
		||||
        print(path)
 | 
			
		||||
 | 
			
		||||
@@ -734,9 +734,9 @@ class WM_OT_keyitem_add(bpy.types.Operator):
 | 
			
		||||
        kc = wm.keyconfigs.default
 | 
			
		||||
 | 
			
		||||
        if km.is_modal:
 | 
			
		||||
            km.items.new_modal("", 'A', 'PRESS') # kmi
 | 
			
		||||
            km.items.new_modal("", 'A', 'PRESS')  # kmi
 | 
			
		||||
        else:
 | 
			
		||||
            km.items.new("none", 'A', 'PRESS') # kmi
 | 
			
		||||
            km.items.new("none", 'A', 'PRESS')  # kmi
 | 
			
		||||
 | 
			
		||||
        # clear filter and expand keymap so we can see the newly added item
 | 
			
		||||
        if context.space_data.filter_text != "":
 | 
			
		||||
@@ -785,7 +785,7 @@ class WM_OT_keyconfig_remove(bpy.types.Operator):
 | 
			
		||||
            if os.path.exists(path):
 | 
			
		||||
                os.remove(path)
 | 
			
		||||
 | 
			
		||||
            path = module.__file__ + "c" # for .pyc
 | 
			
		||||
            path = module.__file__ + "c"  # for .pyc
 | 
			
		||||
 | 
			
		||||
            if os.path.exists(path):
 | 
			
		||||
                os.remove(path)
 | 
			
		||||
@@ -793,9 +793,11 @@ class WM_OT_keyconfig_remove(bpy.types.Operator):
 | 
			
		||||
        wm.keyconfigs.remove(keyconfig)
 | 
			
		||||
        return {'FINISHED'}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
def register():
 | 
			
		||||
    pass
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
def unregister():
 | 
			
		||||
    pass
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user