fix py type error

This commit is contained in:
Georges-Antoine Assi
2025-03-02 13:37:28 -05:00
parent b797a2aa8d
commit 79505bfce2

View File

@@ -313,7 +313,7 @@ class Rom(BaseModel):
@property
def is_fully_identified(self) -> bool:
return self.igdb_id and self.moby_id and self.ss_id
return bool(self.igdb_id) and bool(self.moby_id) and bool(self.ss_id)
def __repr__(self) -> str:
return self.fs_name