Skip to content

Commit 069e792

Browse files
authored
Fixed wrong alphabet
1 parent f1b32e3 commit 069e792

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cyaron/consts.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515

1616
ALPHABET_SMALL = string.ascii_lowercase
1717
ALPHABET_CAPITAL = string.ascii_uppercase
18-
ALPHABET = string.ascii_uppercase
18+
ALPHABET = ALPHABET_SMALL + ALPHABET_CAPITAL
1919
NUMBERS = string.digits
2020
SENTENCE_SEPARATORS = ',,,,,,,;;:' # 70% ',' 20% ';' 10% ':'
2121
SENTENCE_TERMINATORS = '....!' # 80% '.' 20% '!'
2222

23-
DEFAULT_GRADER = "NOIPStyle"
23+
DEFAULT_GRADER = "NOIPStyle"

0 commit comments

Comments
 (0)