Skip to content

Commit afa72a5

Browse files
authored
temp_test is already a string
1 parent aeef068 commit afa72a5

File tree

1 file changed

+1
-1
lines changed
  • PicoW_CircuitPython_HTTP_Server

1 file changed

+1
-1
lines changed

PicoW_CircuitPython_HTTP_Server/code.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ def buttonpress(request):
236236
# comment/uncomment for desired units
237237
# temp_test = str(ds18.temperature)
238238
temp_test = str(c_to_f(ds18.temperature))
239-
temp_text_area.text = "Temperature: %d F" % temp_test
239+
temp_text_area.text = "Temperature: %s F" % temp_test
240240

241241
#if parrot is True:
242242
if parrot_pin.value is True:

0 commit comments

Comments
 (0)