Skip to content

Commit

Permalink
fix/unmatched-f-string
Browse files Browse the repository at this point in the history
  • Loading branch information
probablyjassin committed Nov 11, 2024
1 parent b02fcab commit 76fcadd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cogs/mogi/calculations.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ async def collect(self, ctx: MogiApplicationContext):
ctx.mogi.results_date = time.strftime("%d%m%y")
file = File(create_table(ctx.mogi), filename="table.png")
message = await ctx.results_channel.send(
content=f"# Results - {time.strftime("%d.%m.%y")}", file=file
content=f"# Results - {time.strftime('%d.%m.%y')}", file=file
)

await ctx.respond("Results got posted in the results channel.")
Expand Down

0 comments on commit 76fcadd

Please sign in to comment.