Skip to content

Commit

Permalink
Fix more
Browse files Browse the repository at this point in the history
  • Loading branch information
alexv-smirnov committed Apr 5, 2024
1 parent 893d85d commit 8772f1b
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions ydb/iam/auth.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
from ydb import credentials, tracing
from ydb import credentials, tracing, issues
import grpc
import time
import abc
Expand All @@ -8,11 +8,14 @@
import os

try:
from yandex.cloud.iam.v1 import iam_token_service_pb2_grpc
from yandex.cloud.iam.v1 import iam_token_service_pb2
import jwt
except ImportError:
jwt = None

try:
from yandex.cloud.iam.v1 import iam_token_service_pb2_grpc
from yandex.cloud.iam.v1 import iam_token_service_pb2
except ImportError:
iam_token_service_pb2_grpc = None
iam_token_service_pb2 = None

Expand Down

0 comments on commit 8772f1b

Please sign in to comment.