Merge pull request #338 from tatsuya4559/fix/remove_freeze

Removed freeze from __all__ listing
This commit is contained in:
Friedrich Lindenberg 2020-08-30 11:33:05 +02:00 committed by GitHub
commit c8b94131e3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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"