Skip to content

Commit

Permalink
info.py: change to f-string
Browse files Browse the repository at this point in the history
  • Loading branch information
thirdr committed Jan 8, 2025
1 parent 7ec4fe6 commit 1b311af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion badger_os/examples/info.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
y += LINE_HEIGHT
display.text("https://pimoroni.com/badger2040", 5, y, WIDTH, TEXT_SIZE)
y += LINE_HEIGHT
display.text("Badger OS " + version, 5, y, WIDTH, TEXT_SIZE)
display.text(f"Badger OS {version}", 5, y, WIDTH, TEXT_SIZE)

display.update()

Expand Down

0 comments on commit 1b311af

Please sign in to comment.