GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.

StartCommand.default()   A
last analyzed

Complexity

Conditions 1

Size

Total Lines 2

Duplication

Lines 0
Ratio 0 %
Metric Value
cc 1
dl 0
loc 2
rs 10
1
from . import BotCommand
2
3
4
class StartCommand(BotCommand):
5
    command = '/start'
6
7
    def default(self, message):
8
        self.bot.say(message, ("Hi there, nice to meet you! Feel free to start right"
9
                               " away with a command."))
10