Skip to content

Commit

Permalink
@bisgaard-itis review: fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
sanderegg committed Nov 14, 2024
1 parent dc5539b commit 8e97205
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/service-library/src/servicelib/redis_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@


def exclusive(
redis: RedisClientSDK | Callable[..., RedisClientSDK],
redis: RedisClientSDK | Callable[P, RedisClientSDK],
*,
lock_key: str | Callable[..., str],
lock_key: str | Callable[P, str],
lock_value: bytes | str | None = None,
) -> Callable[[Callable[P, Awaitable[R]]], Callable[P, Awaitable[R]]]:
"""
Expand Down

0 comments on commit 8e97205

Please sign in to comment.