Skip to content

Commit

Permalink
Merge pull request #39
Browse files Browse the repository at this point in the history
v3.0.1
  • Loading branch information
MatteoCampinoti94 authored Aug 16, 2024
2 parents bea5207 + ccc922b commit 1ecb93a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion acacore/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "3.0.0"
__version__ = "3.0.1"
4 changes: 2 additions & 2 deletions acacore/models/file.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,8 +163,8 @@ def from_file(
file.warning.append("extension mismatch")
file.warning = file.warning or None
action = file.get_action(actions, file_classes)
elif file.action_data.reidentify and file.action_data.reidentify.onfail:
file.action = file.action_data.reidentify.onfail
elif file.action_data.reidentify and (on_fail := file.action_data.reidentify.on_fail):
file.action = None if on_fail == "null" else file.action
else:
action = None
file.action = "manual"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "acacore"
version = "3.0.0"
version = "3.0.1"
description = ""
authors = ["Matteo Campinoti <[email protected]>"]
license = "GPL-3.0"
Expand Down

0 comments on commit 1ecb93a

Please sign in to comment.