Skip to content
This repository has been archived by the owner on Jun 11, 2023. It is now read-only.

Commit

Permalink
Improve improt statements
Browse files Browse the repository at this point in the history
  • Loading branch information
xymy committed Mar 28, 2020
1 parent 0b900be commit daa320d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
8 changes: 3 additions & 5 deletions src/xycrypto/ciphers/Cryptography/__init__.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
from ._stream import ( # NOQA; isort:skip
from ._core_stream import ( # NOQA; isort:skip
ChaCha20, RC4
)
from ._block_AES import ( # NOQA; isort:skip
AES, AES_ECB, AES_CBC, AES_CFB, AES_OFB, AES_CTR
)
from ._block_TripleDES import ( # NOQA; isort:skip
from ._core_block import ( # NOQA; isort:skip
AES, AES_ECB, AES_CBC, AES_CFB, AES_OFB, AES_CTR,
TripleDES, TripleDES_ECB, TripleDES_CBC, TripleDES_CFB, TripleDES_OFB
)

Expand Down
1 change: 1 addition & 0 deletions src/xycrypto/ciphers/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from .Cryptography import * # NOQA

0 comments on commit daa320d

Please sign in to comment.