Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1957,13 +1957,13 @@ replacements:
def __init__(
self,
*,
transport: Union[str, GrafeasTransport] = None,
transport: Optional[Union[str, GrafeasTransport]] = None,
credentials: Optional[ga_credentials.Credentials] = None,
) -> None:
"""Instantiate the grafeas client.

Args:
transport (Union[str, ~.GrafeasTransport]): The
transport (Optional[Union[str, ~.GrafeasTransport]]): The
transport to use.
credentials (Optional[google.auth.credentials.Credentials]): The
authorization credentials to attach to requests. These
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -359,13 +359,13 @@ def parse_common_location_path(path: str) -> Dict[str, str]:
def __init__(
self,
*,
transport: Union[str, GrafeasTransport] = None,
transport: Optional[Union[str, GrafeasTransport]] = None,
credentials: Optional[ga_credentials.Credentials] = None,
) -> None:
"""Instantiate the grafeas client.

Args:
transport (Union[str, ~.GrafeasTransport]): The
transport (Optional[Union[str, ~.GrafeasTransport]]): The
transport to use.
credentials (Optional[google.auth.credentials.Credentials]): The
authorization credentials to attach to requests. These
Expand Down
Loading