Skip to content

Commit 694761d

Browse files
authored
feat: remove __all__ imports for utils
Removes the `__all__` dunder from `utils` to prevent optional import leakage when running the build process.
1 parent f6f0a75 commit 694761d

File tree

1 file changed

+0
-26
lines changed

1 file changed

+0
-26
lines changed

sqlspec/utils/__init__.py

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -5,29 +5,3 @@
55
portal pattern for async bridging, singleton patterns, sync/async conversion,
66
text processing, and type guards.
77
"""
8-
9-
from sqlspec.utils import (
10-
config_discovery,
11-
deprecation,
12-
fixtures,
13-
logging,
14-
module_loader,
15-
portal,
16-
singleton,
17-
sync_tools,
18-
text,
19-
type_guards,
20-
)
21-
22-
__all__ = (
23-
"config_discovery",
24-
"deprecation",
25-
"fixtures",
26-
"logging",
27-
"module_loader",
28-
"portal",
29-
"singleton",
30-
"sync_tools",
31-
"text",
32-
"type_guards",
33-
)

0 commit comments

Comments
 (0)