lunarflu HF staff commited on
Commit
8962091
1 Parent(s): 31fc3e6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +0 -3
app.py CHANGED
@@ -206,9 +206,6 @@ async def count_threads(ctx, time: int):
206
  print(thread.name)
207
  async for message in thread.history(limit=None, after=start_date, before=end_date):
208
  thread_message_count += 1
209
- for archived_thread in
210
-
211
-
212
  print(f'Total thread_messages between {start_date} and {end_date}: {thread_message_count}')
213
 
214
 
 
206
  print(thread.name)
207
  async for message in thread.history(limit=None, after=start_date, before=end_date):
208
  thread_message_count += 1
 
 
 
209
  print(f'Total thread_messages between {start_date} and {end_date}: {thread_message_count}')
210
 
211