gordicaleksa / Open-NLLB

Effort to open-source NLLB checkpoints.
MIT License
419 stars 37 forks source link

fixed: type hinting issue in download_parallel_corpora.py #9

Closed lavaman131 closed 1 year ago

lavaman131 commented 1 year ago

Minor issue with the type hint list[str] for Python < 3.9 so I replaced list with typing.List in:

def download_Flores202(directory, eval_directions: List[str]):
    ...

https://stackoverflow.com/questions/63460126/typeerror-type-object-is-not-subscriptable-in-a-function-signature

gordicaleksa commented 1 year ago

thank you!