diff --git a/io_scene_gltf2/__init__.py b/io_scene_gltf2/__init__.py
index 769c3be661dcfdc6b94a7583e61d621d9d43f431..de2462be5a1994a742dc384fa65859432aaa4ecc 100755
--- a/io_scene_gltf2/__init__.py
+++ b/io_scene_gltf2/__init__.py
@@ -83,8 +83,10 @@ class ExportGLTF2_Base:
                ('GLTF_SEPARATE', 'glTF Separate (.gltf + .bin + textures)',
                 'Exports multiple files, with separate JSON, binary and texture data. '
                 'Easiest to edit later')),
-        description='Output format and embedding options. Binary is most efficient, '
-                    'but JSON (embedded or separate) may be easier to edit later.',
+        description=(
+            'Output format and embedding options. Binary is most efficient, '
+            'but JSON (embedded or separate) may be easier to edit later'
+        ),
         default='GLB'
     )
 
@@ -519,4 +521,3 @@ def unregister():
     # remove from the export / import menu
     bpy.types.TOPBAR_MT_file_export.remove(menu_func_export)
     bpy.types.TOPBAR_MT_file_import.remove(menu_func_import)
-