From 363a33224ca58559cb4a62bc83183e770b5918b1 Mon Sep 17 00:00:00 2001 From: Matteo Campinoti Date: Tue, 31 Oct 2023 13:23:01 +0100 Subject: [PATCH] models:file - rename File.file_size_in_bytes to .size --- acacore/models/file.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acacore/models/file.py b/acacore/models/file.py index f98f97d..865ee8c 100644 --- a/acacore/models/file.py +++ b/acacore/models/file.py @@ -70,7 +70,7 @@ class File(ACABase): puid: Optional[str] relative_path: Path = Field(primary_key=True) is_binary: bool - file_size_in_bytes: int + size: int signature: Optional[str] warning: Optional[str] = None action: list[TAction] = Field(default_factory=list)