Skip to content

Commit 9280100

Browse files
committed
Apply black
1 parent ad4860b commit 9280100

File tree

4 files changed

+218
-126
lines changed

4 files changed

+218
-126
lines changed

curtsies/events.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,7 @@
1212

1313

1414
CURTSIES_NAMES = {}
15-
control_chars = {
16-
chr_byte(i): "<Ctrl-%s>" % chr(i + 0x60) for i in range(0x00, 0x1B)
17-
}
15+
control_chars = {chr_byte(i): "<Ctrl-%s>" % chr(i + 0x60) for i in range(0x00, 0x1B)}
1816
CURTSIES_NAMES.update(control_chars)
1917
for i in range(0x00, 0x80):
2018
CURTSIES_NAMES[b"\x1b" + chr_byte(i)] = "<Esc+%s>" % chr(i)

0 commit comments

Comments
 (0)