summaryrefslogtreecommitdiff
path: root/cupinder.py
diff options
context:
space:
mode:
Diffstat (limited to 'cupinder.py')
-rw-r--r--cupinder.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/cupinder.py b/cupinder.py
index e26c4f7..ade4f15 100644
--- a/cupinder.py
+++ b/cupinder.py
@@ -28,6 +28,13 @@ def connect():
print('[i] Remaining likes: %d' % tinder.get_remaining_likes())
+ wait = tinder.can_like_in()
+
+ if wait == 0:
+ print('[i] Time to like!')
+ else:
+ print('[i] We have to wait %d minute%s before liking...' % (wait, 's' if wait > 1 else ''))
+
return tinder