diff --git a/.gitignore b/.gitignore index 55e4c5a8..eca21968 100644 --- a/.gitignore +++ b/.gitignore @@ -5,5 +5,5 @@ venv/ __pycache__ htmlcov site -snippets*/ +.snippets*/ .idea/ diff --git a/README.md b/README.md index f3a82ea3..e11e89e3 100644 --- a/README.md +++ b/README.md @@ -546,7 +546,7 @@ async def create_group_chat_handler(message: IncomingMessage, bot: Bot) -> None: bot_id=message.bot.id, name="New group chat", chat_type=ChatTypes.GROUP_CHAT, - huids=[contact.entity_id for contact in contacts], # type: ignore + huids=[contact.entity_id for contact in contacts], ) except (ChatCreationProhibitedError, ChatCreationError) as exc: await bot.answer_message(str(exc))