Revert "allow all single-length charactors"
This reverts commit 366a5f96cc
.
This commit is contained in:
parent
366a5f96cc
commit
19abfbb98c
1 changed files with 2 additions and 1 deletions
3
nboard
3
nboard
|
@ -5,6 +5,7 @@ import curses,time,json,sys
|
|||
|
||||
dataPath = '/home/lickthecheese/nboard/nboard.json'
|
||||
|
||||
allowedChars = "█▒░ `~1234567890-=!@#$%^&*()_+qwertyuiop[]\\QWERTYUIOP{}|asdfghjkl;'ASDFGHJKL:\"zxcvbnm,./ZXCVBNM<>?"
|
||||
data = {}
|
||||
|
||||
def main(stdscr):
|
||||
|
@ -63,7 +64,7 @@ def main(stdscr):
|
|||
data = json.load(openfile)
|
||||
|
||||
# if valid key pressed, write it
|
||||
if len(k) == 1:
|
||||
if k in allowedChars:
|
||||
data[str((ty,tx))] = k
|
||||
vx = vx+1
|
||||
with open(dataPath, 'w') as outfile:
|
||||
|
|
Loading…
Reference in a new issue