Skip to content

Commit 2065b25

Browse files
committed
chore: migrate dependency management from Poetry to uv
1 parent edcfd16 commit 2065b25

4 files changed

Lines changed: 509 additions & 399 deletions

File tree

common/safe_path.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def __truediv__(self, path_part: PyPath | Self) -> Self:
2323
if isinstance(path_part, SafePath):
2424
add_path_part = path_part.path
2525
else:
26-
add_path_part = Path(path_part) # type: ignore [arg-type]
26+
add_path_part = Path(path_part)
2727

2828
new_path = self._safe_path / add_path_part
2929

0 commit comments

Comments
 (0)