Skip to content

Commit 419528a

Browse files
committed
Fix Column View Python impl: sorting in year column
1 parent a63852e commit 419528a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Column View/main.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ def title(self) -> str:
2828
def author(self) -> str:
2929
return self._author
3030

31-
@GObject.Property(type=str)
32-
def year(self) -> str:
31+
@GObject.Property(type=int)
32+
def year(self) -> int:
3333
return self._year
3434

3535

0 commit comments

Comments
 (0)