csukuangfj
commited on
Commit
•
30f9416
1
Parent(s):
6641555
small fixes
Browse files- generate-tts.py +1 -1
generate-tts.py
CHANGED
@@ -16,7 +16,7 @@ def generate_url(files: List[str]) -> List[str]:
|
|
16 |
|
17 |
|
18 |
def get_all_files(d: str, suffix: str) -> List[str]:
|
19 |
-
ans = sorted(Path(d).glob(suffix), reverse=
|
20 |
return list(map(lambda x: BASE_URL + str(x), ans))
|
21 |
|
22 |
|
|
|
16 |
|
17 |
|
18 |
def get_all_files(d: str, suffix: str) -> List[str]:
|
19 |
+
ans = sorted(Path(d).glob(suffix), reverse=True)
|
20 |
return list(map(lambda x: BASE_URL + str(x), ans))
|
21 |
|
22 |
|