Browse Source

[aes] style: Put __all__ variable at the end of the file

Jaime Marquínez Ferrándiz 10 years ago
parent
commit
f36f92f4da
1 changed files with 2 additions and 2 deletions
  1. 2 2
      youtube_dl/aes.py

+ 2 - 2
youtube_dl/aes.py

@@ -1,7 +1,5 @@
 from __future__ import unicode_literals
 
-__all__ = ['aes_encrypt', 'key_expansion', 'aes_ctr_decrypt', 'aes_cbc_decrypt', 'aes_decrypt_text']
-
 import base64
 from math import ceil
 
@@ -329,3 +327,5 @@ def inc(data):
             data[i] = data[i] + 1
             break
     return data
+
+__all__ = ['aes_encrypt', 'key_expansion', 'aes_ctr_decrypt', 'aes_cbc_decrypt', 'aes_decrypt_text']