From 5d6a8407408b26df4ddea72259ef140fbca15c86 Mon Sep 17 00:00:00 2001 From: tatsuya4559 Date: Sun, 30 Aug 2020 08:40:02 +0900 Subject: [PATCH] removed freeze from __all__ listing. --- dataset/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dataset/__init__.py b/dataset/__init__.py index 75fbc7c..d1a0b40 100644 --- a/dataset/__init__.py +++ b/dataset/__init__.py @@ -10,7 +10,7 @@ warnings.filterwarnings( "ignore", "Skipping unsupported ALTER for creation of implicit constraint" ) -__all__ = ["Database", "Table", "freeze", "connect"] +__all__ = ["Database", "Table", "connect"] __version__ = "1.3.2"