Compare commits

..

No commits in common. "8343c9183f44a878b78f8e32c1b7830580f33561" and "00254503af60769f220b2939a7be5df3ad58e9d0" have entirely different histories.

3 changed files with 1 additions and 1 deletions

Binary file not shown.

Binary file not shown.

View File

@ -5,7 +5,7 @@ from devranta.api import Api
async def main_async():
api = Api()
for rant in await api.get_rants():
async for rant in api.get_rants():
print(
"{}({}): {}".format(
rant["user_username"], rant["user_score"], rant["text"].split(".")[0]