mirror of
https://github.com/ldericher/fftcgtool
synced 2025-01-15 15:02:59 +00:00
type hint/formatting
This commit is contained in:
parent
390a6199fa
commit
2f49e75143
1 changed files with 3 additions and 2 deletions
|
@ -126,7 +126,7 @@ def main(ctx, **kwargs) -> None:
|
||||||
metavar="[OPUS-ID] ...",
|
metavar="[OPUS-ID] ...",
|
||||||
)
|
)
|
||||||
@click.pass_context
|
@click.pass_context
|
||||||
def opuses(ctx, opus_ids, num_requests) -> list[fftcgtool.TTSDeck]:
|
def opuses(ctx, opus_ids: list[str], num_requests: int) -> list[fftcgtool.TTSDeck]:
|
||||||
"""
|
"""
|
||||||
Imports Opuses from the square API and creates its elemental decks as JSON files.
|
Imports Opuses from the square API and creates its elemental decks as JSON files.
|
||||||
|
|
||||||
|
@ -161,7 +161,7 @@ def opuses(ctx, opus_ids, num_requests) -> list[fftcgtool.TTSDeck]:
|
||||||
type=str,
|
type=str,
|
||||||
metavar="[DECK-ID] ...",
|
metavar="[DECK-ID] ...",
|
||||||
)
|
)
|
||||||
def ffdecks(deck_ids) -> list[fftcgtool.TTSDeck]:
|
def ffdecks(deck_ids: list[str]) -> list[fftcgtool.TTSDeck]:
|
||||||
"""
|
"""
|
||||||
Imports Decks from the ffdecks.com API and creates it as a JSON file.
|
Imports Decks from the ffdecks.com API and creates it as a JSON file.
|
||||||
|
|
||||||
|
@ -183,6 +183,7 @@ def finalize(decks: list[fftcgtool.TTSDeck], **kwargs):
|
||||||
# decide what to do with the decks
|
# decide what to do with the decks
|
||||||
if kwargs["zip"] is not None:
|
if kwargs["zip"] is not None:
|
||||||
logger.debug("Outputting decks to ZIP")
|
logger.debug("Outputting decks to ZIP")
|
||||||
|
|
||||||
if decks:
|
if decks:
|
||||||
# create zip file
|
# create zip file
|
||||||
with zipfile.ZipFile(kwargs["zip"], "w", compression=zipfile.ZIP_DEFLATED) as zip_file:
|
with zipfile.ZipFile(kwargs["zip"], "w", compression=zipfile.ZIP_DEFLATED) as zip_file:
|
||||||
|
|
Loading…
Reference in a new issue