summaryrefslogtreecommitdiffstats
path: root/sqlglot/__init__.py
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-01-31 05:44:41 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-01-31 05:44:41 +0000
commit376de8b6892deca7dc5d83035c047f1e13eb67ea (patch)
tree334a1753cd914294aa99128fac3fb59bf14dc10f /sqlglot/__init__.py
parentReleasing debian version 20.9.0-1. (diff)
downloadsqlglot-376de8b6892deca7dc5d83035c047f1e13eb67ea.tar.xz
sqlglot-376de8b6892deca7dc5d83035c047f1e13eb67ea.zip
Merging upstream version 20.11.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'sqlglot/__init__.py')
-rw-r--r--sqlglot/__init__.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/sqlglot/__init__.py b/sqlglot/__init__.py
index 6cf9949..d71c06d 100644
--- a/sqlglot/__init__.py
+++ b/sqlglot/__init__.py
@@ -87,13 +87,11 @@ def parse(
@t.overload
-def parse_one(sql: str, *, into: t.Type[E], **opts) -> E:
- ...
+def parse_one(sql: str, *, into: t.Type[E], **opts) -> E: ...
@t.overload
-def parse_one(sql: str, **opts) -> Expression:
- ...
+def parse_one(sql: str, **opts) -> Expression: ...
def parse_one(