from bot.Keyboard import Keyboard from telegram import InlineKeyboardButton, InlineKeyboardMarkup class FirstStepPartner(Keyboard): def get_keyboard(self): return [ [ InlineKeyboardButton("Запросить кандидатов", callback_data='get_developers') ], # [ # InlineKeyboardButton("Стать разработчиком", callback_data='set_developer') # ], # [ # InlineKeyboardButton("Меню заведения", callback_data='get_menu') # ], ]