Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -14,7 +14,7 @@ import matplotlib.pyplot as plt
|
|
| 14 |
import math
|
| 15 |
from datetime import datetime
|
| 16 |
# --------- Globals --------- #
|
| 17 |
-
CHARS = string.
|
| 18 |
CHAR2IDX = {c: i + 1 for i, c in enumerate(CHARS)}
|
| 19 |
CHAR2IDX["<BLANK>"] = 0
|
| 20 |
BLANK_IDX = 0
|
|
|
|
| 14 |
import math
|
| 15 |
from datetime import datetime
|
| 16 |
# --------- Globals --------- #
|
| 17 |
+
CHARS = string.ascii_letters + string.digits + string.punctuation
|
| 18 |
CHAR2IDX = {c: i + 1 for i, c in enumerate(CHARS)}
|
| 19 |
CHAR2IDX["<BLANK>"] = 0
|
| 20 |
BLANK_IDX = 0
|