Skip to content

Commit e0b03da

Browse files
committed
@bisgaard-itis review: fix types
1 parent ccefa73 commit e0b03da

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/service-library/src/servicelib/redis_utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717

1818

1919
def exclusive(
20-
redis: RedisClientSDK | Callable[..., RedisClientSDK],
20+
redis: RedisClientSDK | Callable[P, RedisClientSDK],
2121
*,
22-
lock_key: str | Callable[..., str],
22+
lock_key: str | Callable[P, str],
2323
lock_value: bytes | str | None = None,
2424
) -> Callable[[Callable[P, Awaitable[R]]], Callable[P, Awaitable[R]]]:
2525
"""

0 commit comments

Comments
 (0)