File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -311,7 +311,9 @@ def convert_chat_type_to_domain(
311311
312312
313313@overload
314- def convert_chat_type_to_domain (chat_type : str ) -> UNSUPPORTED : ... # noqa: WPS428, E704
314+ def convert_chat_type_to_domain (
315+ chat_type : str ,
316+ ) -> UNSUPPORTED : ... # noqa: WPS428, E704
315317
316318
317319def convert_chat_type_to_domain (
Original file line number Diff line number Diff line change @@ -560,6 +560,8 @@ async def test__handler_collector__sync_smartapp_event__decorator__handler_alrea
560560 with pytest .raises (ValueError ) as exc :
561561
562562 @collector .sync_smartapp_event
563- async def duplicated_handle_sync_smartapp_event (* _ : Any ) -> Any : ... # noqa: E704
563+ async def duplicated_handle_sync_smartapp_event (
564+ * _ : Any ,
565+ ) -> Any : ... # noqa: E704
564566
565567 assert str (exc .value ) == "Handler for sync smartapp event already registered"
You can’t perform that action at this time.
0 commit comments