We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84fc7bb commit f32c620Copy full SHA for f32c620
capitulos/code/04-text-byte/charfinder/cf.py
@@ -2,7 +2,7 @@
2
import sys
3
import unicodedata
4
5
-START, END = ord(' '), sys.maxunicode + 1 # <1>
+START, END = ord(' '), sys.maxunicode + 1 # <1>
6
7
def find(*query_words, start=START, end=END): # <2>
8
query = {w.upper() for w in query_words} # <3>
0 commit comments