Laura Biester commited on
Commit
edcbd4b
·
1 Parent(s): fade037

Print when refreshing bots

Browse files
Files changed (1) hide show
  1. refresh_bots.py +1 -0
refresh_bots.py CHANGED
@@ -27,6 +27,7 @@ class BotCache:
27
 
28
  @staticmethod
29
  def _load_bots() -> Dict[str, type]:
 
30
  BotCache._refresh_files()
31
  python_files = [f[:-3] for f in os.listdir(REPO_PATH)
32
  if f.endswith(".py")]
 
27
 
28
  @staticmethod
29
  def _load_bots() -> Dict[str, type]:
30
+ print("Refreshing bots")
31
  BotCache._refresh_files()
32
  python_files = [f[:-3] for f in os.listdir(REPO_PATH)
33
  if f.endswith(".py")]