File tree 2 files changed +3
-4
lines changed
2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -2115,5 +2115,5 @@ def cadet_commit_hash(self) -> str:
2115
2115
return self ._cadet_commit_hash
2116
2116
2117
2117
@property
2118
- def cadet_path (self ) -> str | os .PathLike :
2118
+ def cadet_path (self ) -> os .PathLike :
2119
2119
return self ._cadet_path
Original file line number Diff line number Diff line change @@ -33,7 +33,6 @@ class CadetRunnerBase(ABC):
33
33
34
34
Subclasses must implement the `run`, `clear`, and `load_results` methods.
35
35
"""
36
- cadet_path : Optional [pathlib .Path ] = None
37
36
38
37
@abstractmethod
39
38
def run (
@@ -99,7 +98,7 @@ def cadet_commit_hash(self) -> str:
99
98
100
99
@property
101
100
@abstractmethod
102
- def cadet_path (self ) -> str :
101
+ def cadet_path (self ) -> Optional [ os . PathLike ] :
103
102
pass
104
103
105
104
@@ -254,5 +253,5 @@ def cadet_commit_hash(self) -> str:
254
253
return self ._cadet_commit_hash
255
254
256
255
@property
257
- def cadet_path (self ) -> str | os .PathLike :
256
+ def cadet_path (self ) -> os .PathLike :
258
257
return self ._cadet_path
You can’t perform that action at this time.
0 commit comments