Skip to content

Commit 549dcc9

Browse files
committed
revert formatting
1 parent 97fa40f commit 549dcc9

File tree

1 file changed

+2
-4
lines changed
  • pydantic_ai_slim/pydantic_ai/providers

1 file changed

+2
-4
lines changed

pydantic_ai_slim/pydantic_ai/providers/google.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,11 @@ class GoogleProvider(Provider[Client]):
2828

2929
@property
3030
def name(self) -> str:
31-
# type: ignore[reportPrivateUsage]
32-
return 'google-vertex' if self._client._api_client.vertexai else 'google-gla'
31+
return 'google-vertex' if self._client._api_client.vertexai else 'google-gla' # type: ignore[reportPrivateUsage]
3332

3433
@property
3534
def base_url(self) -> str:
36-
# type: ignore[reportPrivateUsage]
37-
return str(self._client._api_client._http_options.base_url)
35+
return str(self._client._api_client._http_options.base_url) # type: ignore[reportPrivateUsage]
3836

3937
@property
4038
def client(self) -> Client:

0 commit comments

Comments
 (0)