Skip to content
This repository has been archived by the owner on Jul 5, 2024. It is now read-only.

Commit

Permalink
fix type casting
Browse files Browse the repository at this point in the history
  • Loading branch information
Jules-WinnfieldX committed Jan 28, 2024
1 parent 538851e commit f0ccff9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cyberdrop_dl/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "5.1.55"
__version__ = "5.1.56"
2 changes: 1 addition & 1 deletion cyberdrop_dl/utils/sorting.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
from cyberdrop_dl.managers.manager import Manager


def get_file_date_in_us_ca_formats(file: Path) -> tuple(str, str):
def get_file_date_in_us_ca_formats(file: Path) -> tuple[str, str]:
file_date = filedate.File(str(file)).get()
file_date_us = file_date['modified'].strftime("%Y-%d-%m")
file_date_ca = file_date['modified'].strftime("%Y-%m-%d")
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 = "cyberdrop-dl"
version = "5.1.55"
version = "5.1.56"
description = "Bulk downloader for multiple file hosts"
authors = ["Jules Winnfield <[email protected]>"]
readme = "README.md"
Expand Down

0 comments on commit f0ccff9

Please sign in to comment.