From febd3a16dd3d69b7478399e7795e69449859bf10 Mon Sep 17 00:00:00 2001 From: Vinicius Moreira Date: Wed, 16 Oct 2019 11:18:33 -0300 Subject: [PATCH] [aur] fix: showing screenshots button --- bauh/gems/arch/model.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bauh/gems/arch/model.py b/bauh/gems/arch/model.py index d8a0730c..9003f983 100644 --- a/bauh/gems/arch/model.py +++ b/bauh/gems/arch/model.py @@ -115,6 +115,9 @@ class ArchPackage(SoftwarePackage): self.icon_url = self.icon_path + def has_screenshots(self) -> bool: + return False + def __str__(self): return self.__repr__()