Skip to content

Commit a7b56de

Browse files
committed
refactor(credentials): remove unnecessary import check for coverage
1 parent 69e431f commit a7b56de

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

packages/toolbox-adk/src/toolbox_adk/credentials.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,7 @@
1616
from typing import Any, Optional, List, Dict
1717
from enum import Enum
1818

19-
try:
20-
from google.auth import credentials as google_creds
21-
except ImportError:
22-
google_creds = None # pragma: no cover
19+
from google.auth import credentials as google_creds
2320

2421

2522
class CredentialType(Enum):

0 commit comments

Comments
 (0)