Skip to content

Commit

Permalink
Test: Code Formatter
Browse files Browse the repository at this point in the history
Testing updates made to GitHub Action
  • Loading branch information
Tams3d authored Nov 29, 2024
1 parent 77d4ec1 commit c3a989e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ def custom_draw(self, context):
"NODE_MT_category_" + itemid,
(bpy.types.Menu,),
{
"bl_idname": "NODE_MT_category_" + itemid.replace(" ", "_"),
"bl_space_type": "NODE_EDITOR",
"bl_idname": "NODE_MT_category_" + itemid.replace(' ', "_"),
"bl_space_type": "NODE_EDITOR",
"bl_label": item[0],
"draw": custom_draw,
},
Expand All @@ -93,7 +93,7 @@ def draw_menu(self, context):

return draw_menu

bpy.utils.register_class(menu_type)
bpy.utils.register_class(menu_type )
draw_menu = generate_menu_draw(menu_type.bl_idname, menu_type.bl_label)
bpy.types.NODE_MT_t3d_menu.append(draw_menu)

Expand Down

0 comments on commit c3a989e

Please sign in to comment.