Skip to content

Commit

Permalink
Remove unnecessary comprehension
Browse files Browse the repository at this point in the history
  • Loading branch information
rbanffy committed Jan 16, 2021
1 parent f6b2338 commit 2008d12
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions test_font_rendering.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@

import string

printable = "".join(
[c for c in string.printable if c not in string.whitespace]
)
printable = "".join(c for c in string.printable if c not in string.whitespace)

boxes = """
┌─┬┐╔═╦╗╓─╥╖╒═╤╕
Expand Down

0 comments on commit 2008d12

Please sign in to comment.