Skip to content

Commit 41b751a

Browse files
author
Brian Abelson
committed
i dont really know what i just changed
1 parent d1f754e commit 41b751a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

fitbite.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,12 +63,12 @@ def order_seamless(calorie_level):
6363
possible_orders = [o for o in orders if re.search(".*"+calorie_level+".*", o.find_element_by_tag_name('a').get_attribute('title'))]
6464

6565
n = len(possible_orders)
66-
if n==0:
66+
if n == 0:
6767
print "No suitable orders available at this time. It's probably too late to eat anyways!"
6868
return ""
69-
elif n==1:
69+
elif n == 1:
7070
the_order = possible_orders[0]
71-
elif n>1:
71+
elif n > 1:
7272
the_order = possible_orders[random.sample(range(0,(len(possible_orders)-1)))]
7373

7474
# select the order

0 commit comments

Comments
 (0)