Skip to content

Commit

Permalink
keyboard_utils.py -> keyboards.py
Browse files Browse the repository at this point in the history
  • Loading branch information
shamaevnn committed Dec 1, 2021
1 parent 585715a commit 53ba079
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tgbot/handlers/broadcast_message/handlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from telegram import Update

from .manage_data import CONFIRM_DECLINE_BROADCAST, CONFIRM_BROADCAST
from .keyboard_utils import keyboard_confirm_decline_broadcasting
from .keyboards import keyboard_confirm_decline_broadcasting
from .static_text import broadcast_command, broadcast_wrong_format, broadcast_no_access, error_with_html, \
message_is_sent, declined_message_broadcasting
from tgbot.models import User
Expand Down
2 changes: 1 addition & 1 deletion tgbot/handlers/location/handlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from telegram import Update

from tgbot.handlers.location.static_text import share_location, thanks_for_location
from tgbot.handlers.location.keyboard_utils import send_location_keyboard
from tgbot.handlers.location.keyboards import send_location_keyboard
from tgbot.models import User, Location


Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion tgbot/handlers/onboarding/handlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from tgbot.handlers.onboarding import static_text
from tgbot.handlers.utils.info import extract_user_data_from_update
from tgbot.models import User
from tgbot.handlers.onboarding.keyboard_utils import make_keyboard_for_start_command
from tgbot.handlers.onboarding.keyboards import make_keyboard_for_start_command


def command_start(update: Update, context) -> None:
Expand Down
File renamed without changes.

0 comments on commit 53ba079

Please sign in to comment.