Skip to content

Commit c749852

Browse files
committed
refactor: use internal stgpytools
1 parent b7e82ba commit c749852

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

vstools/stgpytools/types/file.py

+3
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,9 @@ class SPath(Path):
6363
def __new__(cls, *args: SPathLike, **kwargs: Any) -> SPath:
6464
...
6565

66+
def __init__(self, *args: Any, **kwargs: Any) -> None:
67+
super().__init__() # Initialize the base class
68+
6669
def format(self, *args: Any, **kwargs: Any) -> SPath:
6770
"""Format the path with the given arguments."""
6871

0 commit comments

Comments
 (0)