From b245449d06ea111cf3d78c9c12eaf6a46c07aa2b Mon Sep 17 00:00:00 2001 From: Malfurious Date: Sat, 4 Sep 2021 21:30:16 -0400 Subject: 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 Signed-off-by: dusoleil --- tools/sploit/sploit/__init__.py | 10 ++++++++-- 1 file 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, +) -- cgit v1.2.3