Skip to content

Commit 97e2bea

Browse files
committed
fix: Format line to comply with Black 88-char limit
1 parent 37d1162 commit 97e2bea

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/databricks/sql/telemetry/telemetry_client.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,9 @@ def __init__(
192192

193193
# OPTIMIZATION: Use lock-free Queue instead of list + lock
194194
# Queue is thread-safe internally and has better performance under concurrency
195-
self._events_queue: Queue[TelemetryFrontendLog] = Queue(maxsize=batch_size * 2) # Allow some buffering
195+
self._events_queue: Queue[TelemetryFrontendLog] = Queue(
196+
maxsize=batch_size * 2
197+
)
196198

197199
self._driver_connection_params = None
198200
self._host_url = host_url

0 commit comments

Comments
 (0)