diff --git a/tap.py b/tap.py index f9bc0a5..7bee975 100644 --- a/tap.py +++ b/tap.py @@ -85,10 +85,9 @@ def main(): while rs.running: tap = Tap.fake() total_earned += tap.tap_count + print("tap:", tap.tap_count, "earned:", total_earned) - if DRY_RUN: - print(tap) - else: + if not DRY_RUN: if not tap_request(tap): rs.kill()