Commit
·
86c823c
1
Parent(s):
091f68b
small fixes
Browse files
generate-qnn-vad-asr-simulated-streaming.py
CHANGED
|
@@ -33,7 +33,7 @@ class APK:
|
|
| 33 |
|
| 34 |
def sort_by_apk(x):
|
| 35 |
x = APK(x)
|
| 36 |
-
return (x.major, x.minor, x.patch, x.seconds, x.lang, x.short_name)
|
| 37 |
|
| 38 |
|
| 39 |
def get_all_files(d_list: List[str], suffix: str) -> List[str]:
|
|
|
|
| 33 |
|
| 34 |
def sort_by_apk(x):
|
| 35 |
x = APK(x)
|
| 36 |
+
return (x.major, x.minor, x.patch, -x.seconds, x.lang, x.short_name)
|
| 37 |
|
| 38 |
|
| 39 |
def get_all_files(d_list: List[str], suffix: str) -> List[str]:
|