Skip to content

Commit 1a987ca

Browse files
committed
formatting pass
1 parent 7df27ee commit 1a987ca

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/async_utils/corofunc_cache.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@
3232
#: rather than a ParamSpec of the decorated function.
3333
#: Warning: Mutations will impact callsite, return new objects as needed.
3434
type CacheTransformer = Callable[
35-
[tuple[t.Any, ...], Mapping[str, t.Any]], tuple[tuple[t.Any, ...], Mapping[str, t.Any]]
35+
[tuple[t.Any, ...], Mapping[str, t.Any]],
36+
tuple[tuple[t.Any, ...], Mapping[str, t.Any]],
3637
]
3738

3839
TYPE_CHECKING = False

src/async_utils/task_cache.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@
3333
#: rather than a ParamSpec of the decorated function.
3434
#: Warning: Mutations will impact callsite, return new objects as needed.
3535
type CacheTransformer = Callable[
36-
[tuple[t.Any, ...], Mapping[str, t.Any]], tuple[tuple[t.Any, ...], Mapping[str, t.Any]]
36+
[tuple[t.Any, ...], Mapping[str, t.Any]],
37+
tuple[tuple[t.Any, ...], Mapping[str, t.Any]],
3738
]
3839

3940
TYPE_CHECKING = False

0 commit comments

Comments
 (0)