Skip to content

Commit

Permalink
fix: fix a linting error
Browse files Browse the repository at this point in the history
  • Loading branch information
utotsubasa committed Feb 12, 2025
1 parent 7adae09 commit 5796544
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gokart/in_memory/target.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
class InMemoryTarget(TargetOnKart):
def __init__(self, data_key: str, task_lock_param: TaskLockParams):
if task_lock_param.should_task_lock:
raise ValueError(f'Redis with `InMemoryTarget` is not currently supported.')
raise ValueError('Redis with `InMemoryTarget` is not currently supported.')

self._data_key = data_key
self._task_lock_params = task_lock_param
Expand Down

0 comments on commit 5796544

Please sign in to comment.