Skip to content

Commit 93154b9

Browse files
committed
make fix
1 parent c254d32 commit 93154b9

30 files changed

+18
-57
lines changed

docs/examples/usage/usage_configuration_1.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
11
def test_sqlite_memory_db() -> None:
2-
__all__ = ("test_sqlite_memory_db", )
3-
4-
52
from sqlspec import SQLSpec
63
from sqlspec.adapters.sqlite import SqliteConfig
74

docs/examples/usage/usage_configuration_10.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
POOL_INSTANCE = 20
2-
__all__ = ("test_manual_pool", )
3-
2+
__all__ = ("test_manual_pool",)
43

54

65
def test_manual_pool() -> None:

docs/examples/usage/usage_configuration_11.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
11
def test_thread_local_connections() -> None:
2-
__all__ = ("test_thread_local_connections", )
3-
4-
52
from sqlspec.adapters.sqlite import SqliteConfig
63

74
config = SqliteConfig(pool_config={"database": "test.db"})

docs/examples/usage/usage_configuration_12.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
11
def test_basic_statement_config() -> None:
2-
__all__ = ("test_basic_statement_config", )
3-
4-
52
import os
63

74
from sqlspec import StatementConfig

docs/examples/usage/usage_configuration_13.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
11
def test_parameter_style_config() -> None:
2-
__all__ = ("test_parameter_style_config", )
3-
4-
52
from sqlspec import ParameterStyle, ParameterStyleConfig, StatementConfig
63

74
param_config = ParameterStyleConfig(

docs/examples/usage/usage_configuration_14.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
11
def test_parameter_styles() -> None:
2-
__all__ = ("test_parameter_styles", )
3-
4-
52
from sqlspec import ParameterStyle
63

74
# Question mark (SQLite, DuckDB)

docs/examples/usage/usage_configuration_15.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Test configuration example: Global cache configuration."""
22

3-
__all__ = ("test_global_cache_config", )
3+
__all__ = ("test_global_cache_config",)
44

55

66
SQL_CACHE_SIZE = 1000

docs/examples/usage/usage_configuration_16.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Test configuration example: Per-instance cache configuration."""
22

3-
__all__ = ("test_per_instance_cache_config", )
3+
__all__ = ("test_per_instance_cache_config",)
44

55

66
def test_per_instance_cache_config() -> None:

docs/examples/usage/usage_configuration_17.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Test configuration example: Cache statistics tracking."""
22

3-
__all__ = ("test_cache_statistics", )
3+
__all__ = ("test_cache_statistics",)
44

55

66
def test_cache_statistics() -> None:

docs/examples/usage/usage_configuration_18.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Test configuration example: Cache clearing operations."""
22

3-
__all__ = ("test_clear_cache", )
3+
__all__ = ("test_clear_cache",)
44

55

66
def test_clear_cache() -> None:

0 commit comments

Comments
 (0)