about summary refs log tree commit diff
diff options
context:
space:
mode:
authordirkf <fieldhouse@gmx.net>2022-08-08 08:26:44 +0100
committerGitHub <noreply@github.com>2022-08-08 08:26:44 +0100
commite679476ea0ce3d54e78a1960ce5ce5c0be8c7d77 (patch)
treef9b7a6ada0e1bc97842e1a4d99b020e3ca2a3bf4
parent28194bd327fbdfd477a9a7692fe173c2dee3d19c (diff)
downloadyoutube-dl-e679476ea0ce3d54e78a1960ce5ce5c0be8c7d77.tar.gz
youtube-dl-e679476ea0ce3d54e78a1960ce5ce5c0be8c7d77.tar.xz
youtube-dl-e679476ea0ce3d54e78a1960ce5ce5c0be8c7d77.zip
[aes] Linter
-rw-r--r--youtube_dl/aes.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/aes.py b/youtube_dl/aes.py
index 461bb6d41..d0de2d93f 100644
--- a/youtube_dl/aes.py
+++ b/youtube_dl/aes.py
@@ -303,7 +303,7 @@ def xor(data1, data2):
 
 
 def rijndael_mul(a, b):
-    if(a == 0 or b == 0):
+    if (a == 0 or b == 0):
         return 0
     return RIJNDAEL_EXP_TABLE[(RIJNDAEL_LOG_TABLE[a] + RIJNDAEL_LOG_TABLE[b]) % 0xFF]