Skip to content

Commit 76a74d5

Browse files
committed
formatting
Signed-off-by: Sai Shree Pradhan <[email protected]>
1 parent 1e5f2eb commit 76a74d5

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/code-quality-checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
# run test suite
6262
#----------------------------------------------
6363
- name: Run tests
64-
run: poetry run python -m pytest tests/unit
64+
run: poetry run python -m pytest tests/unit -v -s
6565
run-unit-tests-with-arrow:
6666
runs-on: ubuntu-latest
6767
strategy:

src/databricks/sql/client.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,9 @@ def cursor(
440440

441441
def close(self) -> None:
442442
"""Close the underlying session and mark all associated cursors as closed."""
443-
print("Connection close: session_id_hex: ", self.get_session_id_hex(), flush=True)
443+
print(
444+
"Connection close: session_id_hex: ", self.get_session_id_hex(), flush=True
445+
)
444446
self._close()
445447

446448
def _close(self, close_cursors=True) -> None:

0 commit comments

Comments
 (0)