как это исправить TypeError: 'dict' object is not callable
import telebot7
bot = telebot7.TeleBot( config.token )
@bot.message_handler( commands=['start', 'help'] )
def fuction(message):
bot.reply_to( message, "Howdy, how are you doing?" )
if __name__ == '__main__':
bot.pulling( none_stop=True )
Traceback
Traceback (most recent call last):
File "C:/Python/nuri/bot.py", line 8, in <module>
def fuction(message):
TypeError: 'dict' object is not callable