Commit d479f091 authored by Cody Zacharias's avatar Cody Zacharias Committed by GitHub

Fix limit

parent 057ffb71
......@@ -38,9 +38,10 @@ class Profile:
while True:
if len(self.feed) > 0:
await self.tweets()
elif get.Limit(self.config.Limit, self.count):
break
else:
break
if get.Limit(self.config.Limit, self.count):
break
verbose.Count(self.config, self.count)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment