From 74452522945b89190a267bf9304834ca00539df4 Mon Sep 17 00:00:00 2001 From: Matteo Campinoti Date: Wed, 27 Nov 2024 10:51:55 +0100 Subject: [PATCH] models.file:OriginalFile.from_file - invert position of `custom_signatures` and `actions` parameters --- 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 6de33c5..48a8524 100644 --- a/acacore/models/file.py +++ b/acacore/models/file.py @@ -324,8 +324,8 @@ def from_file( path: str | PathLike[str], root: str | PathLike[str], siegfried: Siegfried | SiegfriedFile | None = None, - actions: dict[str, Action] | None = None, custom_signatures: list[CustomSignature] | None = None, + actions: dict[str, Action] | None = None, uuid: UUID | None = None, parent: UUID | None = None, processed: bool = False,