Skip to content

Commit 0f279c2

Browse files
Cosmetics
1 parent 136ba20 commit 0f279c2

File tree

1 file changed

+37
-13
lines changed

1 file changed

+37
-13
lines changed

lib/config.py

Lines changed: 37 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -20,25 +20,49 @@
2020

2121
WIDEVINE_DOWNLOAD_MAP = {
2222
'x86_64':
23-
{
24-
'Linux': 'Linux_x86_64-gcc3',
25-
'Windows': 'WINNT_x86-msvc',
26-
'Darwin': 'Darwin_x86_64-gcc3-u-i386-x86_64'},
23+
{
24+
'Linux': 'Linux_x86_64-gcc3',
25+
'Windows': 'WINNT_x86-msvc',
26+
'Darwin': 'Darwin_x86_64-gcc3-u-i386-x86_64'},
2727
'x86':
28-
{
29-
'Linux': 'Linux_x86-gcc3',
30-
'Windows': 'WINNT_x86-msvc',
31-
'Darwin': 'Darwin_x86_64-gcc3-u-i386-x86_64'
32-
}
28+
{
29+
'Linux': 'Linux_x86-gcc3',
30+
'Windows': 'WINNT_x86-msvc',
31+
'Darwin': 'Darwin_x86_64-gcc3-u-i386-x86_64'
32+
}
3333
}
3434

35-
WIDEVINE_CDM_EXTENSIONS = ('.so', '.dll', '.dylib')
35+
WIDEVINE_CDM_EXTENSIONS = (
36+
'.so',
37+
'.dll',
38+
'.dylib'
39+
)
3640

37-
WIDEVINE_SUPPORTED_ARCHS = ['x86_64', 'x86', 'aarch64', 'aarch64_be', 'armv7', 'armv8', 'arm64']
41+
WIDEVINE_SUPPORTED_ARCHS = [
42+
'x86_64',
43+
'x86',
44+
'aarch64',
45+
'aarch64_be',
46+
'armv7',
47+
'armv7l'
48+
'armv8',
49+
'arm64'
50+
]
3851

39-
WIDEVINE_SUPPORTED_OS = ['Linux', 'Windows', 'Darwin']
52+
WIDEVINE_SUPPORTED_OS = [
53+
'Linux',
54+
'Windows',
55+
'Darwin'
56+
]
4057

41-
WIDEVINE_DOWNLOAD_UNAVAILABLE = ['aarch64', 'aarch64_be', 'armv7', 'armv8', 'arm64']
58+
WIDEVINE_DOWNLOAD_UNAVAILABLE = [
59+
'aarch64',
60+
'aarch64_be',
61+
'armv7',
62+
'armv7l'
63+
'armv8',
64+
'arm64'
65+
]
4266

4367
WIDEVINE_ANDROID_MINIMUM_KODI_VERSION = '18.0'
4468

0 commit comments

Comments
 (0)