Skip to content

Commit

Permalink
fix: docs-lint
Browse files Browse the repository at this point in the history
  • Loading branch information
lxmnk committed Apr 29, 2022
1 parent a86e56b commit 7282837
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ venv/
__pycache__
htmlcov
site
snippets*/
.snippets*/
.idea/
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down

0 comments on commit 7282837

Please sign in to comment.