Skip to content

Commit 739b004

Browse files
authored
Fix Column View Python impl: sorting in year column (#220)
1 parent a63852e commit 739b004

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Column View/main.py

Lines changed: 2 additions & 2 deletions
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)