From d69271dd330ab7d21b87cf7b853e50689b6dbb91 Mon Sep 17 00:00:00 2001 From: Georges-Antoine Assi Date: Tue, 2 Dec 2025 10:25:40 -0500 Subject: [PATCH] remove Rom.multi --- backend/models/rom.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/backend/models/rom.py b/backend/models/rom.py index f7da9d31d..90af0e00a 100644 --- a/backend/models/rom.py +++ b/backend/models/rom.py @@ -303,11 +303,6 @@ class Rom(BaseModel): return [] - # TODO: Remove this after 4.3 release - @cached_property - def multi(self) -> bool: - return self.has_nested_single_file or self.has_multiple_files - @cached_property def has_simple_single_file(self) -> bool: return len(self.files) == 1 and not self.files[0].is_nested