From a8d9f8948d56d2f5bfd4544d6936d37dd8aa009e Mon Sep 17 00:00:00 2001 From: Nicholas Cilfone <23509131+ncilfone@users.noreply.github.com> Date: Tue, 17 Jan 2023 15:51:30 -0500 Subject: [PATCH] added helper function to convert spockspaces to dict that is outside of the SpockBulder object --- spock/__init__.pyi | 2 ++ 1 file changed, 2 insertions(+) diff --git a/spock/__init__.pyi b/spock/__init__.pyi index 9cdeb896..9c34c33f 100644 --- a/spock/__init__.pyi +++ b/spock/__init__.pyi @@ -23,9 +23,11 @@ __all__ = [ "config", "directory", "file", + "helpers", "SavePath", "spock", "SpockBuilder", + "utils", ] _T = TypeVar("_T")