Ruff format with defaults.

This commit is contained in:
erinhmclark
2025-03-10 18:44:54 +00:00
parent cbb0414e5f
commit 85abe1837a
155 changed files with 2539 additions and 1908 deletions

View File

@@ -1,7 +1,8 @@
""" Version information for the auto_archiver package.
TODO: This is a placeholder to replicate previous versioning.
"""Version information for the auto_archiver package.
TODO: This is a placeholder to replicate previous versioning.
"""
from importlib.metadata import version as get_version
VERSION_SHORT = get_version("auto_archiver")
@@ -9,4 +10,4 @@ VERSION_SHORT = get_version("auto_archiver")
# This is mainly for nightly builds which have the suffix ".dev$DATE". See
# https://semver.org/#is-v123-a-semantic-version for the semantics.
_SUFFIX = ""
__version__ = f"{VERSION_SHORT}{_SUFFIX}"
__version__ = f"{VERSION_SHORT}{_SUFFIX}"