From 0c6eaea044c07c1bbe23f6b34bdf375c59966192 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 --- sploit/__init__.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'sploit/__init__.py') 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, +) -- cgit v1.2.3