Commits
Click on a commit to change the comparison rangeFix type subscript on older python versions
Python versions before Python 3.9 don't have subscriptable containers like `list`, which is being used in the annotation of `get_last_three_path_parts` here. I believe Ruff supports Python 3.7 and Python 3.8? In that case this needs to either use the container from the `typing` module, or use deferred annotations with `from __future__ import annotations` like I'm proposing here23 hours ago
by aaron-skydio