Skip to content

Commit f32c620

Browse files
authored
Update cf.py
1 parent 84fc7bb commit f32c620

File tree

1 file changed

+1
-1
lines changed
  • capitulos/code/04-text-byte/charfinder

1 file changed

+1
-1
lines changed

capitulos/code/04-text-byte/charfinder/cf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import sys
33
import unicodedata
44

5-
START, END = ord(' '), sys.maxunicode + 1 # <1>
5+
START, END = ord(' '), sys.maxunicode + 1 # <1>
66

77
def find(*query_words, start=START, end=END): # <2>
88
query = {w.upper() for w in query_words} # <3>

0 commit comments

Comments
 (0)