1from typing import Dict, Union
2
3from github.GithubObject import _NotSetType
4
5class InputFileContent:
6    def __init__(
7        self, content: str, new_name: Union[str, _NotSetType] = ...
8    ) -> None: ...
9    @property
10    def _identity(self) -> Dict[str, str]: ...
11