Skip to content

Commit c0dd662

Browse files
Merge pull request #27 from monica-veloso/main
Fix _call_with_lock to use args and kwargs
2 parents 050f73c + 2596b60 commit c0dd662

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/yapcache/__about__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.1.22"
1+
__version__ = "0.1.23"

src/yapcache/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ async def _call_with_lock(*args, **kwargs):
9191
**kwargs,
9292
)
9393

94-
result = await _call_with_lock()
94+
result = await _call_with_lock(*args, **kwargs)
9595

9696
return process_result(result, *args, **kwargs)
9797

0 commit comments

Comments
 (0)