Add files via upload

This commit is contained in:
Dalton 2021-05-19 13:42:44 -05:00 committed by GitHub
parent daa930fce0
commit c00cbf61d3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -26,9 +26,9 @@ def runLocked(scr):
# set screen to initial position
scr.erase()
curses.curs_set(0)
scr.move(height / 2 - 1, 0)
scr.move(int(height / 2 - 1), 0)
centeredWrite(scr, LOCKED_1)
scr.move(height / 2 + 1, 0)
scr.move(int(height / 2 + 1), 0)
centeredWrite(scr, LOCKED_2)
scr.refresh()
curses.napms(LOCKED_OUT_TIME)