Skip to content

Commit

Permalink
Drop unused sleep
Browse files Browse the repository at this point in the history
  • Loading branch information
evanpurkhiser committed Apr 20, 2024
1 parent 457d5bf commit c59f541
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions venmo_auto_cashout/cli.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import sqlite3
import argparse
from os import getenv
from time import sleep
from typing import List, Union


Expand Down Expand Up @@ -116,10 +115,7 @@ def output(msg: str):
output("Your venmo balance is zero. Nothing to do")
return

# Sleep for 5 seconds to make sure the transactions actually show up
output("Your balance is ${:,.2f}".format(current_balance / 100))
output("Waiting 5 seconds before querying transactions...")
# sleep(5.0)

# XXX: There may be some leftover amount if the transactions do not match
# up exactly to the current account balance.
Expand Down

0 comments on commit c59f541

Please sign in to comment.