Commit
·
66e5f8e
1
Parent(s):
ba256cd
fix typos
Browse files
generate-speaker-diarization.py
CHANGED
@@ -36,7 +36,7 @@ class APK:
|
|
36 |
|
37 |
def sort_by_apk(x):
|
38 |
x = APK(x)
|
39 |
-
return (x.major, x.minor, x.patch, x.arch,
|
40 |
|
41 |
|
42 |
def get_all_files(d_list: List[str], suffix: str) -> List[str]:
|
|
|
36 |
|
37 |
def sort_by_apk(x):
|
38 |
x = APK(x)
|
39 |
+
return (x.major, x.minor, x.patch, x.arch, x.name)
|
40 |
|
41 |
|
42 |
def get_all_files(d_list: List[str], suffix: str) -> List[str]:
|