Skip to content

Commit

Permalink
add -> Connection annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
wyattscarpenter committed Mar 30, 2024
1 parent 221d8b1 commit 5eedb1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/databricks/sql/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def TimestampFromTicks(ticks):
return Timestamp(*time.localtime(ticks)[:6])


def connect(server_hostname, http_path, access_token=None, **kwargs):
def connect(server_hostname, http_path, access_token=None, **kwargs) -> "Connection":
from .client import Connection

return Connection(server_hostname, http_path, access_token, **kwargs)

0 comments on commit 5eedb1c

Please sign in to comment.