Skip to content

Commit

Permalink
Swap linefeed & carriage return keycodes
Browse files Browse the repository at this point in the history
  • Loading branch information
vanschelven committed Jan 8, 2022
1 parent 7d60cbf commit 92cb9c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions readchar/key.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# common
LF = "\x0d"
CR = "\x0a"
LF = "\x0a"
CR = "\x0d"
ENTER = "\x0d"
BACKSPACE = "\x08"
SUPR = ""
Expand Down

0 comments on commit 92cb9c1

Please sign in to comment.