Cleanup: run autopep8 on release/scripts/templates_py

This commit is contained in:
2022-04-20 15:11:22 +10:00
parent c2cdbe1e88
commit 38d8b088e7
12 changed files with 40 additions and 20 deletions

View File

@@ -57,7 +57,8 @@ class ExportSomeData(Operator, ExportHelper):
def menu_func_export(self, context):
self.layout.operator(ExportSomeData.bl_idname, text="Text Export Operator")
# Register and add to the "file selector" menu (required to use F3 search "Text Export Operator" for quick access)
# Register and add to the "file selector" menu (required to use F3 search "Text Export Operator" for quick access).
def register():
bpy.utils.register_class(ExportSomeData)
bpy.types.TOPBAR_MT_file_export.append(menu_func_export)