CoEDL / elpis

🙊 software for creating speech recognition models.
https://elpis.readthedocs.io/en/latest/
Apache License 2.0
152 stars 33 forks source link

Use pathlib.Path for internal path manipulations #72

Closed shuttle1987 closed 2 years ago

shuttle1987 commented 4 years ago

This is something that will greatly help your code quality, especially if you have to target multiple platforms. You also then get substantial type checking benefits from mypy and other tools since there's no type ambiguity between strings that are representing strings and strings that are representing file paths.

benfoley commented 2 years ago

New code will follow this preference, unlikely to update existing code.