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 | 0c6eaea044c07c1bbe23f6b34bdf375c59966192 (patch) | |
tree | d5d0c9fbff1e6cc26dc12398b705f0a2fab67ea1 | |
parent | 5e07a6fef39ac10d67aa42cca5ae58186a7e1516 (diff) | |
download | sploit-0c6eaea044c07c1bbe23f6b34bdf375c59966192.tar.gz sploit-0c6eaea044c07c1bbe23f6b34bdf375c59966192.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-- | sploit/__init__.py | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/sploit/__init__.py b/sploit/__init__.py index 7180910..9e637df 100644 --- a/sploit/__init__.py +++ b/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, +) |