allow all single-length charactors

This commit is contained in:
vulpine 2020-07-23 20:04:27 +00:00
parent 795dbad1b1
commit 366a5f96cc
1 changed files with 1 additions and 2 deletions

3
nboard
View File

@ -5,7 +5,6 @@ import curses,time,json,sys
dataPath = '/home/lickthecheese/nboard/nboard.json'
allowedChars = "█▒░ `~1234567890-=!@#$%^&*()_+qwertyuiop[]\\QWERTYUIOP{}|asdfghjkl;'ASDFGHJKL:\"zxcvbnm,./ZXCVBNM<>?"
data = {}
def main(stdscr):
@ -64,7 +63,7 @@ def main(stdscr):
data = json.load(openfile)
# if valid key pressed, write it
if k in allowedChars:
if len(k) == 1:
data[str((ty,tx))] = k
vx = vx+1
with open(dataPath, 'w') as outfile: