Skip to content

Commit

Permalink
Fixed Format String for CLI Event Description
Browse files Browse the repository at this point in the history
See also #16.
  • Loading branch information
stegm authored Sep 14, 2024
1 parent dba0235 commit 10093f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pykoplenti/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ async def fn(client: ApiClient):
for event in data:
print(
f"{event.is_active < 5} {event.start_time} {event.end_time} "
"{event.description}"
f"{event.description}"
)

asyncio.run(
Expand Down

0 comments on commit 10093f0

Please sign in to comment.