From 8ba166fc93f17e570c83460ec77303bcaf35cc58 Mon Sep 17 00:00:00 2001 From: Sam Bull Date: Tue, 16 Jun 2026 00:57:16 +0100 Subject: [PATCH] Explicit export --- src/__init__.py | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/__init__.py b/src/__init__.py index b5f46371..657b1693 100644 --- a/src/__init__.py +++ b/src/__init__.py @@ -51,3 +51,14 @@ def get_hook_dirs() -> List[str]: import os # pylint: disable=g-import-not-at-top return [os.path.dirname(__file__)] + +__all__ = ( + "Fuzz", + "FuzzedDataProvider", + "Mutate", + "Setup", + "enabled_hooks", + "instrument_all", + "instrument_func", + "instrument_imports", +)