Fixed bug in demo

This commit is contained in:
David Marx
2018-05-12 20:40:33 -07:00
parent 45405353f6
commit 7d4bdef095
+1 -1
View File
@@ -159,7 +159,7 @@ Using the ``stop_condition`` argument to get the most recent submission by a bot
gen = api.search_submissions(stop_condition=lambda x: 'bot' in x.author)
for subm in enumerate(gen):
for subm in gen:
pass
print(subm.author)