We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6bde919 commit f199fc4Copy full SHA for f199fc4
tests/dialects/test_dialect.py
@@ -28,9 +28,9 @@ def assert_duckdb_sql(
28
self,
29
expression: exp.Expression,
30
*,
31
- includes: t.Iterable[str] | None = None,
32
- excludes: t.Iterable[str] | None = None,
33
- chr_chars: t.Iterable[str] | None = None,
+ includes: t.Optional[t.Iterable[str]] = None,
+ excludes: t.Optional[t.Iterable[str]] = None,
+ chr_chars: t.Optional[t.Iterable[str]] = None,
34
) -> str:
35
duckdb_sql = expression.sql("duckdb")
36
0 commit comments