OpenSemanticLab / osw-python

GNU Affero General Public License v3.0
3 stars 2 forks source link

ensure backwards compatibility #35

Open LukasGold opened 1 year ago

LukasGold commented 1 year ago

Go through the modules and correct typing, ensure the Usage of python 3.8 compatible typing.

Example:

bad: osw.utils.util.list_files_and_directories() -> dict[str, list[Path]] good: osw.utils.util.list_files_and_directories() -> Dict[str, List[Path]] -> requires imports from typing module