Skip to content

Commit 0a09645

Browse files
committed
the formatting though
1 parent e556a70 commit 0a09645

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

src/async_utils/corofunc_cache.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
4141

4242
class CoroCacheDeco(typing.Protocol):
4343
def __call__[**P, R](self, c: CoroLike[P, R], /) -> CoroFunc[P, R]: ...
44+
4445
else:
4546

4647
def f__call__[**P, R](self, c: CoroLike[P, R], /) -> CoroFunc[P, R]: ... # noqa: ANN001

src/async_utils/task_cache.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242

4343
class TaskCacheDeco(typing.Protocol):
4444
def __call__[**P, R](self, c: TaskCoroFunc[P, R], /) -> TaskFunc[P, R]: ...
45+
4546
else:
4647

4748
def f__call__[**P, R](self, c: TaskCoroFunc[P, R], /) -> TaskFunc[P, R]: ... # noqa: ANN001

0 commit comments

Comments
 (0)