From bffc511e4ecf2c3f1b93af1986c69d8a5ff56684 Mon Sep 17 00:00:00 2001 From: zlq500 Date: Sun, 15 Feb 2026 23:59:09 +0800 Subject: [PATCH] fix: Add missing imports to subbrute/__init__.py Fix ImportError: cannot import name 'subbrute' from 'subbrute' by adding export of subbrute module contents in __init__.py Fixes aboul3la/Sublist3r#388 --- subbrute/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/subbrute/__init__.py b/subbrute/__init__.py index e69de29..b6a2461 100644 --- a/subbrute/__init__.py +++ b/subbrute/__init__.py @@ -0,0 +1,2 @@ +# Fix ImportError by exporting subbrute module contents +from .subbrute import *