From 924843f25b10696dd817695fa30747126137738e Mon Sep 17 00:00:00 2001 From: Rupert Rawnsley Date: Fri, 17 Nov 2023 16:03:38 +0000 Subject: [PATCH] lint suggestions --- .../components/definitions/media_frame.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/addons/io_hubs_addon/components/definitions/media_frame.py b/addons/io_hubs_addon/components/definitions/media_frame.py index a97ff172..0ff901ac 100644 --- a/addons/io_hubs_addon/components/definitions/media_frame.py +++ b/addons/io_hubs_addon/components/definitions/media_frame.py @@ -80,25 +80,25 @@ class MediaFrame(HubsComponent): alignX: EnumProperty( name="Align X", description="Media alignment along the X axis", - items=[("min", "Min", "Align minimum X bounds of media and frame"), + items=[("min", "Min", "Align minimum X bounds of media and frame"), ("center", "Center", "Align X centers of media and frame"), - ("max", "Max", "Align maximum X bounds of media and frame")], + ("max", "Max", "Align maximum X bounds of media and frame")], default="center") alignY: EnumProperty( name="Align Y", description="Media alignment along the Y axis", - items=[("min", "Min", "Align minimum Y bounds of media and frame"), + items=[("min", "Min", "Align minimum Y bounds of media and frame"), ("center", "Center", "Align Y centers of media and frame"), - ("max", "Max", "Align maximum Y bounds of media and frame")], + ("max", "Max", "Align maximum Y bounds of media and frame")], default="center") alignZ: EnumProperty( name="Align Z", description="Media alignment along the Z axis", - items=[("min", "Min", "Align minimum Z bounds of media and frame"), + items=[("min", "Min", "Align minimum Z bounds of media and frame"), ("center", "Center", "Align Z centers of media and frame"), - ("max", "Max", "Align maximum Z bounds of media and frame")], + ("max", "Max", "Align maximum Z bounds of media and frame")], default="center") scaleToBounds: BoolProperty(