Fix Black formatting: add trailing comma in set_dispatch_callback

Black requires a trailing comma after the callback parameter when the
function signature spans multiple lines.
This commit is contained in:
Claude
2025-12-04 15:06:13 +00:00
parent c564a61cf7
commit 83f3157e8b

View File

@@ -404,7 +404,7 @@ _dispatch_callback: Optional[Callable[[str, dict[str, Any], Optional[str]], None
def set_dispatch_callback(
callback: Optional[Callable[[str, dict[str, Any], Optional[str]], None]]
callback: Optional[Callable[[str, dict[str, Any], Optional[str]], None]],
) -> None:
"""Set a callback for synchronous webhook dispatch.