Skip to content

Commit 64d4e6d

Browse files
committed
format files
1 parent 221d81b commit 64d4e6d

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

pybotx/models/enums.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff 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

317319
def convert_chat_type_to_domain(

tests/test_handler_collector.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff 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"

0 commit comments

Comments
 (0)