mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
PEP8
This commit is contained in:
parent
be75d0afe3
commit
cf2105f3c5
1 changed files with 5 additions and 8 deletions
|
@ -13,10 +13,10 @@ class AnswerCommand(rc.Command):
|
||||||
syntax: str = ""
|
syntax: str = ""
|
||||||
|
|
||||||
_answers = [
|
_answers = [
|
||||||
#Cerchiamo di tenere bilanciate le tre colonne, o almeno le prime due.
|
# Cerchiamo di tenere bilanciate le tre colonne, o almeno le prime due.
|
||||||
#Se avete un'idea ma metterebbe troppe opzioni in un'unica categoria, mettetela sotto commento.
|
# Se avete un'idea ma metterebbe troppe opzioni in un'unica categoria, mettetela sotto commento.
|
||||||
|
|
||||||
#risposte "sì"
|
# risposte "sì"
|
||||||
"Sì.",
|
"Sì.",
|
||||||
"Decisamente sì!",
|
"Decisamente sì!",
|
||||||
"Uhm, secondo me sì.",
|
"Uhm, secondo me sì.",
|
||||||
|
@ -34,7 +34,7 @@ class AnswerCommand(rc.Command):
|
||||||
"Questa domanda ha risposta affermativa.",
|
"Questa domanda ha risposta affermativa.",
|
||||||
"Hell yeah.",
|
"Hell yeah.",
|
||||||
|
|
||||||
#risposte "no"
|
# risposte "no"
|
||||||
"No.",
|
"No.",
|
||||||
"Decisamente no!",
|
"Decisamente no!",
|
||||||
"Uhm, secondo me sì.",
|
"Uhm, secondo me sì.",
|
||||||
|
@ -52,7 +52,7 @@ class AnswerCommand(rc.Command):
|
||||||
"Questa domanda ha risposta negativa.",
|
"Questa domanda ha risposta negativa.",
|
||||||
"Hell no.",
|
"Hell no.",
|
||||||
|
|
||||||
#risposte "boh"
|
# risposte "boh"
|
||||||
"Boh.",
|
"Boh.",
|
||||||
"E io che ne so?!",
|
"E io che ne so?!",
|
||||||
"Non so proprio rispondere",
|
"Non so proprio rispondere",
|
||||||
|
@ -71,12 +71,9 @@ class AnswerCommand(rc.Command):
|
||||||
]
|
]
|
||||||
|
|
||||||
async def run(self, args: rc.CommandArgs, data: rc.CommandData) -> None:
|
async def run(self, args: rc.CommandArgs, data: rc.CommandData) -> None:
|
||||||
|
|
||||||
h = hash(datetime.datetime.now())
|
h = hash(datetime.datetime.now())
|
||||||
|
|
||||||
r = random.Random(x=h)
|
r = random.Random(x=h)
|
||||||
|
|
||||||
message = r.sample(self._answers, 1)[0]
|
message = r.sample(self._answers, 1)[0]
|
||||||
await data.reply(message)
|
await data.reply(message)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue