We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a482503 commit f6ab55bCopy full SHA for f6ab55b
1 file changed
MagTag_Tides/code.py
@@ -231,6 +231,7 @@ def show_hilo():
231
for i, data in enumerate(hilo_data):
232
# make it visible
233
hilo_icons[i].hidden = False
234
+ hilo_times[i].hidden = False
235
# icon
236
hilo_icons[i][0] = 0 if data["type"] == "H" else 1
237
# time
@@ -240,7 +241,6 @@ def show_hilo():
240
241
ampm = "A" if h < 12 else "P"
242
h = h if h < 13 else h - 12
243
hilo_times[i].text = "{:>2}:{:02} {}".format(h, m, ampm)
- hilo_times[i].hidden = False
244
245
246
def time_to_sleep():
0 commit comments