Glayson0 / Nova-bot

Um bot do Telegram para passar informações da Unicamp como horário dos onibus e do bandeco
3 stars 0 forks source link

Remove import all in modules #23

Closed Sergio-Daniel-Pires closed 1 month ago

Sergio-Daniel-Pires commented 1 month ago

When you do "from X import *":

  1. Developers can't find original reference function to edit
  2. Your code becomes slow
  3. You use unnecessary things from other modules.
  4. Files diff's (git included) can't alert you if you delete some dependency from source.