Skip to content

Commit 624ef65

Browse files
committed
small linting fixes
1 parent a8c7a77 commit 624ef65

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

python/tests/integration/test_kyuubi.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44

55
from __future__ import annotations
66

7-
import ast
8-
import json
97
import logging
108
from typing import cast
119

10+
# import ast
11+
# import json
1212
import jubilant
1313
import psycopg2
1414
import pytest
@@ -70,8 +70,9 @@ def test_jdbc_endpoint(juju: jubilant.Juju) -> None:
7070
self_signed_certificate_unit = next(iter(status.apps["certificates"].units.keys()))
7171
task = juju.run(self_signed_certificate_unit, "get-issued-certificates")
7272
assert task.return_code == 0
73-
items = ast.literal_eval(task.results["certificates"])
74-
certificates = json.loads(items[0])
73+
74+
# items = ast.literal_eval(task.results["certificates"])
75+
# certificates = json.loads(items[0])
7576
# ca_cert = certificates["ca"]
7677

7778
client = KyuubiClient(

0 commit comments

Comments
 (0)