Skip to content

Commit

Permalink
Import threading
Browse files Browse the repository at this point in the history
  • Loading branch information
matt-fleming committed Jan 31, 2024
1 parent 1a01663 commit b7c5e18
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/databricks/sql/thrift_backend.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
from decimal import Decimal
import errno
import logging
import math
import os
import time
import uuid
import threading
from ssl import CERT_NONE, CERT_REQUIRED, create_default_context
from typing import List, Union

import pyarrow
import thrift.protocol.TBinaryProtocol
import thrift.transport.THttpClient
import thrift.protocol.TBinaryProtocol
import thrift.transport.TSocket
import thrift.transport.TTransport

Expand All @@ -21,6 +21,7 @@
from databricks.sql.auth.authenticators import AuthProvider
from databricks.sql.thrift_api.TCLIService import TCLIService, ttypes
from databricks.sql import *
from databricks.sql.exc import MaxRetryDurationError
from databricks.sql.thrift_api.TCLIService.TCLIService import (
Client as TCLIServiceClient,
)
Expand Down

0 comments on commit b7c5e18

Please sign in to comment.