update README, remove debug-related line

This commit is contained in:
msk
2022-09-27 22:12:36 -07:00
parent 978ba92901
commit 357e334308
3 changed files with 7 additions and 10 deletions
+2 -5
View File
@@ -111,9 +111,7 @@ async def get_cross_talent_tweets(queue_path):
with open(queue_path, 'w') as f:
print('Pulling tweets from online!')
try:
print('TODO: using test_talents')
for talent_id in talent_lists.test_talents:
# for talent_id in talent_lists.talents:
for talent_id in talent_lists.talents:
if talent_id not in finished_user_timestamps or \
finished_user_timestamps[talent_id] < datetime.datetime.now().timestamp():
try:
@@ -188,5 +186,4 @@ async def run(program_args):
print(f'found {len(ttweets_dict)} cross-company tweets')
if await process_queue(ttweets_dict) == 0:
print('Posted no new tweets; we\'re caught up!')
break
# TODO: go to listen mode
break
+1 -1
View File
@@ -29,7 +29,7 @@ def init_argparse():
return p
def command_line():
# TODO: implement command line mode for manually controlling the bot
# TODO (extra): implement command line mode for manually controlling the bot
print('Shell coming soon. For now, here\'s a Python interpretor.')
code.interact(local=globals())
pass