Skip to content

Commit 4e9f5bf

Browse files
committed
Fix an error in Python 3.10
1 parent d9c59c1 commit 4e9f5bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

monic/runtime/inspector.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def inspector_signature(
2828

2929
sig = inspect.signature(obj)
3030

31-
return f"{name}{sig.format()}"
31+
return f"{name}{sig}"
3232

3333

3434
@monic_bind_default("inspector.is_available")

0 commit comments

Comments
 (0)