diff options
author | Malfurious <m@lfurio.us> | 2021-09-04 21:30:16 -0400 |
---|---|---|
committer | Malfurious <m@lfurio.us> | 2021-09-07 23:02:19 -0400 |
commit | b245449d06ea111cf3d78c9c12eaf6a46c07aa2b (patch) | |
tree | eadb9438ed668cd307ce07d11d093d0843025d2d | |
parent | 66acac774b52856a9d15bd8a12e6a55a60209667 (diff) | |
download | lib-des-gnux-b245449d06ea111cf3d78c9c12eaf6a46c07aa2b.tar.gz lib-des-gnux-b245449d06ea111cf3d78c9c12eaf6a46c07aa2b.zip |
sploit: Clean main import file
The import list is alphabetized and listed one per line, to prevent this
from becoming unwieldy as more modules are introduced.
__all__ has been shown to be redundant, given that explicit imports are
now done, so it is removed.
Signed-off-by: Malfurious <m@lfurio.us>
Signed-off-by: dusoleil <howcansocksbereal@gmail.com>
-rw-r--r-- | tools/sploit/sploit/__init__.py | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/tools/sploit/sploit/__init__.py b/tools/sploit/sploit/__init__.py index 7180910..9e637df 100644 --- a/tools/sploit/sploit/__init__.py +++ b/tools/sploit/sploit/__init__.py @@ -1,2 +1,8 @@ -__all__ = ["log","comm","until","arch","mem","payload"] -from sploit import log, comm, until, arch, mem, payload +from sploit import ( + arch, + comm, + log, + mem, + payload, + until, +) |