Compare commits

...

2 Commits

Author SHA1 Message Date
8343c9183f New package build.
Some checks failed
devranta build / build (push) Failing after 1m6s
2024-12-03 03:55:27 +01:00
d0476f7bb5 Bugfix generator. 2024-12-03 03:54:31 +01:00
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(): async def main_async():
api = Api() api = Api()
async for rant in api.get_rants(): for rant in await api.get_rants():
print( print(
"{}({}): {}".format( "{}({}): {}".format(
rant["user_username"], rant["user_score"], rant["text"].split(".")[0] rant["user_username"], rant["user_score"], rant["text"].split(".")[0]