Skip to content

Commit 05a1b8f

Browse files
committed
Revert "ruff"
This reverts commit 4629000.
1 parent 4629000 commit 05a1b8f

30 files changed

+4
-78
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: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
POOL_INSTANCE = 20
2-
__all__ = ("test_manual_pool", )
3-
42

53

64
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: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
"""Test configuration example: Global cache configuration."""
22

3-
__all__ = ("test_global_cache_config", )
4-
5-
63
SQL_CACHE_SIZE = 1000
74

85

docs/examples/usage/usage_configuration_16.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
"""Test configuration example: Per-instance cache configuration."""
22

3-
__all__ = ("test_per_instance_cache_config", )
4-
53

64
def test_per_instance_cache_config() -> None:
75
"""Test per-instance cache configuration."""

docs/examples/usage/usage_configuration_17.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
"""Test configuration example: Cache statistics tracking."""
22

3-
__all__ = ("test_cache_statistics", )
4-
53

64
def test_cache_statistics() -> None:
75
"""Test cache statistics tracking."""

docs/examples/usage/usage_configuration_18.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
"""Test configuration example: Cache clearing operations."""
22

3-
__all__ = ("test_clear_cache", )
4-
53

64
def test_clear_cache() -> None:
75
"""Test cache clearing operations."""

0 commit comments

Comments
 (0)