Ver código fonte

Comment out debug messages

Foppe Hemminga 6 anos atrás
pai
commit
135beb1668
1 arquivos alterados com 4 adições e 4 exclusões
  1. 4 4
      model.py

+ 4 - 4
model.py

@@ -156,9 +156,9 @@ def calculate_time_to_next_attack(this_player_id):
     apocalypse_time = starting_time + seconds_till_level_iv
     time_now = arrow.utcnow().timestamp
     diff = apocalypse_time - time_now
-    print(diff)
+    # print(diff)
     # diff_in_minutes = int(diff//60)
-    print(
-        f'starting time {starting_time}, seconds_till_level_iv {seconds_till_level_iv}, ' +
-        f'apocalypse_time {apocalypse_time}')
+    # print(
+    #     f'starting time {starting_time}, seconds_till_level_iv {seconds_till_level_iv}, ' +
+    #     f'apocalypse_time {apocalypse_time}')
     return diff, apocalypse_time