Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
C-Pro committed Feb 21, 2024
1 parent 3e4a08d commit c11542e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ name = "pypi"

[[description]]
name = "vldc-bot"
version = "0.8.6"
version = "0.8.7"
description = "VLDC nyan bot ^_^"
authors = [
#tg
Expand Down
2 changes: 1 addition & 1 deletion bot/skills/chat.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def __init__(self):
def registerMessage(self, update: Update, context: CallbackContext):
if update.message is None:
return
if update.message.text.starts_with("/"):
if update.message.text.startswith("/"):
return
with self.lock:
self.memory.append(
Expand Down

0 comments on commit c11542e

Please sign in to comment.