Skip to content

Commit

Permalink
lint suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
rawnsley committed Nov 17, 2023
1 parent b6897a3 commit 924843f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions addons/io_hubs_addon/components/definitions/media_frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down

0 comments on commit 924843f

Please sign in to comment.