Skip to content

Commit

Permalink
Use Final type hints for metadata in version file
Browse files Browse the repository at this point in the history
Signed-off-by: Tsuyoshi Hombashi <tsuyoshi.hombashi@gmail.com>
  • Loading branch information
thombashi committed Jan 1, 2025
1 parent bd347b1 commit 9589bbe
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions pathvalidate_cli/__version__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
__author__ = "Tsuyoshi Hombashi"
__copyright__ = f"Copyright 2023-2024, {__author__}"
__license__ = "MIT License"
from typing import Final


__author__: Final = "Tsuyoshi Hombashi"
__copyright__: Final = f"Copyright 2023-2024, {__author__}"
__license__: Final = "MIT License"
__version__ = "0.0.3"
__maintainer__ = __author__
__email__ = "tsuyoshi.hombashi@gmail.com"
__maintainer__: Final = __author__
__email__: Final = "tsuyoshi.hombashi@gmail.com"

0 comments on commit 9589bbe

Please sign in to comment.