Skip to content

Commit

Permalink
Chroe: formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
chazeon committed May 29, 2024
1 parent dddae39 commit dc4f4da
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
6 changes: 5 additions & 1 deletion vistopia/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
from .__version__ import __version__
from .__version__ import __version__

__all__ = [
"__version__"
]
2 changes: 1 addition & 1 deletion vistopia/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.0.0'
__version__ = '1.0.0'
7 changes: 6 additions & 1 deletion vistopia/visitor.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,12 @@ def save_transcript_with_single_file(self, id: int,
print(f"Failed to fetch page using single-file: {e}")

@staticmethod
def retag(fname, article_info: dict, catalog_info: dict, series_info: dict):
def retag(
fname: str,
article_info: dict,
catalog_info: dict,
series_info: dict
):

from mutagen.easyid3 import EasyID3
from mutagen.id3 import ID3NoHeaderError
Expand Down

0 comments on commit dc4f4da

Please sign in to comment.