[Bf-blender-cvs] [7c819b5964c] master: Cleanup: unused import, pep8

Campbell Barton noreply at git.blender.org
Thu May 23 11:15:12 CEST 2019


Commit: 7c819b5964cf1fe10ed2518d5a274e9832b5d52a
Author: Campbell Barton
Date:   Sun May 19 20:44:28 2019 +1000
Branches: master
https://developer.blender.org/rB7c819b5964cf1fe10ed2518d5a274e9832b5d52a

Cleanup: unused import, pep8

===================================================================

M	release/scripts/startup/bl_ui/space_sequencer.py

===================================================================

diff --git a/release/scripts/startup/bl_ui/space_sequencer.py b/release/scripts/startup/bl_ui/space_sequencer.py
index 0edee0ae6d0..14c5eb6aa22 100644
--- a/release/scripts/startup/bl_ui/space_sequencer.py
+++ b/release/scripts/startup/bl_ui/space_sequencer.py
@@ -18,15 +18,20 @@
 
 # <pep8 compliant>
 import bpy
-from bpy.types import Header, Menu, Panel
-from bpy.app.translations import contexts as i18n_contexts
-from rna_prop_ui import PropertyPanel
+from bpy.types import (
+    Header,
+    Menu,
+    Panel,
+)
+from bpy.app.translations import (
+    contexts as i18n_contexts,
+    pgettext_iface as iface_,
+)
 from .properties_grease_pencil_common import (
     AnnotationDataPanel,
-    AnnotationOnionSkin,
     GreasePencilToolsPanel,
 )
-from bpy.app.translations import pgettext_iface as iface_
+from rna_prop_ui import PropertyPanel
 
 
 def act_strip(context):
@@ -1336,7 +1341,7 @@ class SEQUENCER_PT_data_info(SequencerButtonsPanel, Panel):
             split.alignment = 'RIGHT'
             split.label(text="Soft Trim Start")
             split.prop(strip, "frame_offset_start", text=str(bpy.utils.smpte_from_frame(strip.frame_offset_start)).replace(':', ' '))
-            split = sub.split(factor=0.5+max_factor, align=True)
+            split = sub.split(factor=0.5 + max_factor, align=True)
             split.alignment = 'RIGHT'
             split.label(text='End')
             split.prop(strip, "frame_offset_end", text=str(bpy.utils.smpte_from_frame(strip.frame_offset_end)).replace(':', ' '))



More information about the Bf-blender-cvs mailing list