-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2,433 changed files
with
78,983 additions
and
76,397 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,14 @@ | ||
from typing import Any | ||
from typing import Any, Sequence, Union | ||
|
||
from google.protobuf.message import Message | ||
|
||
class ResourceName: | ||
@classmethod | ||
def format_composite(cls, *arg: str) -> str: ... | ||
|
||
def get_nested_attr(obj: Any, attr: str, *args: Any) -> Any: ... | ||
def set_nested_message_field( | ||
message: Message, field_path: Union[str, Sequence[str]], value: Any | ||
) -> None: ... | ||
def convert_upper_case_to_snake_case(string: str) -> str: ... | ||
def convert_snake_case_to_upper_case(string: str) -> str: ... |
Oops, something went wrong.