From 930e526cae6204658e70fe7f19c61cf3291949f4 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 20 May 2022 11:24:34 +1000 Subject: Cleanup: warnings, spelling, formatting Avoid multiple `sound.bl_rna.properties["channels"].enum_items` in the same line. Note we might want a way to avoid having to do this. --- release/scripts/startup/bl_ui/space_sequencer.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'release') diff --git a/release/scripts/startup/bl_ui/space_sequencer.py b/release/scripts/startup/bl_ui/space_sequencer.py index 3c10f393503..40da0b03f76 100644 --- a/release/scripts/startup/bl_ui/space_sequencer.py +++ b/release/scripts/startup/bl_ui/space_sequencer.py @@ -1658,8 +1658,11 @@ class SEQUENCER_PT_source(SequencerButtonsPanel, Panel): split.alignment = 'RIGHT' split.label(text="Channels") split.alignment = 'LEFT' - txt_channels = sound.bl_rna.properties["channels"].enum_items[sound.bl_rna.properties["channels"].enum_items.find(sound.channels)].name - split.label(text=txt_channels) + + # FIXME(@campbellbarton): this is ugly, we may want to support a way of showing a label from an enum. + channel_enum_items = sound.bl_rna.properties["channels"].enum_items + split.label(text=channel_enum_items[channel_enum_items.find(sound.channels)].name) + del channel_enum_items else: if strip_type == 'IMAGE': col = layout.column() -- cgit v1.2.3