Skip to content

Commit

Permalink
models:file - format
Browse files Browse the repository at this point in the history
  • Loading branch information
MatteoCampinoti94 committed Oct 17, 2023
1 parent 574eb30 commit 1518585
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions acacore/models/file.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,23 +7,23 @@
from typing import Optional
from typing import Tuple

from pydantic import UUID4
from pydantic import Field
from pydantic import UUID4

from acacore.models.reference_files import CustomSignature
from acacore.siegfried.siegfried import Siegfried
from acacore.siegfried.siegfried import SiegfriedFile
from acacore.utils.io import size_fmt

from .base import ACABase
from .identification import Identification


class Action(Enum):
CONVERT = 'Convertool: To convert.'
REPLACE = 'Convertool: Replace with template. File is not preservable.'
MANUAL = 'Manual: File should be converted manually. [info about the manual conversion from reference_files].'
RENAME = 'Renamer: File has extension mismatch. Should be renamed'
CONVERT = "Convertool: To convert."
REPLACE = "Convertool: Replace with template. File is not preservable."
MANUAL = "Manual: File should be converted manually. [info about the manual conversion from reference_files]."
RENAME = "Renamer: File has extension mismatch. Should be renamed"


# -----------------------------------------------------------------------------
# Model
Expand Down

0 comments on commit 1518585

Please sign in to comment.