-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ahora el "en camino" de /dafi lo envía a los interesados #17
base: master
Are you sure you want to change the base?
Conversation
context.bot.send_message( | ||
member_id, | ||
f'¡{update.effective_user.name} está de camino a DAFI!', | ||
) | ||
|
||
except (TelegramError, AssertionError): | ||
except: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No olvides utilizar las excepciones correctas en el try-except
: TelegramError
en este caso.
try: | ||
for member_id in members_ids: | ||
for member_id in members_ids: | ||
try: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Cuidado con los espacios en blanco al final de una línea. Para ir rápido: https://stackoverflow.com/a/30884298
'No he podido avisarles 😓' | ||
) | ||
return | ||
'No he podido avisarles 😓' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Cuidado con la indentación, recuerda que tenemos que seguir PEP 8. Para ir rápido: https://flake8.pycqa.org/en/latest/
Hay dos cambios a la vez en este commit:
Antes, por la forma del código, el bot simplemente se saltaba la comprobación de si un mismo usuario ya estaba en DAFI. Esto se traduce en que un mismo usuario podía poner /dafi on las veces que quisiera, que el bot no le avisaba de que ya estaba ahí, lo que también producía un problema a la hora de enviar un mensaje a los interesados, ya que se guardaba el UID de Telegram tantas veces como el usuario pusiera /dafi on y le podía mandar 5, 6, 7 mensajes (o tantas veces como el usuario haya hecho /dafi on) de que x usuario estaba de camino a DAFI.
Ahora, si un usuario dice que está de camino, el bot manda un mensaje de "¡@x está de camino a DAFI!" tan solo a los que estén ahí, no al grupo general.