Skip to content

Commit 1e6bf8f

Browse files
author
unknown
committed
Support {
1 parent 946fe34 commit 1e6bf8f

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

braillove-case-collector/converter.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,10 @@ def main():
1111
output_num += str(pattern.index(inp[i]))
1212
output_braille += braille[pattern.index(inp[i])]
1313
else:
14-
if inp[i] == "@":
14+
if inp[i] == "{":
15+
output_num += "42"
16+
output_braille += braille[42]
17+
elif inp[i] == "@":
1518
output_num += "8"
1619
output_braille += braille[8]
1720
elif inp[i] == "|":

0 commit comments

Comments
 (0)