Skip to content

Commit fa0cbd3

Browse files
committed
chore: delete unecessary comments
1 parent 177e72c commit fa0cbd3

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

gokart/task.py

-8
Original file line numberDiff line numberDiff line change
@@ -216,19 +216,11 @@ def clone(self, cls=None, **kwargs):
216216
return cls(**new_k)
217217

218218
def make_target(self, relative_file_path: Optional[str] = None, use_unique_id: bool = True, processor: Optional[FileProcessor] = None) -> TargetOnKart:
219-
# if self.cache_in_memory and processor:
220-
# logger.warning(f"processor {type(processor)} never used.")
221219
formatted_relative_file_path = (
222220
relative_file_path if relative_file_path is not None else os.path.join(self.__module__.replace('.', '/'), f'{type(self).__name__}.pkl')
223221
)
224222
file_path = os.path.join(self.workspace_directory, formatted_relative_file_path)
225223
unique_id = self.make_unique_id() if use_unique_id else None
226-
# if self.cache_in_memory:
227-
# from gokart.target import _make_file_path
228-
# return make_inmemory_target(
229-
# target_key=_make_file_path(file_path, unique_id),
230-
# task_lock_params=TaskLockParams(None, None, None, "hoge", False, False, 100)
231-
# )
232224

233225
task_lock_params = make_task_lock_params(
234226
file_path=file_path,

0 commit comments

Comments
 (0)