From 419528af31db08ce554a9889d891f34cd02622ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roland=20L=C3=B6tscher?= Date: Wed, 18 Dec 2024 22:45:51 +0100 Subject: [PATCH] Fix Column View Python impl: sorting in year column --- src/Column View/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Column View/main.py b/src/Column View/main.py index 3c0ae631..a620d439 100644 --- a/src/Column View/main.py +++ b/src/Column View/main.py @@ -28,8 +28,8 @@ def title(self) -> str: def author(self) -> str: return self._author - @GObject.Property(type=str) - def year(self) -> str: + @GObject.Property(type=int) + def year(self) -> int: return self._year