Spaces:
Runtime error
Runtime error
Update convert.py
Browse files- convert.py +1 -1
convert.py
CHANGED
|
@@ -3,7 +3,7 @@ import numpy as np
|
|
| 3 |
import torch
|
| 4 |
|
| 5 |
|
| 6 |
-
def convert_to_braille_unicode(str_input: str, path: str = "./
|
| 7 |
with open(path, "r") as fl:
|
| 8 |
data = json.load(fl)
|
| 9 |
|
|
|
|
| 3 |
import torch
|
| 4 |
|
| 5 |
|
| 6 |
+
def convert_to_braille_unicode(str_input: str, path: str = "./alpha_map.json") -> str:
|
| 7 |
with open(path, "r") as fl:
|
| 8 |
data = json.load(fl)
|
| 9 |
|