Skip to content

Commit 5027f9a

Browse files
committed
fix: position enum
1 parent 339e3a0 commit 5027f9a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

videodb/timeline_v2.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ class Position(str, Enum):
2222
left = "left"
2323
right = "right"
2424
center = "center"
25-
top_left = "top-left"
26-
top_right = "top-right"
27-
bottom_left = "bottom-left"
28-
bottom_right = "bottom-right"
25+
top_left = "top_left"
26+
top_right = "top_right"
27+
bottom_left = "bottom_left"
28+
bottom_right = "bottom_right"
2929

3030

3131
class Filter(str, Enum):

0 commit comments

Comments
 (0)