diff --git a/githubkit/compat.py b/githubkit/compat.py index 380598c18..4b10f553e 100644 --- a/githubkit/compat.py +++ b/githubkit/compat.py @@ -18,13 +18,11 @@ if TYPE_CHECKING: class ModelBeforeValidator(Protocol): - def __call__(self, cls: Any, __value: Any) -> Any: - ... + def __call__(self, cls: Any, values: Any) -> Any: ... class CustomValidationClass(Protocol): @classmethod - def __get_validators__(cls) -> Generator[Callable[..., Any], None, None]: - ... + def __get_validators__(cls) -> Generator[Callable[..., Any], None, None]: ... CVC = TypeVar("CVC", bound=CustomValidationClass) diff --git a/githubkit/core.py b/githubkit/core.py index a1cd208ff..4dfeadac4 100644 --- a/githubkit/core.py +++ b/githubkit/core.py @@ -10,6 +10,7 @@ Type, Union, Generic, + Literal, TypeVar, Optional, Generator, @@ -22,6 +23,7 @@ import httpx import hishel +from .utils import UNSET from .response import Response from .compat import to_jsonable_python from .config import Config, get_config @@ -56,8 +58,7 @@ def __init__( auth: None = None, *, config: Config, - ): - ... + ): ... # token auth with config @overload @@ -66,8 +67,7 @@ def __init__( auth: str, *, config: Config, - ): - ... + ): ... # other auth strategies with config @overload @@ -76,8 +76,7 @@ def __init__( auth: A, *, config: Config, - ): - ... + ): ... # none auth without config @overload @@ -93,8 +92,7 @@ def __init__( timeout: Optional[Union[float, httpx.Timeout]] = None, http_cache: bool = True, auto_retry: Union[bool, RetryDecisionFunc] = True, - ): - ... + ): ... # token auth without config @overload @@ -110,8 +108,7 @@ def __init__( timeout: Optional[Union[float, httpx.Timeout]] = None, http_cache: bool = True, auto_retry: Union[bool, RetryDecisionFunc] = True, - ): - ... + ): ... # other auth strategies without config @overload @@ -127,8 +124,7 @@ def __init__( timeout: Optional[Union[float, httpx.Timeout]] = None, http_cache: bool = True, auto_retry: Union[bool, RetryDecisionFunc] = True, - ): - ... + ): ... def __init__( self, @@ -323,12 +319,28 @@ async def _arequest( raise RequestError(repr(e)) from e # check and parse response + @overload + def _check( + self, + response: httpx.Response, + response_model: Type[T], + error_models: Optional[Dict[str, type]] = None, + ) -> Response[T]: ... + + @overload + def _check( + self, + response: httpx.Response, + response_model: Literal[UNSET] = UNSET, + error_models: Optional[Dict[str, type]] = None, + ) -> Response[Any]: ... + def _check( self, response: httpx.Response, - response_model: Type[T] = Any, + response_model: Union[Type[T], Literal[UNSET]] = UNSET, error_models: Optional[Dict[str, type]] = None, - ) -> Response[T]: + ) -> Union[Response[T], Response[Any]]: if response.is_error: error_models = error_models or {} status_code = str(response.status_code) @@ -336,12 +348,14 @@ def _check( error_model = error_models.get( status_code, error_models.get( - f"{status_code[:-2]}XX", error_models.get("default", Any) + f"{status_code[:-2]}XX", error_models.get("default", UNSET) ), ) - resp = Response(response, error_model) + resp = Response(response, Any if error_model is UNSET else error_model) else: - resp = Response(response, response_model) + resp = Response( + response, Any if response_model is UNSET else response_model + ) # only check rate limit when response is 403 or 429 if response.status_code in (403, 429): @@ -401,6 +415,7 @@ def _extract_retry_after(self, response: Response) -> timedelta: return timedelta(seconds=60) # sync request and check + @overload def request( self, method: str, @@ -413,9 +428,42 @@ def request( json: Optional[Any] = None, headers: Optional[HeaderTypes] = None, cookies: Optional[CookieTypes] = None, - response_model: Type[T] = Any, + response_model: Type[T], error_models: Optional[Dict[str, type]] = None, - ) -> Response[T]: + ) -> Response[T]: ... + + @overload + def request( + self, + method: str, + url: URLTypes, + *, + params: Optional[QueryParamTypes] = None, + content: Optional[ContentTypes] = None, + data: Optional[dict] = None, + files: Optional[RequestFiles] = None, + json: Optional[Any] = None, + headers: Optional[HeaderTypes] = None, + cookies: Optional[CookieTypes] = None, + response_model: Literal[UNSET] = UNSET, + error_models: Optional[Dict[str, type]] = None, + ) -> Response[Any]: ... + + def request( + self, + method: str, + url: URLTypes, + *, + params: Optional[QueryParamTypes] = None, + content: Optional[ContentTypes] = None, + data: Optional[dict] = None, + files: Optional[RequestFiles] = None, + json: Optional[Any] = None, + headers: Optional[HeaderTypes] = None, + cookies: Optional[CookieTypes] = None, + response_model: Union[Type[T], Literal[UNSET]] = UNSET, + error_models: Optional[Dict[str, type]] = None, + ) -> Union[Response[T], Response[Any]]: retry_count: int = 0 while True: try: @@ -444,6 +492,40 @@ def request( retry_count += 1 # async request and check + @overload + async def arequest( + self, + method: str, + url: URLTypes, + *, + params: Optional[QueryParamTypes] = None, + content: Optional[ContentTypes] = None, + data: Optional[dict] = None, + files: Optional[RequestFiles] = None, + json: Optional[Any] = None, + headers: Optional[HeaderTypes] = None, + cookies: Optional[CookieTypes] = None, + response_model: Type[T], + error_models: Optional[Dict[str, type]] = None, + ) -> Response[T]: ... + + @overload + async def arequest( + self, + method: str, + url: URLTypes, + *, + params: Optional[QueryParamTypes] = None, + content: Optional[ContentTypes] = None, + data: Optional[dict] = None, + files: Optional[RequestFiles] = None, + json: Optional[Any] = None, + headers: Optional[HeaderTypes] = None, + cookies: Optional[CookieTypes] = None, + response_model: Literal[UNSET] = UNSET, + error_models: Optional[Dict[str, type]] = None, + ) -> Response[Any]: ... + async def arequest( self, method: str, @@ -456,9 +538,9 @@ async def arequest( json: Optional[Any] = None, headers: Optional[HeaderTypes] = None, cookies: Optional[CookieTypes] = None, - response_model: Type[T] = Any, + response_model: Union[Type[T], Literal[UNSET]] = UNSET, error_models: Optional[Dict[str, type]] = None, - ) -> Response[T]: + ) -> Union[Response[T], Response[Any]]: retry_count: int = 0 while True: try: diff --git a/githubkit/exception.py b/githubkit/exception.py index d9f92c9fc..b1ee2d48c 100644 --- a/githubkit/exception.py +++ b/githubkit/exception.py @@ -8,8 +8,7 @@ from .graphql import GraphQLResponse -class GitHubException(Exception): - ... +class GitHubException(Exception): ... class AuthCredentialError(GitHubException): diff --git a/githubkit/github.py b/githubkit/github.py index ae42ca1cd..207308361 100644 --- a/githubkit/github.py +++ b/githubkit/github.py @@ -50,8 +50,7 @@ def __init__( auth: None = None, *, config: Config, - ): - ... + ): ... # token auth with config @overload @@ -60,8 +59,7 @@ def __init__( auth: str, *, config: Config, - ): - ... + ): ... # other auth strategies with config @overload @@ -70,8 +68,7 @@ def __init__( auth: A, *, config: Config, - ): - ... + ): ... # none auth without config @overload @@ -87,8 +84,7 @@ def __init__( timeout: Optional[Union[float, httpx.Timeout]] = None, http_cache: bool = True, auto_retry: Union[bool, RetryDecisionFunc] = True, - ): - ... + ): ... # token auth without config @overload @@ -104,8 +100,7 @@ def __init__( timeout: Optional[Union[float, httpx.Timeout]] = None, http_cache: bool = True, auto_retry: Union[bool, RetryDecisionFunc] = True, - ): - ... + ): ... # other auth strategies without config @overload @@ -121,11 +116,9 @@ def __init__( timeout: Optional[Union[float, httpx.Timeout]] = None, http_cache: bool = True, auto_retry: Union[bool, RetryDecisionFunc] = True, - ): - ... + ): ... - def __init__(self, *args, **kwargs): - ... + def __init__(self, *args, **kwargs): ... # copy github instance with other auth def with_auth(self, auth: A_o) -> "GitHub[A_o]": @@ -163,44 +156,4 @@ async def async_graphql( ) # rest pagination - @overload - @staticmethod - def paginate( - request: R[CP, List[RT]], - page: int = 1, - per_page: int = 100, - map_func: None = None, - *args: CP.args, - **kwargs: CP.kwargs, - ) -> Paginator[RT]: - ... - - @overload - @staticmethod - def paginate( - request: R[CP, CT], - page: int = 1, - per_page: int = 100, - map_func: Callable[[Response[CT]], List[RT]] = ..., # type: ignore - *args: CP.args, - **kwargs: CP.kwargs, - ) -> Paginator[RT]: - ... - - @staticmethod - def paginate( - request: R[CP, CT], - page: int = 1, - per_page: int = 100, - map_func: Optional[Callable[[Response[CT]], List[RT]]] = None, - *args: CP.args, - **kwargs: CP.kwargs, - ) -> Paginator[RT]: - return Paginator( - request, - page, - per_page, - map_func, - *args, - **kwargs, # type: ignore - ) + paginate = Paginator diff --git a/githubkit/lazy_module.py b/githubkit/lazy_module.py index 408081a32..838f6530a 100644 --- a/githubkit/lazy_module.py +++ b/githubkit/lazy_module.py @@ -78,10 +78,13 @@ def create_module(self, spec: ModuleSpec) -> Optional[ModuleType]: module.__lazy_vars_mapping__ = {} return module - def exec_module(self, module: LazyModule) -> None: + def exec_module(self, module: ModuleType) -> None: super().exec_module(module) - if getattr(module, "__lazy_vars_validated__", None) is None: + if ( + isinstance(module, LazyModule) + and getattr(module, "__lazy_vars_validated__", None) is None + ): structure = getattr(module, "__lazy_vars__", None) if isinstance(structure, dict) and all( isinstance(key, str) and isinstance(value, (list, tuple, set)) diff --git a/githubkit/paginator.py b/githubkit/paginator.py index 23c1171e4..3e802b7eb 100644 --- a/githubkit/paginator.py +++ b/githubkit/paginator.py @@ -34,8 +34,7 @@ def __init__( map_func: None = None, *args: CP.args, **kwargs: CP.kwargs, - ): - ... + ): ... @overload def __init__( @@ -46,8 +45,7 @@ def __init__( map_func: Callable[[Response[CT]], List[RT]] = ..., *args: CP.args, **kwargs: CP.kwargs, - ): - ... + ): ... def __init__( self, diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0000.py b/githubkit/versions/ghec_v2022_11_28/models/group_0000.py index af5ba0f4a..f4b942313 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0000.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0000.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0001.py b/githubkit/versions/ghec_v2022_11_28/models/group_0001.py index 9b91e00f5..f328dde28 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0001.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0001.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0002.py b/githubkit/versions/ghec_v2022_11_28/models/group_0002.py index 4e3daf8bc..496517e26 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0002.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0002.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0003.py b/githubkit/versions/ghec_v2022_11_28/models/group_0003.py index 71d27b404..149873db5 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0003.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0003.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0004.py b/githubkit/versions/ghec_v2022_11_28/models/group_0004.py index 49ae0eafd..7df9e36cc 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0004.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0004.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0005.py b/githubkit/versions/ghec_v2022_11_28/models/group_0005.py index 25db849a5..05d6a38e5 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0005.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0005.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0006.py b/githubkit/versions/ghec_v2022_11_28/models/group_0006.py index a9ea7812e..11beacd57 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0006.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0006.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0007.py b/githubkit/versions/ghec_v2022_11_28/models/group_0007.py index 14665de9c..fd779f7ff 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0007.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0007.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0008.py b/githubkit/versions/ghec_v2022_11_28/models/group_0008.py index f8d61d80d..46a040e46 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0008.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0008.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0009.py b/githubkit/versions/ghec_v2022_11_28/models/group_0009.py index d0fdb3f79..da977efaa 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0009.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0009.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0010.py b/githubkit/versions/ghec_v2022_11_28/models/group_0010.py index 3aa5d17b8..0e9b5b95b 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0010.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0010.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0011.py b/githubkit/versions/ghec_v2022_11_28/models/group_0011.py index 6bcc0d822..2971a7707 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0011.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0011.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0012.py b/githubkit/versions/ghec_v2022_11_28/models/group_0012.py index 0bbcddf97..5fc898085 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0012.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0012.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0013.py b/githubkit/versions/ghec_v2022_11_28/models/group_0013.py index e2c45b1ef..18bb77d78 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0013.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0013.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0014.py b/githubkit/versions/ghec_v2022_11_28/models/group_0014.py index fc11c591e..a52e43ec6 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0014.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0014.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal @@ -161,11 +160,11 @@ class AppPermissions(GitHubModel): default=UNSET, description="The level of permission to grant the access token for viewing and managing fine-grained personal access token requests to an organization.", ) - organization_personal_access_token_requests: Missing[ - Literal["read", "write"] - ] = Field( - default=UNSET, - description="The level of permission to grant the access token for viewing and managing fine-grained personal access tokens that have been approved by an organization.", + organization_personal_access_token_requests: Missing[Literal["read", "write"]] = ( + Field( + default=UNSET, + description="The level of permission to grant the access token for viewing and managing fine-grained personal access tokens that have been approved by an organization.", + ) ) organization_plan: Missing[Literal["read"]] = Field( default=UNSET, diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0015.py b/githubkit/versions/ghec_v2022_11_28/models/group_0015.py index 36627e183..3f03da45d 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0015.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0015.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0016.py b/githubkit/versions/ghec_v2022_11_28/models/group_0016.py index 6a1b1ffbb..cde4cf931 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0016.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0016.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0017.py b/githubkit/versions/ghec_v2022_11_28/models/group_0017.py index 7cd4b26bf..d4e1cd8bd 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0017.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0017.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -148,11 +147,11 @@ class Repository(GitHubModel): default=UNSET, description="Whether a squash merge commit can use the pull request title as default. **This property has been deprecated. Please use `squash_merge_commit_title` instead.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) squash_merge_commit_message: Missing[ Literal["PR_BODY", "COMMIT_MESSAGES", "BLANK"] diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0018.py b/githubkit/versions/ghec_v2022_11_28/models/group_0018.py index 4ea3882df..d0815277b 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0018.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0018.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0019.py b/githubkit/versions/ghec_v2022_11_28/models/group_0019.py index 813bd274a..3d62be535 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0019.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0019.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0020.py b/githubkit/versions/ghec_v2022_11_28/models/group_0020.py index ba9a4b3e1..1aca25526 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0020.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0020.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0021.py b/githubkit/versions/ghec_v2022_11_28/models/group_0021.py index 5f435597d..d3be8c786 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0021.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0021.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0022.py b/githubkit/versions/ghec_v2022_11_28/models/group_0022.py index a9d78a859..ab9d22e40 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0022.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0022.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0023.py b/githubkit/versions/ghec_v2022_11_28/models/group_0023.py index 1768f70e5..7cae710bd 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0023.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0023.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0024.py b/githubkit/versions/ghec_v2022_11_28/models/group_0024.py index 0ef4137f2..1612d3026 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0024.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0024.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0025.py b/githubkit/versions/ghec_v2022_11_28/models/group_0025.py index afe4cd8f9..52b0900bb 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0025.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0025.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0026.py b/githubkit/versions/ghec_v2022_11_28/models/group_0026.py index 653c2c624..0faeb8276 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0026.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0026.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0027.py b/githubkit/versions/ghec_v2022_11_28/models/group_0027.py index 9aae46c60..e13cb35c0 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0027.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0027.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0028.py b/githubkit/versions/ghec_v2022_11_28/models/group_0028.py index c6ab1a223..2ba998b23 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0028.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0028.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0029.py b/githubkit/versions/ghec_v2022_11_28/models/group_0029.py index a18e6b739..d86ab3170 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0029.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0029.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0030.py b/githubkit/versions/ghec_v2022_11_28/models/group_0030.py index 2ffda0e7e..127fbeac3 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0030.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0030.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0031.py b/githubkit/versions/ghec_v2022_11_28/models/group_0031.py index c1e6eecd4..0ec430210 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0031.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0031.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0032.py b/githubkit/versions/ghec_v2022_11_28/models/group_0032.py index a41ee96a0..8784bbb2a 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0032.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0032.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0033.py b/githubkit/versions/ghec_v2022_11_28/models/group_0033.py index 18cccd438..f7d1b8ea9 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0033.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0033.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0034.py b/githubkit/versions/ghec_v2022_11_28/models/group_0034.py index 7b6b81a67..bc9738f80 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0034.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0034.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0035.py b/githubkit/versions/ghec_v2022_11_28/models/group_0035.py index 3c3d62fac..59d2cb03a 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0035.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0035.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0036.py b/githubkit/versions/ghec_v2022_11_28/models/group_0036.py index b4acbdf44..0dedb86e7 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0036.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0036.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0037.py b/githubkit/versions/ghec_v2022_11_28/models/group_0037.py index 3e9f00472..83e0e2912 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0037.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0037.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0038.py b/githubkit/versions/ghec_v2022_11_28/models/group_0038.py index c8ed3884d..f7dafc62f 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0038.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0038.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0039.py b/githubkit/versions/ghec_v2022_11_28/models/group_0039.py index f1febb3bb..02dd0679a 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0039.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0039.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0040.py b/githubkit/versions/ghec_v2022_11_28/models/group_0040.py index 7ea4894b7..3187592df 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0040.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0040.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0041.py b/githubkit/versions/ghec_v2022_11_28/models/group_0041.py index c9183126b..99ef5d566 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0041.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0041.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0042.py b/githubkit/versions/ghec_v2022_11_28/models/group_0042.py index fe77ff783..5ad0792e6 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0042.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0042.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0043.py b/githubkit/versions/ghec_v2022_11_28/models/group_0043.py index b74343b14..f0cc1608d 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0043.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0043.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0044.py b/githubkit/versions/ghec_v2022_11_28/models/group_0044.py index c4dadbe50..4c99bbdb0 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0044.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0044.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -59,11 +58,11 @@ class CodeScanningOrganizationAlertItems(GitHubModel): ] = Field( description="**Required when the state is dismissed.** The reason for dismissing or closing the alert." ) - dismissed_comment: Missing[ - Union[Annotated[str, Field(max_length=280)], None] - ] = Field( - default=UNSET, - description="The dismissal comment associated with the dismissal of the alert.", + dismissed_comment: Missing[Union[Annotated[str, Field(max_length=280)], None]] = ( + Field( + default=UNSET, + description="The dismissal comment associated with the dismissal of the alert.", + ) ) rule: CodeScanningAlertRuleSummary = Field() tool: CodeScanningAnalysisTool = Field() diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0045.py b/githubkit/versions/ghec_v2022_11_28/models/group_0045.py index f05a12a3b..c5dd50389 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0045.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0045.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union @@ -25,11 +24,11 @@ class EnterpriseSecurityAnalysisSettings(GitHubModel): advanced_security_enabled_for_new_repositories: bool = Field( description="Whether GitHub advanced security is automatically enabled for new repositories and repositories transferred to\nthis enterprise." ) - advanced_security_enabled_for_new_user_namespace_repositories: Missing[ - bool - ] = Field( - default=UNSET, - description="Whether GitHub Advanced Security is automatically enabled for new user namespace repositories.", + advanced_security_enabled_for_new_user_namespace_repositories: Missing[bool] = ( + Field( + default=UNSET, + description="Whether GitHub Advanced Security is automatically enabled for new user namespace repositories.", + ) ) dependabot_alerts_enabled_for_new_repositories: bool = Field( description="Whether Dependabot alerts are automatically enabled for new repositories and repositories transferred to this\nenterprise." diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0046.py b/githubkit/versions/ghec_v2022_11_28/models/group_0046.py index d2c2eaa8f..85a0893cc 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0046.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0046.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0047.py b/githubkit/versions/ghec_v2022_11_28/models/group_0047.py index 9edee1429..ff820726e 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0047.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0047.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0048.py b/githubkit/versions/ghec_v2022_11_28/models/group_0048.py index 8343a79e9..f95b14abd 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0048.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0048.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0049.py b/githubkit/versions/ghec_v2022_11_28/models/group_0049.py index 98d920ac6..86ce64253 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0049.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0049.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0050.py b/githubkit/versions/ghec_v2022_11_28/models/group_0050.py index ef768adfa..5574feae2 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0050.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0050.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0051.py b/githubkit/versions/ghec_v2022_11_28/models/group_0051.py index f397057a7..2737ec17e 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0051.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0051.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0052.py b/githubkit/versions/ghec_v2022_11_28/models/group_0052.py index db1dcc732..9e091a2ba 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0052.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0052.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List @@ -25,9 +24,9 @@ class GetLicenseSyncStatus(GitHubModel): Information about the status of a license sync job for an enterprise. """ - server_instances: Missing[ - List[GetLicenseSyncStatusPropServerInstancesItems] - ] = Field(default=UNSET) + server_instances: Missing[List[GetLicenseSyncStatusPropServerInstancesItems]] = ( + Field(default=UNSET) + ) class GetLicenseSyncStatusPropServerInstancesItems(GitHubModel): @@ -35,9 +34,9 @@ class GetLicenseSyncStatusPropServerInstancesItems(GitHubModel): server_id: Missing[str] = Field(default=UNSET) hostname: Missing[str] = Field(default=UNSET) - last_sync: Missing[ - GetLicenseSyncStatusPropServerInstancesItemsPropLastSync - ] = Field(default=UNSET) + last_sync: Missing[GetLicenseSyncStatusPropServerInstancesItemsPropLastSync] = ( + Field(default=UNSET) + ) class GetLicenseSyncStatusPropServerInstancesItemsPropLastSync(GitHubModel): diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0053.py b/githubkit/versions/ghec_v2022_11_28/models/group_0053.py index 8016224b9..137d6fd68 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0053.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0053.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0054.py b/githubkit/versions/ghec_v2022_11_28/models/group_0054.py index 9052a7261..4be9aa73e 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0054.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0054.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0055.py b/githubkit/versions/ghec_v2022_11_28/models/group_0055.py index 1f8359293..6e93ec075 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0055.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0055.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0056.py b/githubkit/versions/ghec_v2022_11_28/models/group_0056.py index 98ef41819..b7be403af 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0056.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0056.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0057.py b/githubkit/versions/ghec_v2022_11_28/models/group_0057.py index 340cecbb4..7f2b2b444 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0057.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0057.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0058.py b/githubkit/versions/ghec_v2022_11_28/models/group_0058.py index d52ba5e23..d723b51dc 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0058.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0058.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0059.py b/githubkit/versions/ghec_v2022_11_28/models/group_0059.py index 0559e7be1..fd85f1373 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0059.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0059.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0060.py b/githubkit/versions/ghec_v2022_11_28/models/group_0060.py index 11e9be671..76b09ad38 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0060.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0060.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0061.py b/githubkit/versions/ghec_v2022_11_28/models/group_0061.py index 0b9aa7b1f..6c66d7e32 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0061.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0061.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0062.py b/githubkit/versions/ghec_v2022_11_28/models/group_0062.py index 570f30765..d262f8ad9 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0062.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0062.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0063.py b/githubkit/versions/ghec_v2022_11_28/models/group_0063.py index 86c0d9243..583006545 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0063.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0063.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0064.py b/githubkit/versions/ghec_v2022_11_28/models/group_0064.py index 998703cff..94caec0b4 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0064.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0064.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0065.py b/githubkit/versions/ghec_v2022_11_28/models/group_0065.py index 67f984119..df09f74a0 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0065.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0065.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0066.py b/githubkit/versions/ghec_v2022_11_28/models/group_0066.py index 90ccb5f6d..97bc95aa4 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0066.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0066.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0067.py b/githubkit/versions/ghec_v2022_11_28/models/group_0067.py index 8f90bcb4b..32e3658f4 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0067.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0067.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0068.py b/githubkit/versions/ghec_v2022_11_28/models/group_0068.py index 284f03c42..3fa53b8b7 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0068.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0068.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0069.py b/githubkit/versions/ghec_v2022_11_28/models/group_0069.py index 76af94eeb..68fca7a2b 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0069.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0069.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0070.py b/githubkit/versions/ghec_v2022_11_28/models/group_0070.py index 3fd2aa147..1922e917d 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0070.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0070.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0071.py b/githubkit/versions/ghec_v2022_11_28/models/group_0071.py index 68813b088..d49a37f42 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0071.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0071.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0072.py b/githubkit/versions/ghec_v2022_11_28/models/group_0072.py index 7611d338d..dfbf848a6 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0072.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0072.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0073.py b/githubkit/versions/ghec_v2022_11_28/models/group_0073.py index db94cf476..b44825a65 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0073.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0073.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0074.py b/githubkit/versions/ghec_v2022_11_28/models/group_0074.py index 5f92d6390..57f6dcc19 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0074.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0074.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0075.py b/githubkit/versions/ghec_v2022_11_28/models/group_0075.py index dfbb093b4..c6c18c42e 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0075.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0075.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0076.py b/githubkit/versions/ghec_v2022_11_28/models/group_0076.py index d9c16339d..2d67aabe1 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0076.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0076.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0077.py b/githubkit/versions/ghec_v2022_11_28/models/group_0077.py index fa3a24d6d..e707e74a3 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0077.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0077.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0078.py b/githubkit/versions/ghec_v2022_11_28/models/group_0078.py index f3bc225e5..c7f24dd2f 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0078.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0078.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0079.py b/githubkit/versions/ghec_v2022_11_28/models/group_0079.py index ad91b442b..3ca682bdb 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0079.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0079.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0080.py b/githubkit/versions/ghec_v2022_11_28/models/group_0080.py index 1d7362f9e..f8d2ce7bf 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0080.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0080.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0081.py b/githubkit/versions/ghec_v2022_11_28/models/group_0081.py index edf6967a1..cb271d715 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0081.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0081.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0082.py b/githubkit/versions/ghec_v2022_11_28/models/group_0082.py index d187005ca..c4eca12ed 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0082.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0082.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from githubkit.compat import GitHubModel, model_rebuild diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0083.py b/githubkit/versions/ghec_v2022_11_28/models/group_0083.py index 71935d026..b6ec716a4 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0083.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0083.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0084.py b/githubkit/versions/ghec_v2022_11_28/models/group_0084.py index a9c12ef99..b8d8694be 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0084.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0084.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0085.py b/githubkit/versions/ghec_v2022_11_28/models/group_0085.py index 6ca0056da..4fbdf9f60 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0085.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0085.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0086.py b/githubkit/versions/ghec_v2022_11_28/models/group_0086.py index 0b19bb103..b51cdc89c 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0086.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0086.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0087.py b/githubkit/versions/ghec_v2022_11_28/models/group_0087.py index 63c780af6..61840d31d 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0087.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0087.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0088.py b/githubkit/versions/ghec_v2022_11_28/models/group_0088.py index d8216d948..638c75792 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0088.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0088.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal @@ -30,10 +29,10 @@ class CopilotOrganizationDetails(ExtraGitHubModel): title="Copilot Business Seat Breakdown", description="The breakdown of Copilot Business seats for the organization.", ) - public_code_suggestions: Literal[ - "allow", "block", "unconfigured", "unknown" - ] = Field( - description="The organization policy for allowing or disallowing Copilot to make suggestions that match public code." + public_code_suggestions: Literal["allow", "block", "unconfigured", "unknown"] = ( + Field( + description="The organization policy for allowing or disallowing Copilot to make suggestions that match public code." + ) ) ide_chat: Missing[Literal["enabled", "disabled", "unconfigured"]] = Field( default=UNSET, diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0089.py b/githubkit/versions/ghec_v2022_11_28/models/group_0089.py index 13ce011fc..5a2cdf61e 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0089.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0089.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0090.py b/githubkit/versions/ghec_v2022_11_28/models/group_0090.py index ecc04ccc4..f7fef3084 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0090.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0090.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0091.py b/githubkit/versions/ghec_v2022_11_28/models/group_0091.py index e897574bb..383b9770f 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0091.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0091.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0092.py b/githubkit/versions/ghec_v2022_11_28/models/group_0092.py index 7714fd60a..b17f40797 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0092.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0092.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0093.py b/githubkit/versions/ghec_v2022_11_28/models/group_0093.py index 39767945a..edbf89236 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0093.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0093.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0094.py b/githubkit/versions/ghec_v2022_11_28/models/group_0094.py index 6cb8cb7e4..903230dc9 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0094.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0094.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0095.py b/githubkit/versions/ghec_v2022_11_28/models/group_0095.py index 0f029b4f5..a7dfe2e7d 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0095.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0095.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0096.py b/githubkit/versions/ghec_v2022_11_28/models/group_0096.py index 11d373fbc..098957b71 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0096.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0096.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0097.py b/githubkit/versions/ghec_v2022_11_28/models/group_0097.py index bed8995e9..8425c8dac 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0097.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0097.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0098.py b/githubkit/versions/ghec_v2022_11_28/models/group_0098.py index 07ee692b3..0ae20642c 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0098.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0098.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0099.py b/githubkit/versions/ghec_v2022_11_28/models/group_0099.py index fe4fba0e2..1f1596144 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0099.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0099.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0100.py b/githubkit/versions/ghec_v2022_11_28/models/group_0100.py index 3788f29c7..467053545 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0100.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0100.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0101.py b/githubkit/versions/ghec_v2022_11_28/models/group_0101.py index db07b4648..ad190d5de 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0101.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0101.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0102.py b/githubkit/versions/ghec_v2022_11_28/models/group_0102.py index 9db787b94..9b7c2e376 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0102.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0102.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0103.py b/githubkit/versions/ghec_v2022_11_28/models/group_0103.py index e80e4e95f..691af00f1 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0103.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0103.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0104.py b/githubkit/versions/ghec_v2022_11_28/models/group_0104.py index 03e71e8b4..364cec24a 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0104.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0104.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0105.py b/githubkit/versions/ghec_v2022_11_28/models/group_0105.py index 085ceffab..90b3e4df8 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0105.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0105.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0106.py b/githubkit/versions/ghec_v2022_11_28/models/group_0106.py index f75f1ae8e..d92a39bb6 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0106.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0106.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0107.py b/githubkit/versions/ghec_v2022_11_28/models/group_0107.py index bd3451b63..73cbad8d5 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0107.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0107.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0108.py b/githubkit/versions/ghec_v2022_11_28/models/group_0108.py index 228496c93..7284dd91d 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0108.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0108.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0109.py b/githubkit/versions/ghec_v2022_11_28/models/group_0109.py index f7ea75b0b..3fdddf239 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0109.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0109.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0110.py b/githubkit/versions/ghec_v2022_11_28/models/group_0110.py index fb76e6e91..a4c5c0aa0 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0110.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0110.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0111.py b/githubkit/versions/ghec_v2022_11_28/models/group_0111.py index 40b608b1e..1003eee7e 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0111.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0111.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0112.py b/githubkit/versions/ghec_v2022_11_28/models/group_0112.py index ee57af35a..a77c789fe 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0112.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0112.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0113.py b/githubkit/versions/ghec_v2022_11_28/models/group_0113.py index bfe110c98..9b8b64121 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0113.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0113.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0114.py b/githubkit/versions/ghec_v2022_11_28/models/group_0114.py index 66df40475..ea87f08d3 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0114.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0114.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0115.py b/githubkit/versions/ghec_v2022_11_28/models/group_0115.py index 0a04558da..35b60a16d 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0115.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0115.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0116.py b/githubkit/versions/ghec_v2022_11_28/models/group_0116.py index 54a7ea035..9adce8753 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0116.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0116.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -122,11 +121,11 @@ class FullRepository(GitHubModel): allow_merge_commit: Missing[bool] = Field(default=UNSET) allow_update_branch: Missing[bool] = Field(default=UNSET) use_squash_pr_title_as_default: Missing[bool] = Field(default=UNSET) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) squash_merge_commit_message: Missing[ Literal["PR_BODY", "COMMIT_MESSAGES", "BLANK"] diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0117.py b/githubkit/versions/ghec_v2022_11_28/models/group_0117.py index d46037915..eebae53bb 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0117.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0117.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0118.py b/githubkit/versions/ghec_v2022_11_28/models/group_0118.py index 5bbdf15d8..da3bdb8a0 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0118.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0118.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0119.py b/githubkit/versions/ghec_v2022_11_28/models/group_0119.py index d30a66de3..cac223a59 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0119.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0119.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0120.py b/githubkit/versions/ghec_v2022_11_28/models/group_0120.py index f24d9520c..02a3a78e1 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0120.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0120.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0121.py b/githubkit/versions/ghec_v2022_11_28/models/group_0121.py index b10044900..5729a4ea4 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0121.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0121.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0122.py b/githubkit/versions/ghec_v2022_11_28/models/group_0122.py index 3b9b3dc3a..9a77a1150 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0122.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0122.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0123.py b/githubkit/versions/ghec_v2022_11_28/models/group_0123.py index 4b4ead950..cdb3781a4 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0123.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0123.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0124.py b/githubkit/versions/ghec_v2022_11_28/models/group_0124.py index 8f50bb99c..2883d03ed 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0124.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0124.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0125.py b/githubkit/versions/ghec_v2022_11_28/models/group_0125.py index 9076ce84a..78f66546d 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0125.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0125.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0126.py b/githubkit/versions/ghec_v2022_11_28/models/group_0126.py index f10619b82..0eee7ff1f 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0126.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0126.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0127.py b/githubkit/versions/ghec_v2022_11_28/models/group_0127.py index 371ee9a71..b58951f6e 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0127.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0127.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0128.py b/githubkit/versions/ghec_v2022_11_28/models/group_0128.py index d1d16843e..15744bca9 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0128.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0128.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0129.py b/githubkit/versions/ghec_v2022_11_28/models/group_0129.py index 7035fd8bf..66a5f8402 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0129.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0129.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0130.py b/githubkit/versions/ghec_v2022_11_28/models/group_0130.py index de781fdcb..16591e261 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0130.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0130.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0131.py b/githubkit/versions/ghec_v2022_11_28/models/group_0131.py index 04a4d53ae..24be869ac 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0131.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0131.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0132.py b/githubkit/versions/ghec_v2022_11_28/models/group_0132.py index 5f2a8f8dc..5a1b53ca6 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0132.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0132.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0133.py b/githubkit/versions/ghec_v2022_11_28/models/group_0133.py index 546f4963b..1e259491a 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0133.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0133.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0134.py b/githubkit/versions/ghec_v2022_11_28/models/group_0134.py index 06b4dedeb..8f7b74ce6 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0134.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0134.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0135.py b/githubkit/versions/ghec_v2022_11_28/models/group_0135.py index c9c2a183c..863f2ee72 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0135.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0135.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0136.py b/githubkit/versions/ghec_v2022_11_28/models/group_0136.py index 761513f36..d08a2932e 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0136.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0136.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0137.py b/githubkit/versions/ghec_v2022_11_28/models/group_0137.py index d49c93f70..e520e25e3 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0137.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0137.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0138.py b/githubkit/versions/ghec_v2022_11_28/models/group_0138.py index 3183ea522..a0cca3785 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0138.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0138.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0139.py b/githubkit/versions/ghec_v2022_11_28/models/group_0139.py index 60472dc5b..084a6f60a 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0139.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0139.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0140.py b/githubkit/versions/ghec_v2022_11_28/models/group_0140.py index 2c8e6da43..e05238ec3 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0140.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0140.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0141.py b/githubkit/versions/ghec_v2022_11_28/models/group_0141.py index eade4d9bc..5a0ebaa38 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0141.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0141.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0142.py b/githubkit/versions/ghec_v2022_11_28/models/group_0142.py index bd3952528..a92c84f61 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0142.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0142.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0143.py b/githubkit/versions/ghec_v2022_11_28/models/group_0143.py index 580a35e96..cf398cc72 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0143.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0143.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0144.py b/githubkit/versions/ghec_v2022_11_28/models/group_0144.py index 2ae2bcd4b..1741604e2 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0144.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0144.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0145.py b/githubkit/versions/ghec_v2022_11_28/models/group_0145.py index a68e8faf1..2cfdde7ac 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0145.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0145.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0146.py b/githubkit/versions/ghec_v2022_11_28/models/group_0146.py index eabce22fd..682aa611e 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0146.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0146.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0147.py b/githubkit/versions/ghec_v2022_11_28/models/group_0147.py index 0cffd585a..5852c43df 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0147.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0147.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0148.py b/githubkit/versions/ghec_v2022_11_28/models/group_0148.py index e3cdbf88e..6b7565aaa 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0148.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0148.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0149.py b/githubkit/versions/ghec_v2022_11_28/models/group_0149.py index cd53a19cd..396fce809 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0149.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0149.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0150.py b/githubkit/versions/ghec_v2022_11_28/models/group_0150.py index b6f803b84..da58f6dc3 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0150.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0150.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0151.py b/githubkit/versions/ghec_v2022_11_28/models/group_0151.py index 2a3a7f0ff..dab0871f3 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0151.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0151.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0152.py b/githubkit/versions/ghec_v2022_11_28/models/group_0152.py index 9391b5910..2f042995e 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0152.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0152.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0153.py b/githubkit/versions/ghec_v2022_11_28/models/group_0153.py index 096129061..3adcb3d8b 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0153.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0153.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0154.py b/githubkit/versions/ghec_v2022_11_28/models/group_0154.py index bb7191cd6..19d31c199 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0154.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0154.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0155.py b/githubkit/versions/ghec_v2022_11_28/models/group_0155.py index e43e89b80..1986e3106 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0155.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0155.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0156.py b/githubkit/versions/ghec_v2022_11_28/models/group_0156.py index 096fed9d0..68d3ec209 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0156.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0156.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0157.py b/githubkit/versions/ghec_v2022_11_28/models/group_0157.py index 12b843d62..edabfb246 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0157.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0157.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0158.py b/githubkit/versions/ghec_v2022_11_28/models/group_0158.py index 59e7870bc..68621a3ed 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0158.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0158.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0159.py b/githubkit/versions/ghec_v2022_11_28/models/group_0159.py index d4548e8a3..a56a3cd8b 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0159.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0159.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0160.py b/githubkit/versions/ghec_v2022_11_28/models/group_0160.py index 5cb73e8a7..f54520a8b 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0160.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0160.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0161.py b/githubkit/versions/ghec_v2022_11_28/models/group_0161.py index d7f2047ae..481c31c81 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0161.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0161.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0162.py b/githubkit/versions/ghec_v2022_11_28/models/group_0162.py index 43e8be27e..1b65a991f 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0162.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0162.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0163.py b/githubkit/versions/ghec_v2022_11_28/models/group_0163.py index c538a91cb..bf5d392cb 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0163.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0163.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0164.py b/githubkit/versions/ghec_v2022_11_28/models/group_0164.py index 2f9476bc5..d5b5146c9 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0164.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0164.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0165.py b/githubkit/versions/ghec_v2022_11_28/models/group_0165.py index b4b7eb4d4..2665ccb3b 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0165.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0165.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0166.py b/githubkit/versions/ghec_v2022_11_28/models/group_0166.py index 0d5de1f71..b7cb92d6f 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0166.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0166.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0167.py b/githubkit/versions/ghec_v2022_11_28/models/group_0167.py index be019bfb3..08e6fd84f 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0167.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0167.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0168.py b/githubkit/versions/ghec_v2022_11_28/models/group_0168.py index dd64f3601..667f2f8ab 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0168.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0168.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0169.py b/githubkit/versions/ghec_v2022_11_28/models/group_0169.py index d69a043e3..335b1a1b9 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0169.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0169.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0170.py b/githubkit/versions/ghec_v2022_11_28/models/group_0170.py index da716df5b..a60ce0057 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0170.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0170.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0171.py b/githubkit/versions/ghec_v2022_11_28/models/group_0171.py index 20ebef18b..be4d5f475 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0171.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0171.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0172.py b/githubkit/versions/ghec_v2022_11_28/models/group_0172.py index 6f46c78ac..04f67c7ff 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0172.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0172.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0173.py b/githubkit/versions/ghec_v2022_11_28/models/group_0173.py index 6e6037f14..a51bdd0eb 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0173.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0173.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0174.py b/githubkit/versions/ghec_v2022_11_28/models/group_0174.py index 31b81949e..2252539d9 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0174.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0174.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0175.py b/githubkit/versions/ghec_v2022_11_28/models/group_0175.py index 80c0e6f2b..897f77145 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0175.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0175.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0176.py b/githubkit/versions/ghec_v2022_11_28/models/group_0176.py index 2070f429a..4e5c3a572 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0176.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0176.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0177.py b/githubkit/versions/ghec_v2022_11_28/models/group_0177.py index c3e8cc3df..cb0c0f09c 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0177.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0177.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0178.py b/githubkit/versions/ghec_v2022_11_28/models/group_0178.py index 7701529bb..e41a57331 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0178.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0178.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0179.py b/githubkit/versions/ghec_v2022_11_28/models/group_0179.py index 75ab236cb..dbc0521ec 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0179.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0179.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0180.py b/githubkit/versions/ghec_v2022_11_28/models/group_0180.py index 56e6466e6..e33032524 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0180.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0180.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0181.py b/githubkit/versions/ghec_v2022_11_28/models/group_0181.py index ff21bb0c0..ec954ebac 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0181.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0181.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0182.py b/githubkit/versions/ghec_v2022_11_28/models/group_0182.py index 45ef63bc3..b2ddf2f92 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0182.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0182.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0183.py b/githubkit/versions/ghec_v2022_11_28/models/group_0183.py index ce37b2c51..ac687db77 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0183.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0183.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0184.py b/githubkit/versions/ghec_v2022_11_28/models/group_0184.py index 90da3006a..831ca354e 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0184.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0184.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0185.py b/githubkit/versions/ghec_v2022_11_28/models/group_0185.py index de343b02a..21a8d9682 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0185.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0185.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0186.py b/githubkit/versions/ghec_v2022_11_28/models/group_0186.py index e0ad2423d..9959c62a1 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0186.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0186.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0187.py b/githubkit/versions/ghec_v2022_11_28/models/group_0187.py index fa6ddec68..b0ee93173 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0187.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0187.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0188.py b/githubkit/versions/ghec_v2022_11_28/models/group_0188.py index cbd3ea5e9..3cca2c7af 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0188.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0188.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List @@ -48,9 +47,9 @@ class WorkflowRunUsagePropBillablePropUbuntu(GitHubModel): total_ms: int = Field() jobs: int = Field() - job_runs: Missing[ - List[WorkflowRunUsagePropBillablePropUbuntuPropJobRunsItems] - ] = Field(default=UNSET) + job_runs: Missing[List[WorkflowRunUsagePropBillablePropUbuntuPropJobRunsItems]] = ( + Field(default=UNSET) + ) class WorkflowRunUsagePropBillablePropUbuntuPropJobRunsItems(GitHubModel): @@ -65,9 +64,9 @@ class WorkflowRunUsagePropBillablePropMacos(GitHubModel): total_ms: int = Field() jobs: int = Field() - job_runs: Missing[ - List[WorkflowRunUsagePropBillablePropMacosPropJobRunsItems] - ] = Field(default=UNSET) + job_runs: Missing[List[WorkflowRunUsagePropBillablePropMacosPropJobRunsItems]] = ( + Field(default=UNSET) + ) class WorkflowRunUsagePropBillablePropMacosPropJobRunsItems(GitHubModel): @@ -82,9 +81,9 @@ class WorkflowRunUsagePropBillablePropWindows(GitHubModel): total_ms: int = Field() jobs: int = Field() - job_runs: Missing[ - List[WorkflowRunUsagePropBillablePropWindowsPropJobRunsItems] - ] = Field(default=UNSET) + job_runs: Missing[List[WorkflowRunUsagePropBillablePropWindowsPropJobRunsItems]] = ( + Field(default=UNSET) + ) class WorkflowRunUsagePropBillablePropWindowsPropJobRunsItems(GitHubModel): diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0189.py b/githubkit/versions/ghec_v2022_11_28/models/group_0189.py index 908b65809..23b0c91f9 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0189.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0189.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0190.py b/githubkit/versions/ghec_v2022_11_28/models/group_0190.py index 34642ab6c..468497ad7 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0190.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0190.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0191.py b/githubkit/versions/ghec_v2022_11_28/models/group_0191.py index 76af719a2..245d14611 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0191.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0191.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0192.py b/githubkit/versions/ghec_v2022_11_28/models/group_0192.py index f2dc9558f..3a5b5b6e7 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0192.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0192.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0193.py b/githubkit/versions/ghec_v2022_11_28/models/group_0193.py index e30c6ed89..faa8dff3f 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0193.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0193.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0194.py b/githubkit/versions/ghec_v2022_11_28/models/group_0194.py index 4482775d8..4c0d8c8b0 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0194.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0194.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0195.py b/githubkit/versions/ghec_v2022_11_28/models/group_0195.py index 41d897282..23aa15d33 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0195.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0195.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0196.py b/githubkit/versions/ghec_v2022_11_28/models/group_0196.py index ab2e75bc0..586dc1dc2 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0196.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0196.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0197.py b/githubkit/versions/ghec_v2022_11_28/models/group_0197.py index 05d05181a..afc684b5b 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0197.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0197.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0198.py b/githubkit/versions/ghec_v2022_11_28/models/group_0198.py index fa8f1e406..8ddc071e1 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0198.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0198.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0199.py b/githubkit/versions/ghec_v2022_11_28/models/group_0199.py index fd67cc0c3..03ad6635a 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0199.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0199.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0200.py b/githubkit/versions/ghec_v2022_11_28/models/group_0200.py index e95f4787d..ce82b54ec 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0200.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0200.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0201.py b/githubkit/versions/ghec_v2022_11_28/models/group_0201.py index e72f07b20..4286522d6 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0201.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0201.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0202.py b/githubkit/versions/ghec_v2022_11_28/models/group_0202.py index 91381f26d..26d091e84 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0202.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0202.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0203.py b/githubkit/versions/ghec_v2022_11_28/models/group_0203.py index 45dd4fba2..913da13df 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0203.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0203.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0204.py b/githubkit/versions/ghec_v2022_11_28/models/group_0204.py index d473e54e3..b8f3e8213 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0204.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0204.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0205.py b/githubkit/versions/ghec_v2022_11_28/models/group_0205.py index 37d858ef0..3f3bb9d07 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0205.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0205.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0206.py b/githubkit/versions/ghec_v2022_11_28/models/group_0206.py index e4e588763..4c9616a97 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0206.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0206.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0207.py b/githubkit/versions/ghec_v2022_11_28/models/group_0207.py index ebd61fad5..198c9e3e9 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0207.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0207.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0208.py b/githubkit/versions/ghec_v2022_11_28/models/group_0208.py index bfb986e41..ea72a3811 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0208.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0208.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0209.py b/githubkit/versions/ghec_v2022_11_28/models/group_0209.py index b04ac8ded..2dfb0cd0e 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0209.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0209.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0210.py b/githubkit/versions/ghec_v2022_11_28/models/group_0210.py index aeb9cc8fb..c7e1737a4 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0210.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0210.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0211.py b/githubkit/versions/ghec_v2022_11_28/models/group_0211.py index 50f3eec70..6d50d1ed1 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0211.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0211.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0212.py b/githubkit/versions/ghec_v2022_11_28/models/group_0212.py index 8b75fb028..5d3463101 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0212.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0212.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -58,11 +57,11 @@ class CodeScanningAlertItems(GitHubModel): ] = Field( description="**Required when the state is dismissed.** The reason for dismissing or closing the alert." ) - dismissed_comment: Missing[ - Union[Annotated[str, Field(max_length=280)], None] - ] = Field( - default=UNSET, - description="The dismissal comment associated with the dismissal of the alert.", + dismissed_comment: Missing[Union[Annotated[str, Field(max_length=280)], None]] = ( + Field( + default=UNSET, + description="The dismissal comment associated with the dismissal of the alert.", + ) ) rule: CodeScanningAlertRuleSummary = Field() tool: CodeScanningAnalysisTool = Field() diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0213.py b/githubkit/versions/ghec_v2022_11_28/models/group_0213.py index bd563512d..ea216ad40 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0213.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0213.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -57,11 +56,11 @@ class CodeScanningAlert(GitHubModel): ] = Field( description="**Required when the state is dismissed.** The reason for dismissing or closing the alert." ) - dismissed_comment: Missing[ - Union[Annotated[str, Field(max_length=280)], None] - ] = Field( - default=UNSET, - description="The dismissal comment associated with the dismissal of the alert.", + dismissed_comment: Missing[Union[Annotated[str, Field(max_length=280)], None]] = ( + Field( + default=UNSET, + description="The dismissal comment associated with the dismissal of the alert.", + ) ) rule: CodeScanningAlertRule = Field() tool: CodeScanningAnalysisTool = Field() diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0214.py b/githubkit/versions/ghec_v2022_11_28/models/group_0214.py index ec5d26206..d016af428 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0214.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0214.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0215.py b/githubkit/versions/ghec_v2022_11_28/models/group_0215.py index 3c5747417..d589823d8 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0215.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0215.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0216.py b/githubkit/versions/ghec_v2022_11_28/models/group_0216.py index e64c9b609..18e1e1dc1 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0216.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0216.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0217.py b/githubkit/versions/ghec_v2022_11_28/models/group_0217.py index 09b84f0e2..f3d93ae7d 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0217.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0217.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0218.py b/githubkit/versions/ghec_v2022_11_28/models/group_0218.py index 9c27a7774..de2f0166a 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0218.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0218.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0219.py b/githubkit/versions/ghec_v2022_11_28/models/group_0219.py index 66f3c48f8..f521485d8 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0219.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0219.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0220.py b/githubkit/versions/ghec_v2022_11_28/models/group_0220.py index 486a0b7e2..e3dd21ec7 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0220.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0220.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0221.py b/githubkit/versions/ghec_v2022_11_28/models/group_0221.py index 66e1fc4f5..7414dcd5c 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0221.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0221.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0222.py b/githubkit/versions/ghec_v2022_11_28/models/group_0222.py index bee0c0a84..b4a4ef9df 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0222.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0222.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0223.py b/githubkit/versions/ghec_v2022_11_28/models/group_0223.py index 18eee89d6..de6f0cf08 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0223.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0223.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0224.py b/githubkit/versions/ghec_v2022_11_28/models/group_0224.py index 0327e5f9c..45e5ce2e2 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0224.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0224.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0225.py b/githubkit/versions/ghec_v2022_11_28/models/group_0225.py index d9b36580d..0829293dd 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0225.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0225.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0226.py b/githubkit/versions/ghec_v2022_11_28/models/group_0226.py index e09987ddc..64f2adc5c 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0226.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0226.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0227.py b/githubkit/versions/ghec_v2022_11_28/models/group_0227.py index 12e896cd8..1899117e7 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0227.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0227.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0228.py b/githubkit/versions/ghec_v2022_11_28/models/group_0228.py index 5b21ea16e..b537858f8 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0228.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0228.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0229.py b/githubkit/versions/ghec_v2022_11_28/models/group_0229.py index c60b7cf32..7c19d354d 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0229.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0229.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0230.py b/githubkit/versions/ghec_v2022_11_28/models/group_0230.py index 0675e07cb..152451110 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0230.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0230.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0231.py b/githubkit/versions/ghec_v2022_11_28/models/group_0231.py index 381d709ef..def6cd3fc 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0231.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0231.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0232.py b/githubkit/versions/ghec_v2022_11_28/models/group_0232.py index ee345acf0..e06ce1df0 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0232.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0232.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0233.py b/githubkit/versions/ghec_v2022_11_28/models/group_0233.py index 33199dfce..64663f227 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0233.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0233.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0234.py b/githubkit/versions/ghec_v2022_11_28/models/group_0234.py index acc872b76..5a4a1eb53 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0234.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0234.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0235.py b/githubkit/versions/ghec_v2022_11_28/models/group_0235.py index 01156daa3..ce7096a89 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0235.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0235.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0236.py b/githubkit/versions/ghec_v2022_11_28/models/group_0236.py index ebf5c423e..44a5c5285 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0236.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0236.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0237.py b/githubkit/versions/ghec_v2022_11_28/models/group_0237.py index 46959cf30..d7e74cd04 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0237.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0237.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0238.py b/githubkit/versions/ghec_v2022_11_28/models/group_0238.py index 946062b74..f782c8d1f 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0238.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0238.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0239.py b/githubkit/versions/ghec_v2022_11_28/models/group_0239.py index 87bdb360a..1af5fd9fd 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0239.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0239.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0240.py b/githubkit/versions/ghec_v2022_11_28/models/group_0240.py index c1980e2ad..8f2dc9b36 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0240.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0240.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0241.py b/githubkit/versions/ghec_v2022_11_28/models/group_0241.py index 9b2bac86f..23682cfb1 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0241.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0241.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0242.py b/githubkit/versions/ghec_v2022_11_28/models/group_0242.py index c54028185..ef42a5d0b 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0242.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0242.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0243.py b/githubkit/versions/ghec_v2022_11_28/models/group_0243.py index e528b274d..bd8204a62 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0243.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0243.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0244.py b/githubkit/versions/ghec_v2022_11_28/models/group_0244.py index 2dd512d72..128d5f4ae 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0244.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0244.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0245.py b/githubkit/versions/ghec_v2022_11_28/models/group_0245.py index 1e6502ce8..d34fc433a 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0245.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0245.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0246.py b/githubkit/versions/ghec_v2022_11_28/models/group_0246.py index b39b14a2e..f34e182ab 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0246.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0246.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0247.py b/githubkit/versions/ghec_v2022_11_28/models/group_0247.py index 6f2dc1c1d..7f410acba 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0247.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0247.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0248.py b/githubkit/versions/ghec_v2022_11_28/models/group_0248.py index 0e09358bf..ffac1fb50 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0248.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0248.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from githubkit.compat import ExtraGitHubModel, model_rebuild diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0249.py b/githubkit/versions/ghec_v2022_11_28/models/group_0249.py index 0b9412a26..e609adc90 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0249.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0249.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0250.py b/githubkit/versions/ghec_v2022_11_28/models/group_0250.py index ece6eccd0..a115549f0 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0250.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0250.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0251.py b/githubkit/versions/ghec_v2022_11_28/models/group_0251.py index bd4561f93..32cc6662c 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0251.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0251.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0252.py b/githubkit/versions/ghec_v2022_11_28/models/group_0252.py index 64086d60f..dc49f49b4 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0252.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0252.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0253.py b/githubkit/versions/ghec_v2022_11_28/models/group_0253.py index 57e847be7..2969bea8b 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0253.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0253.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0254.py b/githubkit/versions/ghec_v2022_11_28/models/group_0254.py index fa5e7be39..03a2b9705 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0254.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0254.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -52,11 +51,11 @@ class Environment(GitHubModel): default=UNSET, description="Built-in deployment protection rules for the environment.", ) - deployment_branch_policy: Missing[ - Union[DeploymentBranchPolicySettings, None] - ] = Field( - default=UNSET, - description="The type of deployment branch policy for this environment. To allow all branches to deploy, set to `null`.", + deployment_branch_policy: Missing[Union[DeploymentBranchPolicySettings, None]] = ( + Field( + default=UNSET, + description="The type of deployment branch policy for this environment. To allow all branches to deploy, set to `null`.", + ) ) diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0255.py b/githubkit/versions/ghec_v2022_11_28/models/group_0255.py index 9183b8a4b..cb12f38a8 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0255.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0255.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0256.py b/githubkit/versions/ghec_v2022_11_28/models/group_0256.py index ee62dd723..1df640196 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0256.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0256.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0257.py b/githubkit/versions/ghec_v2022_11_28/models/group_0257.py index 49e0c02b1..aee2faae9 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0257.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0257.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0258.py b/githubkit/versions/ghec_v2022_11_28/models/group_0258.py index e675f526b..11e46307f 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0258.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0258.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0259.py b/githubkit/versions/ghec_v2022_11_28/models/group_0259.py index 6b20e2fc7..ec57f6950 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0259.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0259.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0260.py b/githubkit/versions/ghec_v2022_11_28/models/group_0260.py index adf2ddae0..543a931ed 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0260.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0260.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0261.py b/githubkit/versions/ghec_v2022_11_28/models/group_0261.py index 8692133ea..23227f8fe 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0261.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0261.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0262.py b/githubkit/versions/ghec_v2022_11_28/models/group_0262.py index c7f732c2f..c52a12148 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0262.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0262.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0263.py b/githubkit/versions/ghec_v2022_11_28/models/group_0263.py index a5bd8a815..314d3773a 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0263.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0263.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0264.py b/githubkit/versions/ghec_v2022_11_28/models/group_0264.py index 494c25c6d..ee31507d1 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0264.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0264.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0265.py b/githubkit/versions/ghec_v2022_11_28/models/group_0265.py index 6753e071f..18cc1f06b 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0265.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0265.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0266.py b/githubkit/versions/ghec_v2022_11_28/models/group_0266.py index 9780faa32..458d88b27 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0266.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0266.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0267.py b/githubkit/versions/ghec_v2022_11_28/models/group_0267.py index f2fc80a0c..544751a06 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0267.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0267.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0268.py b/githubkit/versions/ghec_v2022_11_28/models/group_0268.py index 25a13d14c..e718f9ad6 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0268.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0268.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0269.py b/githubkit/versions/ghec_v2022_11_28/models/group_0269.py index 5f35a16c8..be9c31456 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0269.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0269.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0270.py b/githubkit/versions/ghec_v2022_11_28/models/group_0270.py index dd638a8ea..7ed1d272d 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0270.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0270.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0271.py b/githubkit/versions/ghec_v2022_11_28/models/group_0271.py index fad73044d..c54f24120 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0271.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0271.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0272.py b/githubkit/versions/ghec_v2022_11_28/models/group_0272.py index 6bf96fde5..64f77a1e6 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0272.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0272.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0273.py b/githubkit/versions/ghec_v2022_11_28/models/group_0273.py index ba25f1413..805a643fb 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0273.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0273.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0274.py b/githubkit/versions/ghec_v2022_11_28/models/group_0274.py index 41506eb65..3b7884134 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0274.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0274.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0275.py b/githubkit/versions/ghec_v2022_11_28/models/group_0275.py index d6ccbcead..e7b118870 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0275.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0275.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0276.py b/githubkit/versions/ghec_v2022_11_28/models/group_0276.py index 63124432a..4043314f8 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0276.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0276.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0277.py b/githubkit/versions/ghec_v2022_11_28/models/group_0277.py index 0956ed8b2..02024a1ea 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0277.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0277.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0278.py b/githubkit/versions/ghec_v2022_11_28/models/group_0278.py index 56578002c..3c130beca 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0278.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0278.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0279.py b/githubkit/versions/ghec_v2022_11_28/models/group_0279.py index 575ce5001..d34af01e4 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0279.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0279.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0280.py b/githubkit/versions/ghec_v2022_11_28/models/group_0280.py index 9f2813afb..a676a4a5b 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0280.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0280.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0281.py b/githubkit/versions/ghec_v2022_11_28/models/group_0281.py index bd55773ac..d9a2e5c10 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0281.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0281.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0282.py b/githubkit/versions/ghec_v2022_11_28/models/group_0282.py index 9f989f497..8c4f481a7 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0282.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0282.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0283.py b/githubkit/versions/ghec_v2022_11_28/models/group_0283.py index c5034a474..bc4911907 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0283.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0283.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0284.py b/githubkit/versions/ghec_v2022_11_28/models/group_0284.py index b4be1aad7..93d5e9fbe 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0284.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0284.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0285.py b/githubkit/versions/ghec_v2022_11_28/models/group_0285.py index 422c8825c..f03f0dd3a 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0285.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0285.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0286.py b/githubkit/versions/ghec_v2022_11_28/models/group_0286.py index 0679b01f8..2ea38ac43 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0286.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0286.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0287.py b/githubkit/versions/ghec_v2022_11_28/models/group_0287.py index a5943a1db..aee6430f5 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0287.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0287.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0288.py b/githubkit/versions/ghec_v2022_11_28/models/group_0288.py index e505586d5..4ab6afdfe 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0288.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0288.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0289.py b/githubkit/versions/ghec_v2022_11_28/models/group_0289.py index 67a74bef9..ec4775089 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0289.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0289.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0290.py b/githubkit/versions/ghec_v2022_11_28/models/group_0290.py index 4e66d3fd0..d80387192 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0290.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0290.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0291.py b/githubkit/versions/ghec_v2022_11_28/models/group_0291.py index 89aa536a7..b874a310f 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0291.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0291.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0292.py b/githubkit/versions/ghec_v2022_11_28/models/group_0292.py index 0c94f2c22..350a6156a 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0292.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0292.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0293.py b/githubkit/versions/ghec_v2022_11_28/models/group_0293.py index e5552e240..01fd30cac 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0293.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0293.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0294.py b/githubkit/versions/ghec_v2022_11_28/models/group_0294.py index d66be4d47..7563e299e 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0294.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0294.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0295.py b/githubkit/versions/ghec_v2022_11_28/models/group_0295.py index 03d08aeaf..4cc88812a 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0295.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0295.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0296.py b/githubkit/versions/ghec_v2022_11_28/models/group_0296.py index aff375ad7..4581607c1 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0296.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0296.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0297.py b/githubkit/versions/ghec_v2022_11_28/models/group_0297.py index 1721b8205..e359b62e0 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0297.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0297.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0298.py b/githubkit/versions/ghec_v2022_11_28/models/group_0298.py index 3c20f7730..a711bb72a 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0298.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0298.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0299.py b/githubkit/versions/ghec_v2022_11_28/models/group_0299.py index 59d13fddc..58247c327 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0299.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0299.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from githubkit.compat import ExtraGitHubModel, model_rebuild diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0300.py b/githubkit/versions/ghec_v2022_11_28/models/group_0300.py index c986b9379..535642846 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0300.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0300.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0301.py b/githubkit/versions/ghec_v2022_11_28/models/group_0301.py index e023e42d9..564733c8a 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0301.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0301.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0302.py b/githubkit/versions/ghec_v2022_11_28/models/group_0302.py index dc740d0e5..8f748b081 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0302.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0302.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import date, datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0303.py b/githubkit/versions/ghec_v2022_11_28/models/group_0303.py index eea286c9f..c24d44917 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0303.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0303.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0304.py b/githubkit/versions/ghec_v2022_11_28/models/group_0304.py index 109c1f1c7..4b54230bc 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0304.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0304.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0305.py b/githubkit/versions/ghec_v2022_11_28/models/group_0305.py index 82c1d21d6..2b58439e7 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0305.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0305.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0306.py b/githubkit/versions/ghec_v2022_11_28/models/group_0306.py index 9a8961947..7c20e9413 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0306.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0306.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0307.py b/githubkit/versions/ghec_v2022_11_28/models/group_0307.py index 5ccffc717..9e283e574 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0307.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0307.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0308.py b/githubkit/versions/ghec_v2022_11_28/models/group_0308.py index df70625f1..776c935cd 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0308.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0308.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0309.py b/githubkit/versions/ghec_v2022_11_28/models/group_0309.py index b0f971036..d2cc30430 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0309.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0309.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0310.py b/githubkit/versions/ghec_v2022_11_28/models/group_0310.py index 027ee8c50..bceb932af 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0310.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0310.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0311.py b/githubkit/versions/ghec_v2022_11_28/models/group_0311.py index 7e922b57d..7d789e957 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0311.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0311.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0312.py b/githubkit/versions/ghec_v2022_11_28/models/group_0312.py index ab326efec..a8c0dc855 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0312.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0312.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0313.py b/githubkit/versions/ghec_v2022_11_28/models/group_0313.py index 6fc2ee3ee..da433b3b8 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0313.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0313.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0314.py b/githubkit/versions/ghec_v2022_11_28/models/group_0314.py index 6b1e9109a..8346815ab 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0314.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0314.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0315.py b/githubkit/versions/ghec_v2022_11_28/models/group_0315.py index 52f4f8dc6..e9cc5181f 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0315.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0315.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0316.py b/githubkit/versions/ghec_v2022_11_28/models/group_0316.py index 4a9e106c8..ddf3d592e 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0316.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0316.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0317.py b/githubkit/versions/ghec_v2022_11_28/models/group_0317.py index 75475575c..918d228cd 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0317.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0317.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0318.py b/githubkit/versions/ghec_v2022_11_28/models/group_0318.py index fbd703595..c653fae45 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0318.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0318.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0319.py b/githubkit/versions/ghec_v2022_11_28/models/group_0319.py index 0b8843a14..571c3cf46 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0319.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0319.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0320.py b/githubkit/versions/ghec_v2022_11_28/models/group_0320.py index 85cccdf38..e30bd3be3 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0320.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0320.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0321.py b/githubkit/versions/ghec_v2022_11_28/models/group_0321.py index b7d4b6f9e..5ea214237 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0321.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0321.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0322.py b/githubkit/versions/ghec_v2022_11_28/models/group_0322.py index 3f6b6f6ad..44c4c2b32 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0322.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0322.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0323.py b/githubkit/versions/ghec_v2022_11_28/models/group_0323.py index 21076bd78..62038dd28 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0323.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0323.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0324.py b/githubkit/versions/ghec_v2022_11_28/models/group_0324.py index 05585044c..6c5ebd286 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0324.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0324.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0325.py b/githubkit/versions/ghec_v2022_11_28/models/group_0325.py index b20f21210..4d5e6da2a 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0325.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0325.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0326.py b/githubkit/versions/ghec_v2022_11_28/models/group_0326.py index 285414efc..5b1e3a67b 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0326.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0326.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0327.py b/githubkit/versions/ghec_v2022_11_28/models/group_0327.py index a6b014d3d..700c31a55 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0327.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0327.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0328.py b/githubkit/versions/ghec_v2022_11_28/models/group_0328.py index ce70d7e8e..157f65929 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0328.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0328.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0329.py b/githubkit/versions/ghec_v2022_11_28/models/group_0329.py index 6598c1d7b..7cc809879 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0329.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0329.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0330.py b/githubkit/versions/ghec_v2022_11_28/models/group_0330.py index 799e689a4..6319e5592 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0330.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0330.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0331.py b/githubkit/versions/ghec_v2022_11_28/models/group_0331.py index d1dd1824a..f3e12d14f 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0331.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0331.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0332.py b/githubkit/versions/ghec_v2022_11_28/models/group_0332.py index 85a96e3d6..2416dad5a 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0332.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0332.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0333.py b/githubkit/versions/ghec_v2022_11_28/models/group_0333.py index 1a15b1a0d..9ddb68e7f 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0333.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0333.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0334.py b/githubkit/versions/ghec_v2022_11_28/models/group_0334.py index 81657e5ec..f696b86f2 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0334.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0334.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0335.py b/githubkit/versions/ghec_v2022_11_28/models/group_0335.py index 832961919..9be22a80c 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0335.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0335.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0336.py b/githubkit/versions/ghec_v2022_11_28/models/group_0336.py index 88239acc3..fabb989d1 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0336.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0336.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0337.py b/githubkit/versions/ghec_v2022_11_28/models/group_0337.py index 647939d25..99ef81c35 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0337.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0337.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0338.py b/githubkit/versions/ghec_v2022_11_28/models/group_0338.py index 0ef62ca03..efed65a18 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0338.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0338.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal @@ -38,18 +37,18 @@ class RepositoryAdvisoryCreate(GitHubModel): cwe_ids: Missing[Union[List[str], None]] = Field( default=UNSET, description="A list of Common Weakness Enumeration (CWE) IDs." ) - credits_: Missing[ - Union[List[RepositoryAdvisoryCreatePropCreditsItems], None] - ] = Field( - default=UNSET, - alias="credits", - description="A list of users receiving credit for their participation in the security advisory.", + credits_: Missing[Union[List[RepositoryAdvisoryCreatePropCreditsItems], None]] = ( + Field( + default=UNSET, + alias="credits", + description="A list of users receiving credit for their participation in the security advisory.", + ) ) - severity: Missing[ - Union[None, Literal["critical", "high", "medium", "low"]] - ] = Field( - default=UNSET, - description="The severity of the advisory. You must choose between setting this field or `cvss_vector_string`.", + severity: Missing[Union[None, Literal["critical", "high", "medium", "low"]]] = ( + Field( + default=UNSET, + description="The severity of the advisory. You must choose between setting this field or `cvss_vector_string`.", + ) ) cvss_vector_string: Missing[Union[str, None]] = Field( default=UNSET, diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0339.py b/githubkit/versions/ghec_v2022_11_28/models/group_0339.py index acecb5639..7b8c49810 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0339.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0339.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal @@ -38,11 +37,11 @@ class PrivateVulnerabilityReportCreate(GitHubModel): cwe_ids: Missing[Union[List[str], None]] = Field( default=UNSET, description="A list of Common Weakness Enumeration (CWE) IDs." ) - severity: Missing[ - Union[None, Literal["critical", "high", "medium", "low"]] - ] = Field( - default=UNSET, - description="The severity of the advisory. You must choose between setting this field or `cvss_vector_string`.", + severity: Missing[Union[None, Literal["critical", "high", "medium", "low"]]] = ( + Field( + default=UNSET, + description="The severity of the advisory. You must choose between setting this field or `cvss_vector_string`.", + ) ) cvss_vector_string: Missing[Union[str, None]] = Field( default=UNSET, diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0340.py b/githubkit/versions/ghec_v2022_11_28/models/group_0340.py index a30ff7c7c..ab7417cce 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0340.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0340.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal @@ -33,27 +32,27 @@ class RepositoryAdvisoryUpdate(GitHubModel): cve_id: Missing[Union[str, None]] = Field( default=UNSET, description="The Common Vulnerabilities and Exposures (CVE) ID." ) - vulnerabilities: Missing[ - List[RepositoryAdvisoryUpdatePropVulnerabilitiesItems] - ] = Field( - default=UNSET, - description="A product affected by the vulnerability detailed in a repository security advisory.", + vulnerabilities: Missing[List[RepositoryAdvisoryUpdatePropVulnerabilitiesItems]] = ( + Field( + default=UNSET, + description="A product affected by the vulnerability detailed in a repository security advisory.", + ) ) cwe_ids: Missing[Union[List[str], None]] = Field( default=UNSET, description="A list of Common Weakness Enumeration (CWE) IDs." ) - credits_: Missing[ - Union[List[RepositoryAdvisoryUpdatePropCreditsItems], None] - ] = Field( - default=UNSET, - alias="credits", - description="A list of users receiving credit for their participation in the security advisory.", - ) - severity: Missing[ - Union[None, Literal["critical", "high", "medium", "low"]] - ] = Field( - default=UNSET, - description="The severity of the advisory. You must choose between setting this field or `cvss_vector_string`.", + credits_: Missing[Union[List[RepositoryAdvisoryUpdatePropCreditsItems], None]] = ( + Field( + default=UNSET, + alias="credits", + description="A list of users receiving credit for their participation in the security advisory.", + ) + ) + severity: Missing[Union[None, Literal["critical", "high", "medium", "low"]]] = ( + Field( + default=UNSET, + description="The severity of the advisory. You must choose between setting this field or `cvss_vector_string`.", + ) ) cvss_vector_string: Missing[Union[str, None]] = Field( default=UNSET, diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0341.py b/githubkit/versions/ghec_v2022_11_28/models/group_0341.py index 81420f74b..3a0e47a6f 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0341.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0341.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0342.py b/githubkit/versions/ghec_v2022_11_28/models/group_0342.py index 66768afe1..e36a25e25 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0342.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0342.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0343.py b/githubkit/versions/ghec_v2022_11_28/models/group_0343.py index 2d6335716..7b033f045 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0343.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0343.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0344.py b/githubkit/versions/ghec_v2022_11_28/models/group_0344.py index ddfa15a27..1d3f14e20 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0344.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0344.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0345.py b/githubkit/versions/ghec_v2022_11_28/models/group_0345.py index 91d0b81bd..ef630501d 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0345.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0345.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0346.py b/githubkit/versions/ghec_v2022_11_28/models/group_0346.py index 8b3b4e943..c5f394186 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0346.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0346.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0347.py b/githubkit/versions/ghec_v2022_11_28/models/group_0347.py index c8b93d521..a7005e85e 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0347.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0347.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0348.py b/githubkit/versions/ghec_v2022_11_28/models/group_0348.py index 87a187c43..0ab144da3 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0348.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0348.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0349.py b/githubkit/versions/ghec_v2022_11_28/models/group_0349.py index 6d09b8f17..8f9d3f9f8 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0349.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0349.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0350.py b/githubkit/versions/ghec_v2022_11_28/models/group_0350.py index 64c6cfb20..d6ac1f834 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0350.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0350.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0351.py b/githubkit/versions/ghec_v2022_11_28/models/group_0351.py index e143158ea..97ab65074 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0351.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0351.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0352.py b/githubkit/versions/ghec_v2022_11_28/models/group_0352.py index 2f4ee199b..7ced93dd8 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0352.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0352.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0353.py b/githubkit/versions/ghec_v2022_11_28/models/group_0353.py index c6d310985..7b18517ff 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0353.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0353.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0354.py b/githubkit/versions/ghec_v2022_11_28/models/group_0354.py index 83f4d32f7..74f4928d4 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0354.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0354.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0355.py b/githubkit/versions/ghec_v2022_11_28/models/group_0355.py index 1cd529935..d8243b9c8 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0355.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0355.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0356.py b/githubkit/versions/ghec_v2022_11_28/models/group_0356.py index 7e96a02d2..6139ac2cc 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0356.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0356.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal @@ -67,10 +66,10 @@ class ScimEnterpriseGroupResponseMergedMembers(GitHubModel): class ScimEnterpriseGroupList(GitHubModel): """ScimEnterpriseGroupList""" - schemas: List[ - Literal["urn:ietf:params:scim:api:messages:2.0:ListResponse"] - ] = Field( - description="The URIs that are used to indicate the namespaces of the list SCIM schemas." + schemas: List[Literal["urn:ietf:params:scim:api:messages:2.0:ListResponse"]] = ( + Field( + description="The URIs that are used to indicate the namespaces of the list SCIM schemas." + ) ) total_results: int = Field( alias="totalResults", description="Number of results found" diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0357.py b/githubkit/versions/ghec_v2022_11_28/models/group_0357.py index de283811a..3d272196a 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0357.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0357.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0358.py b/githubkit/versions/ghec_v2022_11_28/models/group_0358.py index 21df0c557..6de6e2299 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0358.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0358.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0359.py b/githubkit/versions/ghec_v2022_11_28/models/group_0359.py index 6ef6e702b..cffcef7fc 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0359.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0359.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0360.py b/githubkit/versions/ghec_v2022_11_28/models/group_0360.py index 6676ba7bb..7da867eb6 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0360.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0360.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0361.py b/githubkit/versions/ghec_v2022_11_28/models/group_0361.py index 5eb128bd2..2768f5e2c 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0361.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0361.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0362.py b/githubkit/versions/ghec_v2022_11_28/models/group_0362.py index 4f47b3a20..88c4fa6c1 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0362.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0362.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0363.py b/githubkit/versions/ghec_v2022_11_28/models/group_0363.py index 0e4ef7c8a..8dcb546b6 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0363.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0363.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal @@ -64,10 +63,10 @@ class ScimEnterpriseUserResponse(GitHubModel): class ScimEnterpriseUserList(GitHubModel): """ScimEnterpriseUserList""" - schemas: List[ - Literal["urn:ietf:params:scim:api:messages:2.0:ListResponse"] - ] = Field( - description="The URIs that are used to indicate the namespaces of the list SCIM schemas." + schemas: List[Literal["urn:ietf:params:scim:api:messages:2.0:ListResponse"]] = ( + Field( + description="The URIs that are used to indicate the namespaces of the list SCIM schemas." + ) ) total_results: int = Field( alias="totalResults", description="Number of results found" diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0364.py b/githubkit/versions/ghec_v2022_11_28/models/group_0364.py index 44c82324b..6715c0815 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0364.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0364.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0365.py b/githubkit/versions/ghec_v2022_11_28/models/group_0365.py index f4128f18e..2240790bd 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0365.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0365.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0366.py b/githubkit/versions/ghec_v2022_11_28/models/group_0366.py index bd413be70..7c63f1b67 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0366.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0366.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0367.py b/githubkit/versions/ghec_v2022_11_28/models/group_0367.py index b398879fc..0f6844463 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0367.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0367.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0368.py b/githubkit/versions/ghec_v2022_11_28/models/group_0368.py index a1ef5b29d..2b52c39fa 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0368.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0368.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0369.py b/githubkit/versions/ghec_v2022_11_28/models/group_0369.py index dc6af6741..56085d643 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0369.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0369.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0370.py b/githubkit/versions/ghec_v2022_11_28/models/group_0370.py index 3d9cbddfe..dace9dfa8 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0370.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0370.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0371.py b/githubkit/versions/ghec_v2022_11_28/models/group_0371.py index 96e348eec..24446a932 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0371.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0371.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0372.py b/githubkit/versions/ghec_v2022_11_28/models/group_0372.py index a350926f7..df42bc6d7 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0372.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0372.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0373.py b/githubkit/versions/ghec_v2022_11_28/models/group_0373.py index 108a29958..92071dc92 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0373.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0373.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0374.py b/githubkit/versions/ghec_v2022_11_28/models/group_0374.py index 677b6ac15..be418abb3 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0374.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0374.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0375.py b/githubkit/versions/ghec_v2022_11_28/models/group_0375.py index 546bff116..fd19c21e8 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0375.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0375.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -55,9 +54,9 @@ class TopicSearchResultItem(GitHubModel): class TopicSearchResultItemPropRelatedItems(GitHubModel): """TopicSearchResultItemPropRelatedItems""" - topic_relation: Missing[ - TopicSearchResultItemPropRelatedItemsPropTopicRelation - ] = Field(default=UNSET) + topic_relation: Missing[TopicSearchResultItemPropRelatedItemsPropTopicRelation] = ( + Field(default=UNSET) + ) class TopicSearchResultItemPropRelatedItemsPropTopicRelation(GitHubModel): @@ -72,9 +71,9 @@ class TopicSearchResultItemPropRelatedItemsPropTopicRelation(GitHubModel): class TopicSearchResultItemPropAliasesItems(GitHubModel): """TopicSearchResultItemPropAliasesItems""" - topic_relation: Missing[ - TopicSearchResultItemPropAliasesItemsPropTopicRelation - ] = Field(default=UNSET) + topic_relation: Missing[TopicSearchResultItemPropAliasesItemsPropTopicRelation] = ( + Field(default=UNSET) + ) class TopicSearchResultItemPropAliasesItemsPropTopicRelation(GitHubModel): diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0376.py b/githubkit/versions/ghec_v2022_11_28/models/group_0376.py index de82dc5d9..801c8d2cf 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0376.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0376.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0377.py b/githubkit/versions/ghec_v2022_11_28/models/group_0377.py index d07b95426..0715ef7ad 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0377.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0377.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0378.py b/githubkit/versions/ghec_v2022_11_28/models/group_0378.py index 405246d7f..f6bee6e63 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0378.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0378.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0379.py b/githubkit/versions/ghec_v2022_11_28/models/group_0379.py index 114f4a67a..a59d9e60b 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0379.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0379.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0380.py b/githubkit/versions/ghec_v2022_11_28/models/group_0380.py index 7fac3d9eb..af866e601 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0380.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0380.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -101,9 +100,9 @@ class CodespaceWithFullRepository(GitHubModel): description="API URL for the Pull Request associated with this codespace, if any." ) recent_folders: List[str] = Field() - runtime_constraints: Missing[ - CodespaceWithFullRepositoryPropRuntimeConstraints - ] = Field(default=UNSET) + runtime_constraints: Missing[CodespaceWithFullRepositoryPropRuntimeConstraints] = ( + Field(default=UNSET) + ) pending_operation: Missing[Union[bool, None]] = Field( default=UNSET, description="Whether or not a codespace has a pending async operation. This would mean that the codespace is temporarily unavailable. The only thing that you can do with a codespace in this state is delete it.", diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0381.py b/githubkit/versions/ghec_v2022_11_28/models/group_0381.py index dbd2fe1c3..1fb1f3941 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0381.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0381.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0382.py b/githubkit/versions/ghec_v2022_11_28/models/group_0382.py index d476c5c42..ed85687e5 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0382.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0382.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0383.py b/githubkit/versions/ghec_v2022_11_28/models/group_0383.py index de5455a54..f75f4e54d 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0383.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0383.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0384.py b/githubkit/versions/ghec_v2022_11_28/models/group_0384.py index 2d4d6b1e1..d3c634c1a 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0384.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0384.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0385.py b/githubkit/versions/ghec_v2022_11_28/models/group_0385.py index cbdc5b123..cae25bb86 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0385.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0385.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0386.py b/githubkit/versions/ghec_v2022_11_28/models/group_0386.py index aeeceaf80..e6313b836 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0386.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0386.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0387.py b/githubkit/versions/ghec_v2022_11_28/models/group_0387.py index e54d9d504..d048a0350 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0387.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0387.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0388.py b/githubkit/versions/ghec_v2022_11_28/models/group_0388.py index e55505325..7d0eefaae 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0388.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0388.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0389.py b/githubkit/versions/ghec_v2022_11_28/models/group_0389.py index 79e083de7..fd0411072 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0389.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0389.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0390.py b/githubkit/versions/ghec_v2022_11_28/models/group_0390.py index 601f04a7a..2fbeee7bf 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0390.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0390.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0391.py b/githubkit/versions/ghec_v2022_11_28/models/group_0391.py index e0835c0fd..b18d5d9e7 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0391.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0391.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0392.py b/githubkit/versions/ghec_v2022_11_28/models/group_0392.py index 9103b9068..29be5dd8a 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0392.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0392.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0393.py b/githubkit/versions/ghec_v2022_11_28/models/group_0393.py index a035a0dc6..548b0540c 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0393.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0393.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -158,11 +157,11 @@ class RepositoryWebhooks(GitHubModel): default=UNSET, description="Whether a squash merge commit can use the pull request title as default. **This property has been deprecated. Please use `squash_merge_commit_title` instead.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) squash_merge_commit_message: Missing[ Literal["PR_BODY", "COMMIT_MESSAGES", "BLANK"] @@ -296,9 +295,9 @@ class RepositoryWebhooksPropTemplateRepository(GitHubModel): pushed_at: Missing[str] = Field(default=UNSET) created_at: Missing[str] = Field(default=UNSET) updated_at: Missing[str] = Field(default=UNSET) - permissions: Missing[ - RepositoryWebhooksPropTemplateRepositoryPropPermissions - ] = Field(default=UNSET) + permissions: Missing[RepositoryWebhooksPropTemplateRepositoryPropPermissions] = ( + Field(default=UNSET) + ) allow_rebase_merge: Missing[bool] = Field(default=UNSET) temp_clone_token: Missing[Union[str, None]] = Field(default=UNSET) allow_squash_merge: Missing[bool] = Field(default=UNSET) @@ -306,11 +305,11 @@ class RepositoryWebhooksPropTemplateRepository(GitHubModel): delete_branch_on_merge: Missing[bool] = Field(default=UNSET) allow_update_branch: Missing[bool] = Field(default=UNSET) use_squash_pr_title_as_default: Missing[bool] = Field(default=UNSET) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) squash_merge_commit_message: Missing[ Literal["PR_BODY", "COMMIT_MESSAGES", "BLANK"] diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0394.py b/githubkit/versions/ghec_v2022_11_28/models/group_0394.py index a39f88708..0b0e642ec 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0394.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0394.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0395.py b/githubkit/versions/ghec_v2022_11_28/models/group_0395.py index 819331ffd..a979f732c 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0395.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0395.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0396.py b/githubkit/versions/ghec_v2022_11_28/models/group_0396.py index f0f59e5d3..bd2d7ac5b 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0396.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0396.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0397.py b/githubkit/versions/ghec_v2022_11_28/models/group_0397.py index e129fe850..f6857b9b0 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0397.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0397.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0398.py b/githubkit/versions/ghec_v2022_11_28/models/group_0398.py index 15cb6503b..4031ddf1e 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0398.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0398.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0399.py b/githubkit/versions/ghec_v2022_11_28/models/group_0399.py index 2b4599294..8614622e5 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0399.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0399.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal @@ -46,10 +45,10 @@ class PersonalAccessTokenRequest(GitHubModel): repository_count: Union[int, None] = Field( description="The number of repositories the token is requesting access to. This field is only populated when `repository_selection` is `subset`." ) - repositories: Union[ - List[PersonalAccessTokenRequestPropRepositoriesItems], None - ] = Field( - description="An array of repository objects the token is requesting access to. This field is only populated when `repository_selection` is `subset`." + repositories: Union[List[PersonalAccessTokenRequestPropRepositoriesItems], None] = ( + Field( + description="An array of repository objects the token is requesting access to. This field is only populated when `repository_selection` is `subset`." + ) ) created_at: str = Field( description="Date and time when the request for access was created." diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0400.py b/githubkit/versions/ghec_v2022_11_28/models/group_0400.py index 1441cde58..3528848a1 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0400.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0400.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0401.py b/githubkit/versions/ghec_v2022_11_28/models/group_0401.py index 873b9d8c6..4f045f2bc 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0401.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0401.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0402.py b/githubkit/versions/ghec_v2022_11_28/models/group_0402.py index 7280bc0be..fcf080f13 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0402.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0402.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0403.py b/githubkit/versions/ghec_v2022_11_28/models/group_0403.py index f108eac50..52f7d4f83 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0403.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0403.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0404.py b/githubkit/versions/ghec_v2022_11_28/models/group_0404.py index a8cf75ca5..e6d758804 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0404.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0404.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0405.py b/githubkit/versions/ghec_v2022_11_28/models/group_0405.py index bca6af590..667027bbd 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0405.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0405.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -71,12 +70,12 @@ class WebhookBranchProtectionRuleCreatedPropRule(GitHubModel): """ admin_enforced: bool = Field() - allow_deletions_enforcement_level: Literal[ - "off", "non_admins", "everyone" - ] = Field() - allow_force_pushes_enforcement_level: Literal[ - "off", "non_admins", "everyone" - ] = Field() + allow_deletions_enforcement_level: Literal["off", "non_admins", "everyone"] = ( + Field() + ) + allow_force_pushes_enforcement_level: Literal["off", "non_admins", "everyone"] = ( + Field() + ) authorized_actor_names: List[str] = Field() authorized_actors_only: bool = Field() authorized_dismissal_actors_only: bool = Field() @@ -90,9 +89,9 @@ class WebhookBranchProtectionRuleCreatedPropRule(GitHubModel): ] = Field() merge_queue_enforcement_level: Literal["off", "non_admins", "everyone"] = Field() name: str = Field() - pull_request_reviews_enforcement_level: Literal[ - "off", "non_admins", "everyone" - ] = Field() + pull_request_reviews_enforcement_level: Literal["off", "non_admins", "everyone"] = ( + Field() + ) repository_id: int = Field() require_code_owner_review: bool = Field() require_last_push_approval: Missing[bool] = Field( @@ -100,12 +99,12 @@ class WebhookBranchProtectionRuleCreatedPropRule(GitHubModel): description="Whether the most recent push must be approved by someone other than the person who pushed it", ) required_approving_review_count: int = Field() - required_conversation_resolution_level: Literal[ - "off", "non_admins", "everyone" - ] = Field() - required_deployments_enforcement_level: Literal[ - "off", "non_admins", "everyone" - ] = Field() + required_conversation_resolution_level: Literal["off", "non_admins", "everyone"] = ( + Field() + ) + required_deployments_enforcement_level: Literal["off", "non_admins", "everyone"] = ( + Field() + ) required_status_checks: List[str] = Field() required_status_checks_enforcement_level: Literal[ "off", "non_admins", "everyone" diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0406.py b/githubkit/versions/ghec_v2022_11_28/models/group_0406.py index 9994d5f23..73682248d 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0406.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0406.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -71,12 +70,12 @@ class WebhookBranchProtectionRuleDeletedPropRule(GitHubModel): """ admin_enforced: bool = Field() - allow_deletions_enforcement_level: Literal[ - "off", "non_admins", "everyone" - ] = Field() - allow_force_pushes_enforcement_level: Literal[ - "off", "non_admins", "everyone" - ] = Field() + allow_deletions_enforcement_level: Literal["off", "non_admins", "everyone"] = ( + Field() + ) + allow_force_pushes_enforcement_level: Literal["off", "non_admins", "everyone"] = ( + Field() + ) authorized_actor_names: List[str] = Field() authorized_actors_only: bool = Field() authorized_dismissal_actors_only: bool = Field() @@ -90,9 +89,9 @@ class WebhookBranchProtectionRuleDeletedPropRule(GitHubModel): ] = Field() merge_queue_enforcement_level: Literal["off", "non_admins", "everyone"] = Field() name: str = Field() - pull_request_reviews_enforcement_level: Literal[ - "off", "non_admins", "everyone" - ] = Field() + pull_request_reviews_enforcement_level: Literal["off", "non_admins", "everyone"] = ( + Field() + ) repository_id: int = Field() require_code_owner_review: bool = Field() require_last_push_approval: Missing[bool] = Field( @@ -100,12 +99,12 @@ class WebhookBranchProtectionRuleDeletedPropRule(GitHubModel): description="Whether the most recent push must be approved by someone other than the person who pushed it", ) required_approving_review_count: int = Field() - required_conversation_resolution_level: Literal[ - "off", "non_admins", "everyone" - ] = Field() - required_deployments_enforcement_level: Literal[ - "off", "non_admins", "everyone" - ] = Field() + required_conversation_resolution_level: Literal["off", "non_admins", "everyone"] = ( + Field() + ) + required_deployments_enforcement_level: Literal["off", "non_admins", "everyone"] = ( + Field() + ) required_status_checks: List[str] = Field() required_status_checks_enforcement_level: Literal[ "off", "non_admins", "everyone" diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0407.py b/githubkit/versions/ghec_v2022_11_28/models/group_0407.py index 1bfe26135..84fdc07fe 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0407.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0407.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -75,12 +74,12 @@ class WebhookBranchProtectionRuleEditedPropRule(GitHubModel): """ admin_enforced: bool = Field() - allow_deletions_enforcement_level: Literal[ - "off", "non_admins", "everyone" - ] = Field() - allow_force_pushes_enforcement_level: Literal[ - "off", "non_admins", "everyone" - ] = Field() + allow_deletions_enforcement_level: Literal["off", "non_admins", "everyone"] = ( + Field() + ) + allow_force_pushes_enforcement_level: Literal["off", "non_admins", "everyone"] = ( + Field() + ) authorized_actor_names: List[str] = Field() authorized_actors_only: bool = Field() authorized_dismissal_actors_only: bool = Field() @@ -94,9 +93,9 @@ class WebhookBranchProtectionRuleEditedPropRule(GitHubModel): ] = Field() merge_queue_enforcement_level: Literal["off", "non_admins", "everyone"] = Field() name: str = Field() - pull_request_reviews_enforcement_level: Literal[ - "off", "non_admins", "everyone" - ] = Field() + pull_request_reviews_enforcement_level: Literal["off", "non_admins", "everyone"] = ( + Field() + ) repository_id: int = Field() require_code_owner_review: bool = Field() require_last_push_approval: Missing[bool] = Field( @@ -104,12 +103,12 @@ class WebhookBranchProtectionRuleEditedPropRule(GitHubModel): description="Whether the most recent push must be approved by someone other than the person who pushed it", ) required_approving_review_count: int = Field() - required_conversation_resolution_level: Literal[ - "off", "non_admins", "everyone" - ] = Field() - required_deployments_enforcement_level: Literal[ - "off", "non_admins", "everyone" - ] = Field() + required_conversation_resolution_level: Literal["off", "non_admins", "everyone"] = ( + Field() + ) + required_deployments_enforcement_level: Literal["off", "non_admins", "everyone"] = ( + Field() + ) required_status_checks: List[str] = Field() required_status_checks_enforcement_level: Literal[ "off", "non_admins", "everyone" diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0408.py b/githubkit/versions/ghec_v2022_11_28/models/group_0408.py index 0ef489323..94a2a32cb 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0408.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0408.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0409.py b/githubkit/versions/ghec_v2022_11_28/models/group_0409.py index 4626d10a5..15f0118a0 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0409.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0409.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0410.py b/githubkit/versions/ghec_v2022_11_28/models/group_0410.py index b974fd4ef..cb6ddceec 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0410.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0410.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0411.py b/githubkit/versions/ghec_v2022_11_28/models/group_0411.py index 5c9c7eb80..2a3f094c3 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0411.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0411.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0412.py b/githubkit/versions/ghec_v2022_11_28/models/group_0412.py index bea1ad091..365e4b4b6 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0412.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0412.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal @@ -47,9 +46,9 @@ class WebhookCheckRunRequestedAction(GitHubModel): title="Repository", description="The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property\nwhen the event occurs from activity in a repository.", ) - requested_action: Missing[ - WebhookCheckRunRequestedActionPropRequestedAction - ] = Field(default=UNSET, description="The action requested by the user.") + requested_action: Missing[WebhookCheckRunRequestedActionPropRequestedAction] = ( + Field(default=UNSET, description="The action requested by the user.") + ) sender: SimpleUserWebhooks = Field( title="Simple User", description="The GitHub user that triggered the event. This property is included in every webhook payload.", diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0413.py b/githubkit/versions/ghec_v2022_11_28/models/group_0413.py index 491115bc9..ccf1a4c5f 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0413.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0413.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0414.py b/githubkit/versions/ghec_v2022_11_28/models/group_0414.py index b92c7f5ca..66ec27bda 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0414.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0414.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0415.py b/githubkit/versions/ghec_v2022_11_28/models/group_0415.py index 5fa7d25ca..a44f5cc13 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0415.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0415.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0416.py b/githubkit/versions/ghec_v2022_11_28/models/group_0416.py index 4e27e214c..f1294693f 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0416.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0416.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -191,9 +190,9 @@ class actors within GitHub. id: Union[int, None] = Field(description="Unique identifier of the GitHub app") name: str = Field(description="The name of the GitHub app") node_id: str = Field() - owner: Union[ - WebhookCheckSuiteCompletedPropCheckSuitePropAppPropOwner, None - ] = Field(title="User") + owner: Union[WebhookCheckSuiteCompletedPropCheckSuitePropAppPropOwner, None] = ( + Field(title="User") + ) permissions: Missing[ WebhookCheckSuiteCompletedPropCheckSuitePropAppPropPermissions ] = Field(default=UNSET, description="The set of permissions for the GitHub app") diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0417.py b/githubkit/versions/ghec_v2022_11_28/models/group_0417.py index 910037a6b..1af61e27f 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0417.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0417.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -107,10 +106,10 @@ class WebhookCheckSuiteRequestedPropCheckSuite(GitHubModel): ) rerequestable: Missing[bool] = Field(default=UNSET) runs_rerequestable: Missing[bool] = Field(default=UNSET) - status: Union[ - None, Literal["requested", "in_progress", "completed", "queued"] - ] = Field( - description="The summary status for all check runs that are part of the check suite. Can be `requested`, `in_progress`, or `completed`." + status: Union[None, Literal["requested", "in_progress", "completed", "queued"]] = ( + Field( + description="The summary status for all check runs that are part of the check suite. Can be `requested`, `in_progress`, or `completed`." + ) ) updated_at: datetime = Field() url: str = Field(description="URL that points to the check suite API resource.") @@ -191,9 +190,9 @@ class actors within GitHub. id: Union[int, None] = Field(description="Unique identifier of the GitHub app") name: str = Field(description="The name of the GitHub app") node_id: str = Field() - owner: Union[ - WebhookCheckSuiteRequestedPropCheckSuitePropAppPropOwner, None - ] = Field(title="User") + owner: Union[WebhookCheckSuiteRequestedPropCheckSuitePropAppPropOwner, None] = ( + Field(title="User") + ) permissions: Missing[ WebhookCheckSuiteRequestedPropCheckSuitePropAppPropPermissions ] = Field(default=UNSET, description="The set of permissions for the GitHub app") diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0418.py b/githubkit/versions/ghec_v2022_11_28/models/group_0418.py index a0774c1a8..ca051f580 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0418.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0418.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -106,10 +105,10 @@ class WebhookCheckSuiteRerequestedPropCheckSuite(GitHubModel): ) rerequestable: Missing[bool] = Field(default=UNSET) runs_rerequestable: Missing[bool] = Field(default=UNSET) - status: Union[ - None, Literal["requested", "in_progress", "completed", "queued"] - ] = Field( - description="The summary status for all check runs that are part of the check suite. Can be `requested`, `in_progress`, or `completed`." + status: Union[None, Literal["requested", "in_progress", "completed", "queued"]] = ( + Field( + description="The summary status for all check runs that are part of the check suite. Can be `requested`, `in_progress`, or `completed`." + ) ) updated_at: datetime = Field() url: str = Field(description="URL that points to the check suite API resource.") @@ -185,9 +184,9 @@ class actors within GitHub. id: Union[int, None] = Field(description="Unique identifier of the GitHub app") name: str = Field(description="The name of the GitHub app") node_id: str = Field() - owner: Union[ - WebhookCheckSuiteRerequestedPropCheckSuitePropAppPropOwner, None - ] = Field(title="User") + owner: Union[WebhookCheckSuiteRerequestedPropCheckSuitePropAppPropOwner, None] = ( + Field(title="User") + ) permissions: Missing[ WebhookCheckSuiteRerequestedPropCheckSuitePropAppPropPermissions ] = Field(default=UNSET, description="The set of permissions for the GitHub app") diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0419.py b/githubkit/versions/ghec_v2022_11_28/models/group_0419.py index 37862fdad..410a93e64 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0419.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0419.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0420.py b/githubkit/versions/ghec_v2022_11_28/models/group_0420.py index e94412fa5..3d57cc426 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0420.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0420.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0421.py b/githubkit/versions/ghec_v2022_11_28/models/group_0421.py index 6f244abab..540ef2d8a 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0421.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0421.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -78,11 +77,11 @@ class WebhookCodeScanningAlertCreatedPropAlert(GitHubModel): description="The time that the alert was dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`." ) dismissed_by: None = Field() - dismissed_comment: Missing[ - Union[Annotated[str, Field(max_length=280)], None] - ] = Field( - default=UNSET, - description="The dismissal comment associated with the dismissal of the alert.", + dismissed_comment: Missing[Union[Annotated[str, Field(max_length=280)], None]] = ( + Field( + default=UNSET, + description="The dismissal comment associated with the dismissal of the alert.", + ) ) dismissed_reason: None = Field( description="The reason for dismissing or closing the alert. Can be one of: `false positive`, `won't fix`, and `used in tests`." diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0422.py b/githubkit/versions/ghec_v2022_11_28/models/group_0422.py index 3f27384fa..baf695ddb 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0422.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0422.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -76,9 +75,9 @@ class WebhookCodeScanningAlertFixedPropAlert(GitHubModel): dismissed_at: Union[datetime, None] = Field( description="The time that the alert was dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`." ) - dismissed_by: Union[ - WebhookCodeScanningAlertFixedPropAlertPropDismissedBy, None - ] = Field(title="User") + dismissed_by: Union[WebhookCodeScanningAlertFixedPropAlertPropDismissedBy, None] = ( + Field(title="User") + ) dismissed_reason: Union[ None, Literal["false positive", "won't fix", "used in tests"] ] = Field(description="The reason for dismissing or closing the alert.") diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0423.py b/githubkit/versions/ghec_v2022_11_28/models/group_0423.py index 5937063d8..593dd97d8 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0423.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0423.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0424.py b/githubkit/versions/ghec_v2022_11_28/models/group_0424.py index b8dbd8dce..7cc51204c 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0424.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0424.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0425.py b/githubkit/versions/ghec_v2022_11_28/models/group_0425.py index 0bfc03717..509d0b262 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0425.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0425.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0426.py b/githubkit/versions/ghec_v2022_11_28/models/group_0426.py index bb6ed0dbe..d01da5e02 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0426.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0426.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0427.py b/githubkit/versions/ghec_v2022_11_28/models/group_0427.py index baad816ab..069c86665 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0427.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0427.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0428.py b/githubkit/versions/ghec_v2022_11_28/models/group_0428.py index 246351111..956e9fd49 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0428.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0428.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0429.py b/githubkit/versions/ghec_v2022_11_28/models/group_0429.py index 60b0ad1f6..5dcd9746d 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0429.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0429.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0430.py b/githubkit/versions/ghec_v2022_11_28/models/group_0430.py index 00c58abdb..879ae24f2 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0430.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0430.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0431.py b/githubkit/versions/ghec_v2022_11_28/models/group_0431.py index 46f9f26a0..4a0d0c720 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0431.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0431.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0432.py b/githubkit/versions/ghec_v2022_11_28/models/group_0432.py index 402e98a9a..1fde06dc9 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0432.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0432.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0433.py b/githubkit/versions/ghec_v2022_11_28/models/group_0433.py index 175614b2a..913bf3fce 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0433.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0433.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0434.py b/githubkit/versions/ghec_v2022_11_28/models/group_0434.py index a0e6ab9a5..a85308cc7 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0434.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0434.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0435.py b/githubkit/versions/ghec_v2022_11_28/models/group_0435.py index 807a2a09c..7fd94f6f8 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0435.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0435.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0436.py b/githubkit/versions/ghec_v2022_11_28/models/group_0436.py index b4212ce76..10aab3e93 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0436.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0436.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0437.py b/githubkit/versions/ghec_v2022_11_28/models/group_0437.py index 5e7913cae..945cbc3d9 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0437.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0437.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0438.py b/githubkit/versions/ghec_v2022_11_28/models/group_0438.py index 8b00bcd76..c52d87eeb 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0438.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0438.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0439.py b/githubkit/versions/ghec_v2022_11_28/models/group_0439.py index 37dfdc461..4ea1dd8e8 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0439.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0439.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0440.py b/githubkit/versions/ghec_v2022_11_28/models/group_0440.py index 8a2c00dd4..87fa35f26 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0440.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0440.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0441.py b/githubkit/versions/ghec_v2022_11_28/models/group_0441.py index 55a5d539e..a85860b6d 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0441.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0441.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -96,9 +95,9 @@ class WebhookDeploymentCreatedPropDeployment(GitHubModel): id: int = Field() node_id: str = Field() original_environment: str = Field() - payload: Union[ - WebhookDeploymentCreatedPropDeploymentPropPayloadOneof0, str - ] = Field() + payload: Union[WebhookDeploymentCreatedPropDeploymentPropPayloadOneof0, str] = ( + Field() + ) performed_via_github_app: Missing[ Union[WebhookDeploymentCreatedPropDeploymentPropPerformedViaGithubApp, None] ] = Field( @@ -549,9 +548,9 @@ class WebhookDeploymentCreatedPropWorkflowRunPropRepository(GitHubModel): name: Missing[str] = Field(default=UNSET) node_id: Missing[str] = Field(default=UNSET) notifications_url: Missing[str] = Field(default=UNSET) - owner: Missing[ - WebhookDeploymentCreatedPropWorkflowRunPropRepositoryPropOwner - ] = Field(default=UNSET) + owner: Missing[WebhookDeploymentCreatedPropWorkflowRunPropRepositoryPropOwner] = ( + Field(default=UNSET) + ) private: Missing[bool] = Field(default=UNSET) pulls_url: Missing[str] = Field(default=UNSET) releases_url: Missing[str] = Field(default=UNSET) diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0442.py b/githubkit/versions/ghec_v2022_11_28/models/group_0442.py index c0e8b04a1..2a5d4e378 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0442.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0442.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0443.py b/githubkit/versions/ghec_v2022_11_28/models/group_0443.py index db0a452ee..9dc88786e 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0443.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0443.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -60,9 +59,9 @@ class WebhookDeploymentReviewApproved(GitHubModel): description="The GitHub user that triggered the event. This property is included in every webhook payload.", ) since: str = Field() - workflow_job_run: Missing[ - WebhookDeploymentReviewApprovedPropWorkflowJobRun - ] = Field(default=UNSET) + workflow_job_run: Missing[WebhookDeploymentReviewApprovedPropWorkflowJobRun] = ( + Field(default=UNSET) + ) workflow_job_runs: Missing[ List[WebhookDeploymentReviewApprovedPropWorkflowJobRunsItems] ] = Field(default=UNSET) diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0444.py b/githubkit/versions/ghec_v2022_11_28/models/group_0444.py index 1f7f3683b..e438764fb 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0444.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0444.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -60,9 +59,9 @@ class WebhookDeploymentReviewRejected(GitHubModel): description="The GitHub user that triggered the event. This property is included in every webhook payload.", ) since: str = Field() - workflow_job_run: Missing[ - WebhookDeploymentReviewRejectedPropWorkflowJobRun - ] = Field(default=UNSET) + workflow_job_run: Missing[WebhookDeploymentReviewRejectedPropWorkflowJobRun] = ( + Field(default=UNSET) + ) workflow_job_runs: Missing[ List[WebhookDeploymentReviewRejectedPropWorkflowJobRunsItems] ] = Field(default=UNSET) @@ -214,9 +213,9 @@ class WebhookDeploymentReviewRejectedPropWorkflowRun(GitHubModel): run_attempt: int = Field() run_number: int = Field() run_started_at: datetime = Field() - status: Literal[ - "requested", "in_progress", "completed", "queued", "waiting" - ] = Field() + status: Literal["requested", "in_progress", "completed", "queued", "waiting"] = ( + Field() + ) triggering_actor: Union[ WebhookDeploymentReviewRejectedPropWorkflowRunPropTriggeringActor, None ] = Field(title="User") diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0445.py b/githubkit/versions/ghec_v2022_11_28/models/group_0445.py index b5c0e9322..296c99d39 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0445.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0445.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -141,9 +140,9 @@ class WebhookDeploymentReviewRequestedPropReviewersItemsPropReviewer(GitHubModel class WebhookDeploymentReviewRequestedPropWorkflowRun(GitHubModel): """Deployment Workflow Run""" - actor: Union[ - WebhookDeploymentReviewRequestedPropWorkflowRunPropActor, None - ] = Field(title="User") + actor: Union[WebhookDeploymentReviewRequestedPropWorkflowRunPropActor, None] = ( + Field(title="User") + ) artifacts_url: Missing[str] = Field(default=UNSET) cancel_url: Missing[str] = Field(default=UNSET) check_suite_id: int = Field() diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0446.py b/githubkit/versions/ghec_v2022_11_28/models/group_0446.py index b755559c6..d725ceacd 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0446.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0446.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -127,9 +126,9 @@ class WebhookDeploymentStatusCreatedPropDeployment(GitHubModel): """ created_at: str = Field() - creator: Union[ - WebhookDeploymentStatusCreatedPropDeploymentPropCreator, None - ] = Field(title="User") + creator: Union[WebhookDeploymentStatusCreatedPropDeploymentPropCreator, None] = ( + Field(title="User") + ) description: Union[str, None] = Field() environment: str = Field() id: int = Field() @@ -635,9 +634,9 @@ class WebhookDeploymentStatusCreatedPropWorkflowRun(GitHubModel): None, ] ] = Field(default=UNSET) - repository: Missing[ - WebhookDeploymentStatusCreatedPropWorkflowRunPropRepository - ] = Field(default=UNSET) + repository: Missing[WebhookDeploymentStatusCreatedPropWorkflowRunPropRepository] = ( + Field(default=UNSET) + ) rerun_url: Missing[str] = Field(default=UNSET) run_attempt: int = Field() run_number: int = Field() diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0447.py b/githubkit/versions/ghec_v2022_11_28/models/group_0447.py index d8f6c5050..3add67699 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0447.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0447.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0448.py b/githubkit/versions/ghec_v2022_11_28/models/group_0448.py index d82fa1983..d4f4ddd49 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0448.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0448.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0449.py b/githubkit/versions/ghec_v2022_11_28/models/group_0449.py index 52f2d93dd..7cd71e0e1 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0449.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0449.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0450.py b/githubkit/versions/ghec_v2022_11_28/models/group_0450.py index a3e1366c1..dd7b4c526 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0450.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0450.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0451.py b/githubkit/versions/ghec_v2022_11_28/models/group_0451.py index 7bb14fdb3..63736eb65 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0451.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0451.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0452.py b/githubkit/versions/ghec_v2022_11_28/models/group_0452.py index f47aae7f8..71376a6f2 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0452.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0452.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0453.py b/githubkit/versions/ghec_v2022_11_28/models/group_0453.py index d68048ade..b1368df86 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0453.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0453.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0454.py b/githubkit/versions/ghec_v2022_11_28/models/group_0454.py index b22109f3e..00dc6adab 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0454.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0454.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -51,9 +50,9 @@ class WebhookDiscussionCreatedPropDiscussionAllof0(GitHubModel): locked: bool = Field() node_id: str = Field() number: int = Field() - reactions: Missing[ - WebhookDiscussionCreatedPropDiscussionAllof0PropReactions - ] = Field(default=UNSET, title="Reactions") + reactions: Missing[WebhookDiscussionCreatedPropDiscussionAllof0PropReactions] = ( + Field(default=UNSET, title="Reactions") + ) repository_url: str = Field() state: Literal["open", "locked", "converting", "transferring"] = Field() timeline_url: Missing[str] = Field(default=UNSET) diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0455.py b/githubkit/versions/ghec_v2022_11_28/models/group_0455.py index 22d57df8e..e8ba38001 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0455.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0455.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal @@ -38,9 +37,9 @@ class WebhookDiscussionCreatedPropDiscussionAllof1(GitHubModel): locked: Literal[False] = Field() node_id: Missing[str] = Field(default=UNSET) number: Missing[int] = Field(default=UNSET) - reactions: Missing[ - WebhookDiscussionCreatedPropDiscussionAllof1PropReactions - ] = Field(default=UNSET) + reactions: Missing[WebhookDiscussionCreatedPropDiscussionAllof1PropReactions] = ( + Field(default=UNSET) + ) repository_url: Missing[str] = Field(default=UNSET) state: Literal["open", "converting", "transferring"] = Field() timeline_url: Missing[str] = Field(default=UNSET) diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0456.py b/githubkit/versions/ghec_v2022_11_28/models/group_0456.py index 25632f778..b05de1d37 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0456.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0456.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0457.py b/githubkit/versions/ghec_v2022_11_28/models/group_0457.py index edcc5d4ca..d24578616 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0457.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0457.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0458.py b/githubkit/versions/ghec_v2022_11_28/models/group_0458.py index cc6afc2b2..1bf8e8e3e 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0458.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0458.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0459.py b/githubkit/versions/ghec_v2022_11_28/models/group_0459.py index a4c8c0e57..724b14c25 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0459.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0459.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0460.py b/githubkit/versions/ghec_v2022_11_28/models/group_0460.py index 48ce7f85c..4a974752c 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0460.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0460.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0461.py b/githubkit/versions/ghec_v2022_11_28/models/group_0461.py index f8c323c57..c28365d30 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0461.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0461.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0462.py b/githubkit/versions/ghec_v2022_11_28/models/group_0462.py index 54272f8f6..51b5399fc 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0462.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0462.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0463.py b/githubkit/versions/ghec_v2022_11_28/models/group_0463.py index 93aa9ac37..e0901a087 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0463.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0463.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0464.py b/githubkit/versions/ghec_v2022_11_28/models/group_0464.py index 1daaaa61c..cd9a94172 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0464.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0464.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0465.py b/githubkit/versions/ghec_v2022_11_28/models/group_0465.py index 7c9cd7f6f..a22c9c661 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0465.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0465.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0466.py b/githubkit/versions/ghec_v2022_11_28/models/group_0466.py index e2c78b1fc..046022325 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0466.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0466.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0467.py b/githubkit/versions/ghec_v2022_11_28/models/group_0467.py index ac62cb3af..52a486e96 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0467.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0467.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0468.py b/githubkit/versions/ghec_v2022_11_28/models/group_0468.py index 7b7c6af20..095db0f60 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0468.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0468.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0469.py b/githubkit/versions/ghec_v2022_11_28/models/group_0469.py index fbc56572e..c4aadd70e 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0469.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0469.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0470.py b/githubkit/versions/ghec_v2022_11_28/models/group_0470.py index 96075a7fc..271fb1958 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0470.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0470.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0471.py b/githubkit/versions/ghec_v2022_11_28/models/group_0471.py index 1e1f95012..27b6081b3 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0471.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0471.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0472.py b/githubkit/versions/ghec_v2022_11_28/models/group_0472.py index f54283ca3..14ecf8b8e 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0472.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0472.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0473.py b/githubkit/versions/ghec_v2022_11_28/models/group_0473.py index 3e5943a8c..1a11f10d2 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0473.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0473.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0474.py b/githubkit/versions/ghec_v2022_11_28/models/group_0474.py index 92bd010f2..7efa81321 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0474.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0474.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0475.py b/githubkit/versions/ghec_v2022_11_28/models/group_0475.py index 17e6d4a90..df6e8f6bd 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0475.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0475.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal @@ -40,11 +39,11 @@ class WebhookInstallationCreated(GitHubModel): title="Organization Simple", description="A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.", ) - repositories: Missing[ - List[WebhookInstallationCreatedPropRepositoriesItems] - ] = Field( - default=UNSET, - description="An array of repository objects that the installation can access.", + repositories: Missing[List[WebhookInstallationCreatedPropRepositoriesItems]] = ( + Field( + default=UNSET, + description="An array of repository objects that the installation can access.", + ) ) repository: Missing[RepositoryWebhooks] = Field( default=UNSET, diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0476.py b/githubkit/versions/ghec_v2022_11_28/models/group_0476.py index 575848591..4cbaeb6cf 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0476.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0476.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal @@ -40,11 +39,11 @@ class WebhookInstallationDeleted(GitHubModel): title="Organization Simple", description="A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.", ) - repositories: Missing[ - List[WebhookInstallationDeletedPropRepositoriesItems] - ] = Field( - default=UNSET, - description="An array of repository objects that the installation can access.", + repositories: Missing[List[WebhookInstallationDeletedPropRepositoriesItems]] = ( + Field( + default=UNSET, + description="An array of repository objects that the installation can access.", + ) ) repository: Missing[RepositoryWebhooks] = Field( default=UNSET, diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0477.py b/githubkit/versions/ghec_v2022_11_28/models/group_0477.py index 91f1282b4..a62f07943 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0477.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0477.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0478.py b/githubkit/versions/ghec_v2022_11_28/models/group_0478.py index 726b4be05..89b2f7739 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0478.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0478.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0479.py b/githubkit/versions/ghec_v2022_11_28/models/group_0479.py index a4c72305e..9284971ff 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0479.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0479.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0480.py b/githubkit/versions/ghec_v2022_11_28/models/group_0480.py index ed14ef63b..ae927b838 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0480.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0480.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal @@ -40,11 +39,11 @@ class WebhookInstallationSuspend(GitHubModel): title="Organization Simple", description="A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.", ) - repositories: Missing[ - List[WebhookInstallationSuspendPropRepositoriesItems] - ] = Field( - default=UNSET, - description="An array of repository objects that the installation can access.", + repositories: Missing[List[WebhookInstallationSuspendPropRepositoriesItems]] = ( + Field( + default=UNSET, + description="An array of repository objects that the installation can access.", + ) ) repository: Missing[RepositoryWebhooks] = Field( default=UNSET, diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0481.py b/githubkit/versions/ghec_v2022_11_28/models/group_0481.py index 6054bfa11..f44636833 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0481.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0481.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0482.py b/githubkit/versions/ghec_v2022_11_28/models/group_0482.py index 66e805104..37d68bf7b 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0482.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0482.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal @@ -40,11 +39,11 @@ class WebhookInstallationUnsuspend(GitHubModel): title="Organization Simple", description="A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.", ) - repositories: Missing[ - List[WebhookInstallationUnsuspendPropRepositoriesItems] - ] = Field( - default=UNSET, - description="An array of repository objects that the installation can access.", + repositories: Missing[List[WebhookInstallationUnsuspendPropRepositoriesItems]] = ( + Field( + default=UNSET, + description="An array of repository objects that the installation can access.", + ) ) repository: Missing[RepositoryWebhooks] = Field( default=UNSET, diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0483.py b/githubkit/versions/ghec_v2022_11_28/models/group_0483.py index bb169300f..179c7af57 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0483.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0483.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0484.py b/githubkit/versions/ghec_v2022_11_28/models/group_0484.py index 3a58f30b7..f002aefc2 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0484.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0484.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0485.py b/githubkit/versions/ghec_v2022_11_28/models/group_0485.py index 07c08b1a7..02377229e 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0485.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0485.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -73,9 +72,9 @@ class WebhookIssueCommentCreatedPropIssue(GitHubModel): performed_via_github_app: Missing[ Union[WebhookIssueCommentCreatedPropIssueMergedPerformedViaGithubApp, None] ] = Field(default=UNSET) - pull_request: Missing[ - WebhookIssueCommentCreatedPropIssueAllof0PropPullRequest - ] = Field(default=UNSET) + pull_request: Missing[WebhookIssueCommentCreatedPropIssueAllof0PropPullRequest] = ( + Field(default=UNSET) + ) reactions: WebhookIssueCommentCreatedPropIssueMergedReactions = Field() repository_url: str = Field() state: Literal["open", "closed"] = Field( diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0486.py b/githubkit/versions/ghec_v2022_11_28/models/group_0486.py index bd3a98654..faa8f8738 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0486.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0486.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -68,16 +67,16 @@ class WebhookIssueCommentCreatedPropIssueAllof0(GitHubModel): events_url: str = Field() html_url: str = Field() id: int = Field() - labels: Missing[ - List[WebhookIssueCommentCreatedPropIssueAllof0PropLabelsItems] - ] = Field(default=UNSET) + labels: Missing[List[WebhookIssueCommentCreatedPropIssueAllof0PropLabelsItems]] = ( + Field(default=UNSET) + ) labels_url: str = Field() locked: Missing[bool] = Field(default=UNSET) - milestone: Union[ - WebhookIssueCommentCreatedPropIssueAllof0PropMilestone, None - ] = Field( - title="Milestone", - description="A collection of related issues and pull requests.", + milestone: Union[WebhookIssueCommentCreatedPropIssueAllof0PropMilestone, None] = ( + Field( + title="Milestone", + description="A collection of related issues and pull requests.", + ) ) node_id: str = Field() number: int = Field() @@ -88,9 +87,9 @@ class WebhookIssueCommentCreatedPropIssueAllof0(GitHubModel): title="App", description="GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", ) - pull_request: Missing[ - WebhookIssueCommentCreatedPropIssueAllof0PropPullRequest - ] = Field(default=UNSET) + pull_request: Missing[WebhookIssueCommentCreatedPropIssueAllof0PropPullRequest] = ( + Field(default=UNSET) + ) reactions: WebhookIssueCommentCreatedPropIssueAllof0PropReactions = Field( title="Reactions" ) diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0487.py b/githubkit/versions/ghec_v2022_11_28/models/group_0487.py index 43505b500..6171043ad 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0487.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0487.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0488.py b/githubkit/versions/ghec_v2022_11_28/models/group_0488.py index 0d578648f..dc932bbb6 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0488.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0488.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0489.py b/githubkit/versions/ghec_v2022_11_28/models/group_0489.py index 256c00277..85d1ba0bd 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0489.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0489.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0490.py b/githubkit/versions/ghec_v2022_11_28/models/group_0490.py index b3b5f8b9a..0cf598b48 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0490.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0490.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0491.py b/githubkit/versions/ghec_v2022_11_28/models/group_0491.py index 1feeb2003..7da34fc3d 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0491.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0491.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0492.py b/githubkit/versions/ghec_v2022_11_28/models/group_0492.py index b853249be..6da98bf11 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0492.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0492.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal @@ -23,9 +22,9 @@ class WebhookIssueCommentCreatedPropIssueAllof1(GitHubModel): """WebhookIssueCommentCreatedPropIssueAllof1""" active_lock_reason: Missing[Union[str, None]] = Field(default=UNSET) - assignee: Union[ - WebhookIssueCommentCreatedPropIssueAllof1PropAssignee, None - ] = Field(title="User") + assignee: Union[WebhookIssueCommentCreatedPropIssueAllof1PropAssignee, None] = ( + Field(title="User") + ) assignees: Missing[ List[Union[WebhookIssueCommentCreatedPropIssueAllof1PropAssigneesItems, None]] ] = Field(default=UNSET) diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0493.py b/githubkit/versions/ghec_v2022_11_28/models/group_0493.py index 7f93e6980..8fd318222 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0493.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0493.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0494.py b/githubkit/versions/ghec_v2022_11_28/models/group_0494.py index 5fec22915..932e0cea8 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0494.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0494.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0495.py b/githubkit/versions/ghec_v2022_11_28/models/group_0495.py index dc495fe7b..553e51e0d 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0495.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0495.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0496.py b/githubkit/versions/ghec_v2022_11_28/models/group_0496.py index 1aa3d95a6..9e3523d77 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0496.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0496.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0497.py b/githubkit/versions/ghec_v2022_11_28/models/group_0497.py index 23afcca86..e9c50afdc 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0497.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0497.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -73,9 +72,9 @@ class WebhookIssueCommentDeletedPropIssue(GitHubModel): performed_via_github_app: Missing[ Union[WebhookIssueCommentDeletedPropIssueMergedPerformedViaGithubApp, None] ] = Field(default=UNSET) - pull_request: Missing[ - WebhookIssueCommentDeletedPropIssueAllof0PropPullRequest - ] = Field(default=UNSET) + pull_request: Missing[WebhookIssueCommentDeletedPropIssueAllof0PropPullRequest] = ( + Field(default=UNSET) + ) reactions: WebhookIssueCommentDeletedPropIssueMergedReactions = Field() repository_url: str = Field() state: Literal["open", "closed"] = Field( diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0498.py b/githubkit/versions/ghec_v2022_11_28/models/group_0498.py index 051d1a79e..41fdc5f05 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0498.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0498.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -68,16 +67,16 @@ class WebhookIssueCommentDeletedPropIssueAllof0(GitHubModel): events_url: str = Field() html_url: str = Field() id: int = Field() - labels: Missing[ - List[WebhookIssueCommentDeletedPropIssueAllof0PropLabelsItems] - ] = Field(default=UNSET) + labels: Missing[List[WebhookIssueCommentDeletedPropIssueAllof0PropLabelsItems]] = ( + Field(default=UNSET) + ) labels_url: str = Field() locked: Missing[bool] = Field(default=UNSET) - milestone: Union[ - WebhookIssueCommentDeletedPropIssueAllof0PropMilestone, None - ] = Field( - title="Milestone", - description="A collection of related issues and pull requests.", + milestone: Union[WebhookIssueCommentDeletedPropIssueAllof0PropMilestone, None] = ( + Field( + title="Milestone", + description="A collection of related issues and pull requests.", + ) ) node_id: str = Field() number: int = Field() @@ -88,9 +87,9 @@ class WebhookIssueCommentDeletedPropIssueAllof0(GitHubModel): title="App", description="GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", ) - pull_request: Missing[ - WebhookIssueCommentDeletedPropIssueAllof0PropPullRequest - ] = Field(default=UNSET) + pull_request: Missing[WebhookIssueCommentDeletedPropIssueAllof0PropPullRequest] = ( + Field(default=UNSET) + ) reactions: WebhookIssueCommentDeletedPropIssueAllof0PropReactions = Field( title="Reactions" ) diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0499.py b/githubkit/versions/ghec_v2022_11_28/models/group_0499.py index eacfe42b7..1accd904c 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0499.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0499.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0500.py b/githubkit/versions/ghec_v2022_11_28/models/group_0500.py index 21d33aaaf..011ca8ea7 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0500.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0500.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0501.py b/githubkit/versions/ghec_v2022_11_28/models/group_0501.py index 1d1e5d274..ef2882250 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0501.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0501.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0502.py b/githubkit/versions/ghec_v2022_11_28/models/group_0502.py index cbfdfcc05..b527e3f15 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0502.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0502.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0503.py b/githubkit/versions/ghec_v2022_11_28/models/group_0503.py index 723f640de..79e352d88 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0503.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0503.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0504.py b/githubkit/versions/ghec_v2022_11_28/models/group_0504.py index acba60529..3e9e40f0f 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0504.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0504.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal @@ -23,9 +22,9 @@ class WebhookIssueCommentDeletedPropIssueAllof1(GitHubModel): """WebhookIssueCommentDeletedPropIssueAllof1""" active_lock_reason: Missing[Union[str, None]] = Field(default=UNSET) - assignee: Union[ - WebhookIssueCommentDeletedPropIssueAllof1PropAssignee, None - ] = Field(title="User") + assignee: Union[WebhookIssueCommentDeletedPropIssueAllof1PropAssignee, None] = ( + Field(title="User") + ) assignees: Missing[ List[Union[WebhookIssueCommentDeletedPropIssueAllof1PropAssigneesItems, None]] ] = Field(default=UNSET) diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0505.py b/githubkit/versions/ghec_v2022_11_28/models/group_0505.py index 4c381e83d..b75d02815 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0505.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0505.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0506.py b/githubkit/versions/ghec_v2022_11_28/models/group_0506.py index 6a7ad94e4..074c13f6f 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0506.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0506.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0507.py b/githubkit/versions/ghec_v2022_11_28/models/group_0507.py index 94b2daae7..8abc94a7c 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0507.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0507.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0508.py b/githubkit/versions/ghec_v2022_11_28/models/group_0508.py index 1a3188780..53f830800 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0508.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0508.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0509.py b/githubkit/versions/ghec_v2022_11_28/models/group_0509.py index 1925306e6..4a8db4805 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0509.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0509.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -73,9 +72,9 @@ class WebhookIssueCommentEditedPropIssue(GitHubModel): performed_via_github_app: Missing[ Union[WebhookIssueCommentEditedPropIssueMergedPerformedViaGithubApp, None] ] = Field(default=UNSET) - pull_request: Missing[ - WebhookIssueCommentEditedPropIssueAllof0PropPullRequest - ] = Field(default=UNSET) + pull_request: Missing[WebhookIssueCommentEditedPropIssueAllof0PropPullRequest] = ( + Field(default=UNSET) + ) reactions: WebhookIssueCommentEditedPropIssueMergedReactions = Field() repository_url: str = Field() state: Literal["open", "closed"] = Field( diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0510.py b/githubkit/versions/ghec_v2022_11_28/models/group_0510.py index 3c1cb386e..d4b891db4 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0510.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0510.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -68,16 +67,16 @@ class WebhookIssueCommentEditedPropIssueAllof0(GitHubModel): events_url: str = Field() html_url: str = Field() id: int = Field() - labels: Missing[ - List[WebhookIssueCommentEditedPropIssueAllof0PropLabelsItems] - ] = Field(default=UNSET) + labels: Missing[List[WebhookIssueCommentEditedPropIssueAllof0PropLabelsItems]] = ( + Field(default=UNSET) + ) labels_url: str = Field() locked: Missing[bool] = Field(default=UNSET) - milestone: Union[ - WebhookIssueCommentEditedPropIssueAllof0PropMilestone, None - ] = Field( - title="Milestone", - description="A collection of related issues and pull requests.", + milestone: Union[WebhookIssueCommentEditedPropIssueAllof0PropMilestone, None] = ( + Field( + title="Milestone", + description="A collection of related issues and pull requests.", + ) ) node_id: str = Field() number: int = Field() @@ -88,9 +87,9 @@ class WebhookIssueCommentEditedPropIssueAllof0(GitHubModel): title="App", description="GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", ) - pull_request: Missing[ - WebhookIssueCommentEditedPropIssueAllof0PropPullRequest - ] = Field(default=UNSET) + pull_request: Missing[WebhookIssueCommentEditedPropIssueAllof0PropPullRequest] = ( + Field(default=UNSET) + ) reactions: WebhookIssueCommentEditedPropIssueAllof0PropReactions = Field( title="Reactions" ) diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0511.py b/githubkit/versions/ghec_v2022_11_28/models/group_0511.py index 6ae1ac3cc..65b348d39 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0511.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0511.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0512.py b/githubkit/versions/ghec_v2022_11_28/models/group_0512.py index 483fbe625..265267a2d 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0512.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0512.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0513.py b/githubkit/versions/ghec_v2022_11_28/models/group_0513.py index 5d768f78e..6d7df14cf 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0513.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0513.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0514.py b/githubkit/versions/ghec_v2022_11_28/models/group_0514.py index 806b718db..0a173e32e 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0514.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0514.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0515.py b/githubkit/versions/ghec_v2022_11_28/models/group_0515.py index 2e3ebb9f8..5bf3007f0 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0515.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0515.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0516.py b/githubkit/versions/ghec_v2022_11_28/models/group_0516.py index cfd486394..61298c7a7 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0516.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0516.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0517.py b/githubkit/versions/ghec_v2022_11_28/models/group_0517.py index 88c441e61..8ae4a16b2 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0517.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0517.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0518.py b/githubkit/versions/ghec_v2022_11_28/models/group_0518.py index e579a7c55..368d6e35d 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0518.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0518.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0519.py b/githubkit/versions/ghec_v2022_11_28/models/group_0519.py index 7c7c31676..f4be54058 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0519.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0519.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -101,9 +100,9 @@ class WebhookIssuesAssignedPropIssue(GitHubModel): assignee: Missing[Union[WebhookIssuesAssignedPropIssuePropAssignee, None]] = Field( default=UNSET, title="User" ) - assignees: List[ - Union[WebhookIssuesAssignedPropIssuePropAssigneesItems, None] - ] = Field() + assignees: List[Union[WebhookIssuesAssignedPropIssuePropAssigneesItems, None]] = ( + Field() + ) author_association: Literal[ "COLLABORATOR", "CONTRIBUTOR", @@ -239,9 +238,9 @@ class WebhookIssuesAssignedPropIssuePropMilestone(GitHubModel): closed_at: Union[datetime, None] = Field() closed_issues: int = Field() created_at: datetime = Field() - creator: Union[ - WebhookIssuesAssignedPropIssuePropMilestonePropCreator, None - ] = Field(title="User") + creator: Union[WebhookIssuesAssignedPropIssuePropMilestonePropCreator, None] = ( + Field(title="User") + ) description: Union[str, None] = Field() due_on: Union[datetime, None] = Field() html_url: str = Field() diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0520.py b/githubkit/versions/ghec_v2022_11_28/models/group_0520.py index 0b1b4a739..82126a329 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0520.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0520.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0521.py b/githubkit/versions/ghec_v2022_11_28/models/group_0521.py index 3458db42f..679924420 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0521.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0521.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0522.py b/githubkit/versions/ghec_v2022_11_28/models/group_0522.py index 77b9090d1..016e0bf4a 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0522.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0522.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -34,9 +33,9 @@ class WebhookIssuesClosedPropIssueAllof0(GitHubModel): active_lock_reason: Union[ None, Literal["resolved", "off-topic", "too heated", "spam"] ] = Field() - assignee: Missing[ - Union[WebhookIssuesClosedPropIssueAllof0PropAssignee, None] - ] = Field(default=UNSET, title="User") + assignee: Missing[Union[WebhookIssuesClosedPropIssueAllof0PropAssignee, None]] = ( + Field(default=UNSET, title="User") + ) assignees: List[ Union[WebhookIssuesClosedPropIssueAllof0PropAssigneesItems, None] ] = Field() diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0523.py b/githubkit/versions/ghec_v2022_11_28/models/group_0523.py index aed96e71e..67637d8b2 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0523.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0523.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0524.py b/githubkit/versions/ghec_v2022_11_28/models/group_0524.py index 6ccd5610d..dcfeb30a8 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0524.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0524.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -29,9 +28,9 @@ class WebhookIssuesClosedPropIssueAllof0PropMilestone(GitHubModel): closed_at: Union[datetime, None] = Field() closed_issues: int = Field() created_at: datetime = Field() - creator: Union[ - WebhookIssuesClosedPropIssueAllof0PropMilestonePropCreator, None - ] = Field(title="User") + creator: Union[WebhookIssuesClosedPropIssueAllof0PropMilestonePropCreator, None] = ( + Field(title="User") + ) description: Union[str, None] = Field() due_on: Union[datetime, None] = Field() html_url: str = Field() diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0525.py b/githubkit/versions/ghec_v2022_11_28/models/group_0525.py index eb27f4bf1..0f1382f9f 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0525.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0525.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0526.py b/githubkit/versions/ghec_v2022_11_28/models/group_0526.py index 213604904..792745ef9 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0526.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0526.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0527.py b/githubkit/versions/ghec_v2022_11_28/models/group_0527.py index a44b6bbec..dbed44f7e 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0527.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0527.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0528.py b/githubkit/versions/ghec_v2022_11_28/models/group_0528.py index 2accd7ea3..61782b677 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0528.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0528.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal @@ -23,9 +22,9 @@ class WebhookIssuesClosedPropIssueAllof1(GitHubModel): """WebhookIssuesClosedPropIssueAllof1""" active_lock_reason: Missing[Union[str, None]] = Field(default=UNSET) - assignee: Missing[ - Union[WebhookIssuesClosedPropIssueAllof1PropAssignee, None] - ] = Field(default=UNSET) + assignee: Missing[Union[WebhookIssuesClosedPropIssueAllof1PropAssignee, None]] = ( + Field(default=UNSET) + ) assignees: Missing[ List[Union[WebhookIssuesClosedPropIssueAllof1PropAssigneesItems, None]] ] = Field(default=UNSET) @@ -43,9 +42,9 @@ class WebhookIssuesClosedPropIssueAllof1(GitHubModel): ] = Field(default=UNSET) labels_url: Missing[str] = Field(default=UNSET) locked: Missing[bool] = Field(default=UNSET) - milestone: Missing[ - Union[WebhookIssuesClosedPropIssueAllof1PropMilestone, None] - ] = Field(default=UNSET) + milestone: Missing[Union[WebhookIssuesClosedPropIssueAllof1PropMilestone, None]] = ( + Field(default=UNSET) + ) node_id: Missing[str] = Field(default=UNSET) number: Missing[int] = Field(default=UNSET) performed_via_github_app: Missing[ diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0529.py b/githubkit/versions/ghec_v2022_11_28/models/group_0529.py index 8fcdc3cf2..f06bacfcd 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0529.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0529.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -26,9 +25,9 @@ class WebhookIssuesClosedPropIssueMergedMilestone(GitHubModel): closed_at: Union[datetime, None] = Field() closed_issues: int = Field() created_at: datetime = Field() - creator: Union[ - WebhookIssuesClosedPropIssueAllof0PropMilestonePropCreator, None - ] = Field(title="User") + creator: Union[WebhookIssuesClosedPropIssueAllof0PropMilestonePropCreator, None] = ( + Field(title="User") + ) description: Union[str, None] = Field() due_on: Union[datetime, None] = Field() html_url: str = Field() diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0530.py b/githubkit/versions/ghec_v2022_11_28/models/group_0530.py index 610135e5e..71d1d4b8b 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0530.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0530.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0531.py b/githubkit/versions/ghec_v2022_11_28/models/group_0531.py index db2590c4f..e116a5bae 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0531.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0531.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -72,9 +71,9 @@ class WebhookIssuesDeletedPropIssue(GitHubModel): assignee: Missing[Union[WebhookIssuesDeletedPropIssuePropAssignee, None]] = Field( default=UNSET, title="User" ) - assignees: List[ - Union[WebhookIssuesDeletedPropIssuePropAssigneesItems, None] - ] = Field() + assignees: List[Union[WebhookIssuesDeletedPropIssuePropAssigneesItems, None]] = ( + Field() + ) author_association: Literal[ "COLLABORATOR", "CONTRIBUTOR", diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0532.py b/githubkit/versions/ghec_v2022_11_28/models/group_0532.py index b1741de21..f7ea2f9ce 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0532.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0532.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0533.py b/githubkit/versions/ghec_v2022_11_28/models/group_0533.py index 3e6c2e4bb..7f7763541 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0533.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0533.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -32,9 +31,9 @@ class WebhookIssuesDemilestonedPropIssue(GitHubModel): active_lock_reason: Union[ Literal["resolved", "off-topic", "too heated", "spam"], None ] = Field() - assignee: Missing[ - Union[WebhookIssuesDemilestonedPropIssueMergedAssignee, None] - ] = Field(default=UNSET) + assignee: Missing[Union[WebhookIssuesDemilestonedPropIssueMergedAssignee, None]] = ( + Field(default=UNSET) + ) assignees: List[WebhookIssuesDemilestonedPropIssueMergedAssignees] = Field() author_association: Literal[ "COLLABORATOR", @@ -74,9 +73,9 @@ class WebhookIssuesDemilestonedPropIssue(GitHubModel): performed_via_github_app: Missing[ Union[WebhookIssuesDemilestonedPropIssueMergedPerformedViaGithubApp, None] ] = Field(default=UNSET) - pull_request: Missing[ - WebhookIssuesDemilestonedPropIssueAllof0PropPullRequest - ] = Field(default=UNSET) + pull_request: Missing[WebhookIssuesDemilestonedPropIssueAllof0PropPullRequest] = ( + Field(default=UNSET) + ) reactions: WebhookIssuesDemilestonedPropIssueMergedReactions = Field() repository_url: str = Field() state: Missing[Literal["open", "closed"]] = Field( diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0534.py b/githubkit/versions/ghec_v2022_11_28/models/group_0534.py index d3752e49b..fba38886a 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0534.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0534.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -66,16 +65,16 @@ class WebhookIssuesDemilestonedPropIssueAllof0(GitHubModel): events_url: str = Field() html_url: str = Field() id: int = Field() - labels: Missing[ - List[WebhookIssuesDemilestonedPropIssueAllof0PropLabelsItems] - ] = Field(default=UNSET) + labels: Missing[List[WebhookIssuesDemilestonedPropIssueAllof0PropLabelsItems]] = ( + Field(default=UNSET) + ) labels_url: str = Field() locked: Missing[bool] = Field(default=UNSET) - milestone: Union[ - WebhookIssuesDemilestonedPropIssueAllof0PropMilestone, None - ] = Field( - title="Milestone", - description="A collection of related issues and pull requests.", + milestone: Union[WebhookIssuesDemilestonedPropIssueAllof0PropMilestone, None] = ( + Field( + title="Milestone", + description="A collection of related issues and pull requests.", + ) ) node_id: str = Field() number: int = Field() @@ -86,9 +85,9 @@ class WebhookIssuesDemilestonedPropIssueAllof0(GitHubModel): title="App", description="GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", ) - pull_request: Missing[ - WebhookIssuesDemilestonedPropIssueAllof0PropPullRequest - ] = Field(default=UNSET) + pull_request: Missing[WebhookIssuesDemilestonedPropIssueAllof0PropPullRequest] = ( + Field(default=UNSET) + ) reactions: WebhookIssuesDemilestonedPropIssueAllof0PropReactions = Field( title="Reactions" ) diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0535.py b/githubkit/versions/ghec_v2022_11_28/models/group_0535.py index 0cb25a29b..0f90eadd4 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0535.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0535.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0536.py b/githubkit/versions/ghec_v2022_11_28/models/group_0536.py index e2466fab7..608fb0490 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0536.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0536.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0537.py b/githubkit/versions/ghec_v2022_11_28/models/group_0537.py index bdabb65dd..833287a18 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0537.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0537.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0538.py b/githubkit/versions/ghec_v2022_11_28/models/group_0538.py index 25fa03ae1..2f04958ad 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0538.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0538.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -44,11 +43,11 @@ class WebhookIssuesDemilestonedPropIssueAllof1(GitHubModel): ] = Field(default=UNSET) labels_url: Missing[str] = Field(default=UNSET) locked: Missing[bool] = Field(default=UNSET) - milestone: Union[ - WebhookIssuesDemilestonedPropIssueAllof1PropMilestone, None - ] = Field( - title="Milestone", - description="A collection of related issues and pull requests.", + milestone: Union[WebhookIssuesDemilestonedPropIssueAllof1PropMilestone, None] = ( + Field( + title="Milestone", + description="A collection of related issues and pull requests.", + ) ) node_id: Missing[str] = Field(default=UNSET) number: Missing[int] = Field(default=UNSET) diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0539.py b/githubkit/versions/ghec_v2022_11_28/models/group_0539.py index a7bc8ceb0..a570d5f13 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0539.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0539.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0540.py b/githubkit/versions/ghec_v2022_11_28/models/group_0540.py index 2571e0804..2f4aaa51c 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0540.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0540.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -112,9 +111,9 @@ class WebhookIssuesEditedPropIssue(GitHubModel): assignee: Missing[Union[WebhookIssuesEditedPropIssuePropAssignee, None]] = Field( default=UNSET, title="User" ) - assignees: List[ - Union[WebhookIssuesEditedPropIssuePropAssigneesItems, None] - ] = Field() + assignees: List[Union[WebhookIssuesEditedPropIssuePropAssigneesItems, None]] = ( + Field() + ) author_association: Literal[ "COLLABORATOR", "CONTRIBUTOR", diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0541.py b/githubkit/versions/ghec_v2022_11_28/models/group_0541.py index a34ca33a1..553f7221f 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0541.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0541.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -87,9 +86,9 @@ class WebhookIssuesLabeledPropIssue(GitHubModel): assignee: Missing[Union[WebhookIssuesLabeledPropIssuePropAssignee, None]] = Field( default=UNSET, title="User" ) - assignees: List[ - Union[WebhookIssuesLabeledPropIssuePropAssigneesItems, None] - ] = Field() + assignees: List[Union[WebhookIssuesLabeledPropIssuePropAssigneesItems, None]] = ( + Field() + ) author_association: Literal[ "COLLABORATOR", "CONTRIBUTOR", diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0542.py b/githubkit/versions/ghec_v2022_11_28/models/group_0542.py index d098424cd..7e69e7969 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0542.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0542.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0543.py b/githubkit/versions/ghec_v2022_11_28/models/group_0543.py index b7afb5b60..c05a5c203 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0543.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0543.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0544.py b/githubkit/versions/ghec_v2022_11_28/models/group_0544.py index c9f1454ae..2852193b8 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0544.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0544.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -34,9 +33,9 @@ class WebhookIssuesLockedPropIssueAllof0(GitHubModel): active_lock_reason: Union[ None, Literal["resolved", "off-topic", "too heated", "spam"] ] = Field() - assignee: Missing[ - Union[WebhookIssuesLockedPropIssueAllof0PropAssignee, None] - ] = Field(default=UNSET, title="User") + assignee: Missing[Union[WebhookIssuesLockedPropIssueAllof0PropAssignee, None]] = ( + Field(default=UNSET, title="User") + ) assignees: List[ Union[WebhookIssuesLockedPropIssueAllof0PropAssigneesItems, None] ] = Field() diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0545.py b/githubkit/versions/ghec_v2022_11_28/models/group_0545.py index 8ca5e668c..4c89390f2 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0545.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0545.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0546.py b/githubkit/versions/ghec_v2022_11_28/models/group_0546.py index 342610d57..d8f837c4f 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0546.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0546.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -29,9 +28,9 @@ class WebhookIssuesLockedPropIssueAllof0PropMilestone(GitHubModel): closed_at: Union[datetime, None] = Field() closed_issues: int = Field() created_at: datetime = Field() - creator: Union[ - WebhookIssuesLockedPropIssueAllof0PropMilestonePropCreator, None - ] = Field(title="User") + creator: Union[WebhookIssuesLockedPropIssueAllof0PropMilestonePropCreator, None] = ( + Field(title="User") + ) description: Union[str, None] = Field() due_on: Union[datetime, None] = Field() html_url: str = Field() diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0547.py b/githubkit/versions/ghec_v2022_11_28/models/group_0547.py index 069b2c09a..a7d52a632 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0547.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0547.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0548.py b/githubkit/versions/ghec_v2022_11_28/models/group_0548.py index a45dc357e..1386eba41 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0548.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0548.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0549.py b/githubkit/versions/ghec_v2022_11_28/models/group_0549.py index 9ef92079e..50e0a27ba 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0549.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0549.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0550.py b/githubkit/versions/ghec_v2022_11_28/models/group_0550.py index c954a67f5..54edc6419 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0550.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0550.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal @@ -25,9 +24,9 @@ class WebhookIssuesLockedPropIssueAllof1(GitHubModel): active_lock_reason: Union[ None, Literal["resolved", "off-topic", "too heated", "spam"] ] = Field() - assignee: Missing[ - Union[WebhookIssuesLockedPropIssueAllof1PropAssignee, None] - ] = Field(default=UNSET) + assignee: Missing[Union[WebhookIssuesLockedPropIssueAllof1PropAssignee, None]] = ( + Field(default=UNSET) + ) assignees: Missing[ List[Union[WebhookIssuesLockedPropIssueAllof1PropAssigneesItems, None]] ] = Field(default=UNSET) @@ -45,9 +44,9 @@ class WebhookIssuesLockedPropIssueAllof1(GitHubModel): ] = Field(default=UNSET) labels_url: Missing[str] = Field(default=UNSET) locked: Literal[True] = Field() - milestone: Missing[ - Union[WebhookIssuesLockedPropIssueAllof1PropMilestone, None] - ] = Field(default=UNSET) + milestone: Missing[Union[WebhookIssuesLockedPropIssueAllof1PropMilestone, None]] = ( + Field(default=UNSET) + ) node_id: Missing[str] = Field(default=UNSET) number: Missing[int] = Field(default=UNSET) performed_via_github_app: Missing[ diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0551.py b/githubkit/versions/ghec_v2022_11_28/models/group_0551.py index 1f8790c3f..ced7faa69 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0551.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0551.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -26,9 +25,9 @@ class WebhookIssuesLockedPropIssueMergedMilestone(GitHubModel): closed_at: Union[datetime, None] = Field() closed_issues: int = Field() created_at: datetime = Field() - creator: Union[ - WebhookIssuesLockedPropIssueAllof0PropMilestonePropCreator, None - ] = Field(title="User") + creator: Union[WebhookIssuesLockedPropIssueAllof0PropMilestonePropCreator, None] = ( + Field(title="User") + ) description: Union[str, None] = Field() due_on: Union[datetime, None] = Field() html_url: str = Field() diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0552.py b/githubkit/versions/ghec_v2022_11_28/models/group_0552.py index 2d226ca31..330323fcb 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0552.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0552.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0553.py b/githubkit/versions/ghec_v2022_11_28/models/group_0553.py index 383c9a29a..1ff8c3fd5 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0553.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0553.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0554.py b/githubkit/versions/ghec_v2022_11_28/models/group_0554.py index f6ed89866..86720ee98 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0554.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0554.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -30,9 +29,9 @@ class WebhookIssuesMilestonedPropIssue(GitHubModel): active_lock_reason: Union[ Literal["resolved", "off-topic", "too heated", "spam"], None ] = Field() - assignee: Missing[ - Union[WebhookIssuesMilestonedPropIssueMergedAssignee, None] - ] = Field(default=UNSET) + assignee: Missing[Union[WebhookIssuesMilestonedPropIssueMergedAssignee, None]] = ( + Field(default=UNSET) + ) assignees: List[WebhookIssuesMilestonedPropIssueMergedAssignees] = Field() author_association: Literal[ "COLLABORATOR", @@ -70,9 +69,9 @@ class WebhookIssuesMilestonedPropIssue(GitHubModel): performed_via_github_app: Missing[ Union[WebhookIssuesMilestonedPropIssueMergedPerformedViaGithubApp, None] ] = Field(default=UNSET) - pull_request: Missing[ - WebhookIssuesMilestonedPropIssueAllof0PropPullRequest - ] = Field(default=UNSET) + pull_request: Missing[WebhookIssuesMilestonedPropIssueAllof0PropPullRequest] = ( + Field(default=UNSET) + ) reactions: WebhookIssuesMilestonedPropIssueMergedReactions = Field() repository_url: str = Field() state: Missing[Literal["open", "closed"]] = Field( diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0555.py b/githubkit/versions/ghec_v2022_11_28/models/group_0555.py index f2d5d37cd..f0498dde7 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0555.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0555.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -61,9 +60,9 @@ class WebhookIssuesMilestonedPropIssueAllof0(GitHubModel): events_url: str = Field() html_url: str = Field() id: int = Field() - labels: Missing[ - List[WebhookIssuesMilestonedPropIssueAllof0PropLabelsItems] - ] = Field(default=UNSET) + labels: Missing[List[WebhookIssuesMilestonedPropIssueAllof0PropLabelsItems]] = ( + Field(default=UNSET) + ) labels_url: str = Field() locked: Missing[bool] = Field(default=UNSET) milestone: Union[WebhookIssuesMilestonedPropIssueAllof0PropMilestone, None] = Field( @@ -79,9 +78,9 @@ class WebhookIssuesMilestonedPropIssueAllof0(GitHubModel): title="App", description="GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", ) - pull_request: Missing[ - WebhookIssuesMilestonedPropIssueAllof0PropPullRequest - ] = Field(default=UNSET) + pull_request: Missing[WebhookIssuesMilestonedPropIssueAllof0PropPullRequest] = ( + Field(default=UNSET) + ) reactions: WebhookIssuesMilestonedPropIssueAllof0PropReactions = Field( title="Reactions" ) diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0556.py b/githubkit/versions/ghec_v2022_11_28/models/group_0556.py index 343d4c954..ab73e0292 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0556.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0556.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0557.py b/githubkit/versions/ghec_v2022_11_28/models/group_0557.py index f03340a57..1dd2b8425 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0557.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0557.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0558.py b/githubkit/versions/ghec_v2022_11_28/models/group_0558.py index 5eaf8f294..80a45c6ef 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0558.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0558.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0559.py b/githubkit/versions/ghec_v2022_11_28/models/group_0559.py index e0e5913b6..c7b6ced77 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0559.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0559.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0560.py b/githubkit/versions/ghec_v2022_11_28/models/group_0560.py index 2e7afbe83..5b362eed4 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0560.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0560.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0561.py b/githubkit/versions/ghec_v2022_11_28/models/group_0561.py index c35f4fc6d..ece3b20d2 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0561.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0561.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0562.py b/githubkit/versions/ghec_v2022_11_28/models/group_0562.py index bca4f3d77..ace207830 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0562.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0562.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -73,9 +72,9 @@ class WebhookIssuesOpenedPropIssue(GitHubModel): assignee: Missing[Union[WebhookIssuesOpenedPropIssuePropAssignee, None]] = Field( default=UNSET, title="User" ) - assignees: List[ - Union[WebhookIssuesOpenedPropIssuePropAssigneesItems, None] - ] = Field() + assignees: List[Union[WebhookIssuesOpenedPropIssuePropAssigneesItems, None]] = ( + Field() + ) author_association: Literal[ "COLLABORATOR", "CONTRIBUTOR", @@ -510,16 +509,16 @@ class WebhookIssuesOpenedPropChangesPropOldIssue(GitHubModel): events_url: str = Field() html_url: str = Field() id: int = Field() - labels: Missing[ - List[WebhookIssuesOpenedPropChangesPropOldIssuePropLabelsItems] - ] = Field(default=UNSET) + labels: Missing[List[WebhookIssuesOpenedPropChangesPropOldIssuePropLabelsItems]] = ( + Field(default=UNSET) + ) labels_url: str = Field() locked: Missing[bool] = Field(default=UNSET) - milestone: Union[ - WebhookIssuesOpenedPropChangesPropOldIssuePropMilestone, None - ] = Field( - title="Milestone", - description="A collection of related issues and pull requests.", + milestone: Union[WebhookIssuesOpenedPropChangesPropOldIssuePropMilestone, None] = ( + Field( + title="Milestone", + description="A collection of related issues and pull requests.", + ) ) node_id: str = Field() number: int = Field() @@ -530,9 +529,9 @@ class WebhookIssuesOpenedPropChangesPropOldIssue(GitHubModel): title="App", description="GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", ) - pull_request: Missing[ - WebhookIssuesOpenedPropChangesPropOldIssuePropPullRequest - ] = Field(default=UNSET) + pull_request: Missing[WebhookIssuesOpenedPropChangesPropOldIssuePropPullRequest] = ( + Field(default=UNSET) + ) reactions: WebhookIssuesOpenedPropChangesPropOldIssuePropReactions = Field( title="Reactions" ) @@ -978,9 +977,9 @@ class WebhookIssuesOpenedPropChangesPropOldRepository(GitHubModel): open_issues: int = Field() open_issues_count: int = Field() organization: Missing[str] = Field(default=UNSET) - owner: Union[ - WebhookIssuesOpenedPropChangesPropOldRepositoryPropOwner, None - ] = Field(title="User") + owner: Union[WebhookIssuesOpenedPropChangesPropOldRepositoryPropOwner, None] = ( + Field(title="User") + ) permissions: Missing[ WebhookIssuesOpenedPropChangesPropOldRepositoryPropPermissions ] = Field(default=UNSET) diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0563.py b/githubkit/versions/ghec_v2022_11_28/models/group_0563.py index 26b4eea40..cd412bbbb 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0563.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0563.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -72,9 +71,9 @@ class WebhookIssuesPinnedPropIssue(GitHubModel): assignee: Missing[Union[WebhookIssuesPinnedPropIssuePropAssignee, None]] = Field( default=UNSET, title="User" ) - assignees: List[ - Union[WebhookIssuesPinnedPropIssuePropAssigneesItems, None] - ] = Field() + assignees: List[Union[WebhookIssuesPinnedPropIssuePropAssigneesItems, None]] = ( + Field() + ) author_association: Literal[ "COLLABORATOR", "CONTRIBUTOR", diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0564.py b/githubkit/versions/ghec_v2022_11_28/models/group_0564.py index aaf31b03e..ada8b76e1 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0564.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0564.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0565.py b/githubkit/versions/ghec_v2022_11_28/models/group_0565.py index e75abca1c..613530a2b 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0565.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0565.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -30,9 +29,9 @@ class WebhookIssuesReopenedPropIssue(GitHubModel): active_lock_reason: Union[ Literal["resolved", "off-topic", "too heated", "spam"], None ] = Field() - assignee: Missing[ - Union[WebhookIssuesReopenedPropIssueMergedAssignee, None] - ] = Field(default=UNSET) + assignee: Missing[Union[WebhookIssuesReopenedPropIssueMergedAssignee, None]] = ( + Field(default=UNSET) + ) assignees: List[WebhookIssuesReopenedPropIssueMergedAssignees] = Field() author_association: Literal[ "COLLABORATOR", diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0566.py b/githubkit/versions/ghec_v2022_11_28/models/group_0566.py index 1d0078187..b0c98c428 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0566.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0566.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -34,9 +33,9 @@ class WebhookIssuesReopenedPropIssueAllof0(GitHubModel): active_lock_reason: Union[ None, Literal["resolved", "off-topic", "too heated", "spam"] ] = Field() - assignee: Missing[ - Union[WebhookIssuesReopenedPropIssueAllof0PropAssignee, None] - ] = Field(default=UNSET, title="User") + assignee: Missing[Union[WebhookIssuesReopenedPropIssueAllof0PropAssignee, None]] = ( + Field(default=UNSET, title="User") + ) assignees: List[ Union[WebhookIssuesReopenedPropIssueAllof0PropAssigneesItems, None] ] = Field() diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0567.py b/githubkit/versions/ghec_v2022_11_28/models/group_0567.py index 9e92d948b..fc8af35f5 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0567.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0567.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0568.py b/githubkit/versions/ghec_v2022_11_28/models/group_0568.py index c0fbb5e5f..b892eb9d0 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0568.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0568.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0569.py b/githubkit/versions/ghec_v2022_11_28/models/group_0569.py index c6df6bdbc..98fb4235d 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0569.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0569.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0570.py b/githubkit/versions/ghec_v2022_11_28/models/group_0570.py index 01d6b9bf3..ce54a4150 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0570.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0570.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0571.py b/githubkit/versions/ghec_v2022_11_28/models/group_0571.py index 92a2a3195..bd5576323 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0571.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0571.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0572.py b/githubkit/versions/ghec_v2022_11_28/models/group_0572.py index 88e8576d9..5a3d8d6de 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0572.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0572.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal @@ -23,9 +22,9 @@ class WebhookIssuesReopenedPropIssueAllof1(GitHubModel): """WebhookIssuesReopenedPropIssueAllof1""" active_lock_reason: Missing[Union[str, None]] = Field(default=UNSET) - assignee: Missing[ - Union[WebhookIssuesReopenedPropIssueAllof1PropAssignee, None] - ] = Field(default=UNSET) + assignee: Missing[Union[WebhookIssuesReopenedPropIssueAllof1PropAssignee, None]] = ( + Field(default=UNSET) + ) assignees: Missing[ List[Union[WebhookIssuesReopenedPropIssueAllof1PropAssigneesItems, None]] ] = Field(default=UNSET) diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0573.py b/githubkit/versions/ghec_v2022_11_28/models/group_0573.py index e86960bb8..e51716f9a 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0573.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0573.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0574.py b/githubkit/versions/ghec_v2022_11_28/models/group_0574.py index e243fcfaa..6e5677f6f 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0574.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0574.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0575.py b/githubkit/versions/ghec_v2022_11_28/models/group_0575.py index 211867dcc..157c04179 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0575.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0575.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -70,9 +69,9 @@ class WebhookIssuesTransferredPropIssue(GitHubModel): active_lock_reason: Union[ None, Literal["resolved", "off-topic", "too heated", "spam"] ] = Field() - assignee: Missing[ - Union[WebhookIssuesTransferredPropIssuePropAssignee, None] - ] = Field(default=UNSET, title="User") + assignee: Missing[Union[WebhookIssuesTransferredPropIssuePropAssignee, None]] = ( + Field(default=UNSET, title="User") + ) assignees: List[ Union[WebhookIssuesTransferredPropIssuePropAssigneesItems, None] ] = Field() @@ -207,9 +206,9 @@ class WebhookIssuesTransferredPropIssuePropMilestone(GitHubModel): closed_at: Union[datetime, None] = Field() closed_issues: int = Field() created_at: datetime = Field() - creator: Union[ - WebhookIssuesTransferredPropIssuePropMilestonePropCreator, None - ] = Field(title="User") + creator: Union[WebhookIssuesTransferredPropIssuePropMilestonePropCreator, None] = ( + Field(title="User") + ) description: Union[str, None] = Field() due_on: Union[datetime, None] = Field() html_url: str = Field() diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0576.py b/githubkit/versions/ghec_v2022_11_28/models/group_0576.py index cbbf2c51b..9a77e407e 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0576.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0576.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -100,12 +99,12 @@ class WebhookIssuesUnassignedPropIssue(GitHubModel): active_lock_reason: Union[ None, Literal["resolved", "off-topic", "too heated", "spam"] ] = Field() - assignee: Missing[ - Union[WebhookIssuesUnassignedPropIssuePropAssignee, None] - ] = Field(default=UNSET, title="User") - assignees: List[ - Union[WebhookIssuesUnassignedPropIssuePropAssigneesItems, None] - ] = Field() + assignee: Missing[Union[WebhookIssuesUnassignedPropIssuePropAssignee, None]] = ( + Field(default=UNSET, title="User") + ) + assignees: List[Union[WebhookIssuesUnassignedPropIssuePropAssigneesItems, None]] = ( + Field() + ) author_association: Literal[ "COLLABORATOR", "CONTRIBUTOR", @@ -241,9 +240,9 @@ class WebhookIssuesUnassignedPropIssuePropMilestone(GitHubModel): closed_at: Union[datetime, None] = Field() closed_issues: int = Field() created_at: datetime = Field() - creator: Union[ - WebhookIssuesUnassignedPropIssuePropMilestonePropCreator, None - ] = Field(title="User") + creator: Union[WebhookIssuesUnassignedPropIssuePropMilestonePropCreator, None] = ( + Field(title="User") + ) description: Union[str, None] = Field() due_on: Union[datetime, None] = Field() html_url: str = Field() diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0577.py b/githubkit/versions/ghec_v2022_11_28/models/group_0577.py index a5f8d8d64..ec7bbc3c4 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0577.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0577.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -89,9 +88,9 @@ class WebhookIssuesUnlabeledPropIssue(GitHubModel): assignee: Missing[Union[WebhookIssuesUnlabeledPropIssuePropAssignee, None]] = Field( default=UNSET, title="User" ) - assignees: List[ - Union[WebhookIssuesUnlabeledPropIssuePropAssigneesItems, None] - ] = Field() + assignees: List[Union[WebhookIssuesUnlabeledPropIssuePropAssigneesItems, None]] = ( + Field() + ) author_association: Literal[ "COLLABORATOR", "CONTRIBUTOR", @@ -227,9 +226,9 @@ class WebhookIssuesUnlabeledPropIssuePropMilestone(GitHubModel): closed_at: Union[datetime, None] = Field() closed_issues: int = Field() created_at: datetime = Field() - creator: Union[ - WebhookIssuesUnlabeledPropIssuePropMilestonePropCreator, None - ] = Field(title="User") + creator: Union[WebhookIssuesUnlabeledPropIssuePropMilestonePropCreator, None] = ( + Field(title="User") + ) description: Union[str, None] = Field() due_on: Union[datetime, None] = Field() html_url: str = Field() diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0578.py b/githubkit/versions/ghec_v2022_11_28/models/group_0578.py index 459a4b36f..6c5696f8a 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0578.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0578.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0579.py b/githubkit/versions/ghec_v2022_11_28/models/group_0579.py index 414b01702..889d7b550 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0579.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0579.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -27,9 +26,9 @@ class WebhookIssuesUnlockedPropIssue(GitHubModel): """WebhookIssuesUnlockedPropIssue""" active_lock_reason: Union[None, None] = Field() - assignee: Missing[ - Union[WebhookIssuesUnlockedPropIssueMergedAssignee, None] - ] = Field(default=UNSET) + assignee: Missing[Union[WebhookIssuesUnlockedPropIssueMergedAssignee, None]] = ( + Field(default=UNSET) + ) assignees: List[WebhookIssuesUnlockedPropIssueMergedAssignees] = Field() author_association: Literal[ "COLLABORATOR", diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0580.py b/githubkit/versions/ghec_v2022_11_28/models/group_0580.py index 43c406fd3..2591bc50a 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0580.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0580.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -33,9 +32,9 @@ class WebhookIssuesUnlockedPropIssueAllof0(GitHubModel): active_lock_reason: Union[ None, Literal["resolved", "off-topic", "too heated", "spam"] ] = Field() - assignee: Missing[ - Union[WebhookIssuesUnlockedPropIssueAllof0PropAssignee, None] - ] = Field(default=UNSET, title="User") + assignee: Missing[Union[WebhookIssuesUnlockedPropIssueAllof0PropAssignee, None]] = ( + Field(default=UNSET, title="User") + ) assignees: List[ Union[WebhookIssuesUnlockedPropIssueAllof0PropAssigneesItems, None] ] = Field() diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0581.py b/githubkit/versions/ghec_v2022_11_28/models/group_0581.py index 4fe4ca14d..7e15acdab 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0581.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0581.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0582.py b/githubkit/versions/ghec_v2022_11_28/models/group_0582.py index 9e81b354a..f22140c24 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0582.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0582.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0583.py b/githubkit/versions/ghec_v2022_11_28/models/group_0583.py index 954301a79..a404df2e4 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0583.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0583.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0584.py b/githubkit/versions/ghec_v2022_11_28/models/group_0584.py index 4814a8704..5996e0229 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0584.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0584.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal @@ -23,9 +22,9 @@ class WebhookIssuesUnlockedPropIssueAllof1(GitHubModel): """WebhookIssuesUnlockedPropIssueAllof1""" active_lock_reason: None = Field() - assignee: Missing[ - Union[WebhookIssuesUnlockedPropIssueAllof1PropAssignee, None] - ] = Field(default=UNSET) + assignee: Missing[Union[WebhookIssuesUnlockedPropIssueAllof1PropAssignee, None]] = ( + Field(default=UNSET) + ) assignees: Missing[ List[Union[WebhookIssuesUnlockedPropIssueAllof1PropAssigneesItems, None]] ] = Field(default=UNSET) diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0585.py b/githubkit/versions/ghec_v2022_11_28/models/group_0585.py index 9a33c1dbd..5b2d340b2 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0585.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0585.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0586.py b/githubkit/versions/ghec_v2022_11_28/models/group_0586.py index 945a399bf..bf35eb911 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0586.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0586.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -72,9 +71,9 @@ class WebhookIssuesUnpinnedPropIssue(GitHubModel): assignee: Missing[Union[WebhookIssuesUnpinnedPropIssuePropAssignee, None]] = Field( default=UNSET, title="User" ) - assignees: List[ - Union[WebhookIssuesUnpinnedPropIssuePropAssigneesItems, None] - ] = Field() + assignees: List[Union[WebhookIssuesUnpinnedPropIssuePropAssigneesItems, None]] = ( + Field() + ) author_association: Literal[ "COLLABORATOR", "CONTRIBUTOR", @@ -206,9 +205,9 @@ class WebhookIssuesUnpinnedPropIssuePropMilestone(GitHubModel): closed_at: Union[datetime, None] = Field() closed_issues: int = Field() created_at: datetime = Field() - creator: Union[ - WebhookIssuesUnpinnedPropIssuePropMilestonePropCreator, None - ] = Field(title="User") + creator: Union[WebhookIssuesUnpinnedPropIssuePropMilestonePropCreator, None] = ( + Field(title="User") + ) description: Union[str, None] = Field() due_on: Union[datetime, None] = Field() html_url: str = Field() diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0587.py b/githubkit/versions/ghec_v2022_11_28/models/group_0587.py index 9f4fc3e78..06ed28ca7 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0587.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0587.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0588.py b/githubkit/versions/ghec_v2022_11_28/models/group_0588.py index 732fd2e2a..653ad0f8f 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0588.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0588.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0589.py b/githubkit/versions/ghec_v2022_11_28/models/group_0589.py index b18fc9546..d52b2dbea 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0589.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0589.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0590.py b/githubkit/versions/ghec_v2022_11_28/models/group_0590.py index 84b151322..a1abbb6b5 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0590.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0590.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0591.py b/githubkit/versions/ghec_v2022_11_28/models/group_0591.py index 50e67907d..a57253605 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0591.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0591.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0592.py b/githubkit/versions/ghec_v2022_11_28/models/group_0592.py index 648a8996f..ea0de8ec5 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0592.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0592.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0593.py b/githubkit/versions/ghec_v2022_11_28/models/group_0593.py index 0423fd5c5..ba6bdb8d2 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0593.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0593.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0594.py b/githubkit/versions/ghec_v2022_11_28/models/group_0594.py index 71c40e335..f3f38708b 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0594.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0594.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0595.py b/githubkit/versions/ghec_v2022_11_28/models/group_0595.py index ce6247cee..30404bd8a 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0595.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0595.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0596.py b/githubkit/versions/ghec_v2022_11_28/models/group_0596.py index f1f87ccb4..f467b82ec 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0596.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0596.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0597.py b/githubkit/versions/ghec_v2022_11_28/models/group_0597.py index 2368b11b5..13be7affa 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0597.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0597.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0598.py b/githubkit/versions/ghec_v2022_11_28/models/group_0598.py index 8669c069e..47a9a59c1 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0598.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0598.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0599.py b/githubkit/versions/ghec_v2022_11_28/models/group_0599.py index efc1097e3..51374a824 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0599.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0599.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0600.py b/githubkit/versions/ghec_v2022_11_28/models/group_0600.py index c0f86c9c1..7a0f98aef 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0600.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0600.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0601.py b/githubkit/versions/ghec_v2022_11_28/models/group_0601.py index 8cca51a50..f103b56eb 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0601.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0601.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0602.py b/githubkit/versions/ghec_v2022_11_28/models/group_0602.py index 8cdd525e2..52e197232 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0602.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0602.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0603.py b/githubkit/versions/ghec_v2022_11_28/models/group_0603.py index 53f7e25d7..4b92f6f5f 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0603.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0603.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0604.py b/githubkit/versions/ghec_v2022_11_28/models/group_0604.py index 1e017f863..d74825d68 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0604.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0604.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0605.py b/githubkit/versions/ghec_v2022_11_28/models/group_0605.py index 2c8463b7e..276b474fc 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0605.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0605.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0606.py b/githubkit/versions/ghec_v2022_11_28/models/group_0606.py index 1782cf71c..aeab39135 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0606.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0606.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0607.py b/githubkit/versions/ghec_v2022_11_28/models/group_0607.py index 0f59be59c..ca1ccc75a 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0607.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0607.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0608.py b/githubkit/versions/ghec_v2022_11_28/models/group_0608.py index 03a36a46a..4417a8b22 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0608.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0608.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0609.py b/githubkit/versions/ghec_v2022_11_28/models/group_0609.py index 29e49bb8f..2f63db280 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0609.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0609.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0610.py b/githubkit/versions/ghec_v2022_11_28/models/group_0610.py index 45484adb5..1863adc59 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0610.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0610.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal @@ -154,10 +153,10 @@ class WebhookMembershipAddedPropTeamPropParent(GitHubModel): description="Permission that the team will have for its repositories" ) privacy: Literal["open", "closed", "secret"] = Field() - notification_setting: Literal[ - "notifications_enabled", "notifications_disabled" - ] = Field( - description="Whether team members will receive notifications when their team is @mentioned" + notification_setting: Literal["notifications_enabled", "notifications_disabled"] = ( + Field( + description="Whether team members will receive notifications when their team is @mentioned" + ) ) repositories_url: str = Field() slug: str = Field() diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0611.py b/githubkit/versions/ghec_v2022_11_28/models/group_0611.py index dcb36f6c2..446c3e267 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0611.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0611.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal @@ -154,10 +153,10 @@ class WebhookMembershipRemovedPropTeamPropParent(GitHubModel): description="Permission that the team will have for its repositories" ) privacy: Literal["open", "closed", "secret"] = Field() - notification_setting: Literal[ - "notifications_enabled", "notifications_disabled" - ] = Field( - description="Whether team members will receive notifications when their team is @mentioned" + notification_setting: Literal["notifications_enabled", "notifications_disabled"] = ( + Field( + description="Whether team members will receive notifications when their team is @mentioned" + ) ) repositories_url: str = Field() slug: str = Field() diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0612.py b/githubkit/versions/ghec_v2022_11_28/models/group_0612.py index 79a8a9bc8..2c160df6e 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0612.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0612.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0613.py b/githubkit/versions/ghec_v2022_11_28/models/group_0613.py index bcc0e9d40..4217ec2e2 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0613.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0613.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0614.py b/githubkit/versions/ghec_v2022_11_28/models/group_0614.py index e5d3026eb..90bc5c861 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0614.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0614.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0615.py b/githubkit/versions/ghec_v2022_11_28/models/group_0615.py index 0567c1f37..1ada65a4b 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0615.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0615.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0616.py b/githubkit/versions/ghec_v2022_11_28/models/group_0616.py index f985fd99f..ed418449f 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0616.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0616.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0617.py b/githubkit/versions/ghec_v2022_11_28/models/group_0617.py index 5628c68de..31efcc177 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0617.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0617.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0618.py b/githubkit/versions/ghec_v2022_11_28/models/group_0618.py index 07b379a4f..b8b327145 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0618.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0618.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0619.py b/githubkit/versions/ghec_v2022_11_28/models/group_0619.py index c546c4cbc..b4e020db3 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0619.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0619.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0620.py b/githubkit/versions/ghec_v2022_11_28/models/group_0620.py index af2178bc4..d6a0926de 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0620.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0620.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0621.py b/githubkit/versions/ghec_v2022_11_28/models/group_0621.py index 4677c3aaf..c6cc05753 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0621.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0621.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0622.py b/githubkit/versions/ghec_v2022_11_28/models/group_0622.py index ce6a7de7f..1a4fd9ad0 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0622.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0622.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0623.py b/githubkit/versions/ghec_v2022_11_28/models/group_0623.py index fc62c1ad9..b0eef10d9 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0623.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0623.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0624.py b/githubkit/versions/ghec_v2022_11_28/models/group_0624.py index c32191e92..950de40b4 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0624.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0624.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -99,9 +98,9 @@ class WebhookOrganizationMemberInvitedPropInvitation(GitHubModel): failed_reason: Union[str, None] = Field() id: float = Field() invitation_teams_url: str = Field() - inviter: Union[ - WebhookOrganizationMemberInvitedPropInvitationPropInviter, None - ] = Field(title="User") + inviter: Union[WebhookOrganizationMemberInvitedPropInvitationPropInviter, None] = ( + Field(title="User") + ) login: Union[str, None] = Field() node_id: str = Field() role: str = Field() diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0625.py b/githubkit/versions/ghec_v2022_11_28/models/group_0625.py index 7d2e55095..e3eeadd3b 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0625.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0625.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0626.py b/githubkit/versions/ghec_v2022_11_28/models/group_0626.py index f52952c1d..6126bf520 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0626.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0626.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0627.py b/githubkit/versions/ghec_v2022_11_28/models/group_0627.py index 0fdb422a3..5e0345a0d 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0627.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0627.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0628.py b/githubkit/versions/ghec_v2022_11_28/models/group_0628.py index d80067580..66982f811 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0628.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0628.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0629.py b/githubkit/versions/ghec_v2022_11_28/models/group_0629.py index 310746308..c0aadd6cf 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0629.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0629.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0630.py b/githubkit/versions/ghec_v2022_11_28/models/group_0630.py index e134e709a..f49b767e0 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0630.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0630.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0631.py b/githubkit/versions/ghec_v2022_11_28/models/group_0631.py index d6048adcc..dd841da91 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0631.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0631.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0632.py b/githubkit/versions/ghec_v2022_11_28/models/group_0632.py index a075ef08d..73d872fa3 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0632.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0632.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0633.py b/githubkit/versions/ghec_v2022_11_28/models/group_0633.py index 2aafb670b..6bcbc261d 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0633.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0633.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal @@ -48,9 +47,9 @@ class WebhookPackageUpdatedPropPackagePropPackageVersion(GitHubModel): ] = Field() package_url: Missing[str] = Field(default=UNSET) prerelease: Missing[bool] = Field(default=UNSET) - release: Missing[ - WebhookPackageUpdatedPropPackagePropPackageVersionPropRelease - ] = Field(default=UNSET) + release: Missing[WebhookPackageUpdatedPropPackagePropPackageVersionPropRelease] = ( + Field(default=UNSET) + ) rubygems_metadata: Missing[List[WebhookRubygemsMetadata]] = Field(default=UNSET) source_url: Missing[str] = Field(default=UNSET) summary: str = Field() diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0634.py b/githubkit/versions/ghec_v2022_11_28/models/group_0634.py index 27facfe7a..fedbb4d08 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0634.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0634.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0635.py b/githubkit/versions/ghec_v2022_11_28/models/group_0635.py index e91f67af1..4e19c1664 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0635.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0635.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0636.py b/githubkit/versions/ghec_v2022_11_28/models/group_0636.py index 86c2d8282..c5449b0df 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0636.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0636.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0637.py b/githubkit/versions/ghec_v2022_11_28/models/group_0637.py index 92f618e59..f73bde147 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0637.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0637.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0638.py b/githubkit/versions/ghec_v2022_11_28/models/group_0638.py index 167c8c701..973c38778 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0638.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0638.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0639.py b/githubkit/versions/ghec_v2022_11_28/models/group_0639.py index e31564a9d..0ea8ec8eb 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0639.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0639.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0640.py b/githubkit/versions/ghec_v2022_11_28/models/group_0640.py index d351e5347..fdc942dac 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0640.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0640.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0641.py b/githubkit/versions/ghec_v2022_11_28/models/group_0641.py index 3ed1628bd..fac71cc70 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0641.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0641.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0642.py b/githubkit/versions/ghec_v2022_11_28/models/group_0642.py index 5872e84e6..9ddbecd2e 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0642.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0642.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0643.py b/githubkit/versions/ghec_v2022_11_28/models/group_0643.py index 299a95a77..d756848cf 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0643.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0643.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0644.py b/githubkit/versions/ghec_v2022_11_28/models/group_0644.py index c35c7e51d..99aa7fce9 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0644.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0644.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0645.py b/githubkit/versions/ghec_v2022_11_28/models/group_0645.py index f04813e3d..542547424 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0645.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0645.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0646.py b/githubkit/versions/ghec_v2022_11_28/models/group_0646.py index 2efa73fdc..f1a7834a5 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0646.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0646.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0647.py b/githubkit/versions/ghec_v2022_11_28/models/group_0647.py index 013d19f7c..8df8ef190 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0647.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0647.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -29,9 +28,9 @@ class WebhookProjectCardMovedPropProjectCardAllof0(GitHubModel): column_url: str = Field() content_url: Missing[str] = Field(default=UNSET) created_at: datetime = Field() - creator: Union[ - WebhookProjectCardMovedPropProjectCardAllof0PropCreator, None - ] = Field(title="User") + creator: Union[WebhookProjectCardMovedPropProjectCardAllof0PropCreator, None] = ( + Field(title="User") + ) id: int = Field(description="The project card's ID") node_id: str = Field() note: Union[str, None] = Field() diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0648.py b/githubkit/versions/ghec_v2022_11_28/models/group_0648.py index 35d561fb1..aeb9c0e62 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0648.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0648.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0649.py b/githubkit/versions/ghec_v2022_11_28/models/group_0649.py index 7a1cabcd4..e96036dda 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0649.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0649.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0650.py b/githubkit/versions/ghec_v2022_11_28/models/group_0650.py index 0dbc0db19..223e939ba 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0650.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0650.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0651.py b/githubkit/versions/ghec_v2022_11_28/models/group_0651.py index b6101aee6..e264856ca 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0651.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0651.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0652.py b/githubkit/versions/ghec_v2022_11_28/models/group_0652.py index 19a925d61..bc6d17854 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0652.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0652.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0653.py b/githubkit/versions/ghec_v2022_11_28/models/group_0653.py index 0be22dea9..36fc0b43c 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0653.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0653.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0654.py b/githubkit/versions/ghec_v2022_11_28/models/group_0654.py index 24460d9d2..366425489 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0654.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0654.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0655.py b/githubkit/versions/ghec_v2022_11_28/models/group_0655.py index 8b0fe7735..f16a18271 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0655.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0655.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0656.py b/githubkit/versions/ghec_v2022_11_28/models/group_0656.py index 1889972a6..cefe5b4a9 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0656.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0656.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0657.py b/githubkit/versions/ghec_v2022_11_28/models/group_0657.py index 099937d49..b47e49f44 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0657.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0657.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0658.py b/githubkit/versions/ghec_v2022_11_28/models/group_0658.py index 2684d2821..be8e3363a 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0658.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0658.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0659.py b/githubkit/versions/ghec_v2022_11_28/models/group_0659.py index ea71678b1..349fa7a75 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0659.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0659.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0660.py b/githubkit/versions/ghec_v2022_11_28/models/group_0660.py index 3055d6bc1..aeb0441ab 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0660.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0660.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0661.py b/githubkit/versions/ghec_v2022_11_28/models/group_0661.py index 93e812ca6..fb49982ac 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0661.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0661.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal @@ -50,9 +49,9 @@ class WebhookProjectsV2ProjectEdited(GitHubModel): class WebhookProjectsV2ProjectEditedPropChanges(GitHubModel): """WebhookProjectsV2ProjectEditedPropChanges""" - description: Missing[ - WebhookProjectsV2ProjectEditedPropChangesPropDescription - ] = Field(default=UNSET) + description: Missing[WebhookProjectsV2ProjectEditedPropChangesPropDescription] = ( + Field(default=UNSET) + ) public: Missing[WebhookProjectsV2ProjectEditedPropChangesPropPublic] = Field( default=UNSET ) diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0662.py b/githubkit/versions/ghec_v2022_11_28/models/group_0662.py index df64a337a..4e21851f1 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0662.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0662.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -51,9 +50,9 @@ class WebhookProjectsV2ItemArchived(GitHubModel): class WebhookProjectsV2ItemArchivedPropChanges(GitHubModel): """WebhookProjectsV2ItemArchivedPropChanges""" - archived_at: Missing[ - WebhookProjectsV2ItemArchivedPropChangesPropArchivedAt - ] = Field(default=UNSET) + archived_at: Missing[WebhookProjectsV2ItemArchivedPropChangesPropArchivedAt] = ( + Field(default=UNSET) + ) class WebhookProjectsV2ItemArchivedPropChangesPropArchivedAt(GitHubModel): diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0663.py b/githubkit/versions/ghec_v2022_11_28/models/group_0663.py index b371fdc93..120761b0a 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0663.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0663.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal @@ -50,9 +49,9 @@ class WebhookProjectsV2ItemConverted(GitHubModel): class WebhookProjectsV2ItemConvertedPropChanges(GitHubModel): """WebhookProjectsV2ItemConvertedPropChanges""" - content_type: Missing[ - WebhookProjectsV2ItemConvertedPropChangesPropContentType - ] = Field(default=UNSET) + content_type: Missing[WebhookProjectsV2ItemConvertedPropChangesPropContentType] = ( + Field(default=UNSET) + ) class WebhookProjectsV2ItemConvertedPropChangesPropContentType(GitHubModel): diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0664.py b/githubkit/versions/ghec_v2022_11_28/models/group_0664.py index f04b5d3b4..74d1648c6 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0664.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0664.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0665.py b/githubkit/versions/ghec_v2022_11_28/models/group_0665.py index b69d2fdc5..e85627103 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0665.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0665.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0666.py b/githubkit/versions/ghec_v2022_11_28/models/group_0666.py index d4c017bb1..baf6079af 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0666.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0666.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0667.py b/githubkit/versions/ghec_v2022_11_28/models/group_0667.py index 0ab9bef48..e80c47907 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0667.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0667.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0668.py b/githubkit/versions/ghec_v2022_11_28/models/group_0668.py index 0f1b6c2f2..45cd45b0b 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0668.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0668.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -51,9 +50,9 @@ class WebhookProjectsV2ItemRestored(GitHubModel): class WebhookProjectsV2ItemRestoredPropChanges(GitHubModel): """WebhookProjectsV2ItemRestoredPropChanges""" - archived_at: Missing[ - WebhookProjectsV2ItemRestoredPropChangesPropArchivedAt - ] = Field(default=UNSET) + archived_at: Missing[WebhookProjectsV2ItemRestoredPropChangesPropArchivedAt] = ( + Field(default=UNSET) + ) class WebhookProjectsV2ItemRestoredPropChangesPropArchivedAt(GitHubModel): diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0669.py b/githubkit/versions/ghec_v2022_11_28/models/group_0669.py index f180b9a1f..a55bca56f 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0669.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0669.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0670.py b/githubkit/versions/ghec_v2022_11_28/models/group_0670.py index aa1f7f3d7..473d71cba 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0670.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0670.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0671.py b/githubkit/versions/ghec_v2022_11_28/models/group_0671.py index e44d7af9c..18804d8f5 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0671.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0671.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -94,9 +93,9 @@ class WebhookPullRequestAssignedPropPullRequest(GitHubModel): None, Literal["resolved", "off-topic", "too heated", "spam"] ] = Field() additions: Missing[int] = Field(default=UNSET) - assignee: Union[ - WebhookPullRequestAssignedPropPullRequestPropAssignee, None - ] = Field(title="User") + assignee: Union[WebhookPullRequestAssignedPropPullRequestPropAssignee, None] = ( + Field(title="User") + ) assignees: List[ Union[WebhookPullRequestAssignedPropPullRequestPropAssigneesItems, None] ] = Field() @@ -113,11 +112,11 @@ class WebhookPullRequestAssignedPropPullRequest(GitHubModel): title="AuthorAssociation", description="How the author is associated with the repository.", ) - auto_merge: Union[ - WebhookPullRequestAssignedPropPullRequestPropAutoMerge, None - ] = Field( - title="PullRequestAutoMerge", - description="The status of auto merging a pull request.", + auto_merge: Union[WebhookPullRequestAssignedPropPullRequestPropAutoMerge, None] = ( + Field( + title="PullRequestAutoMerge", + description="The status of auto merging a pull request.", + ) ) base: WebhookPullRequestAssignedPropPullRequestPropBase = Field() body: Union[str, None] = Field() @@ -151,11 +150,11 @@ class WebhookPullRequestAssignedPropPullRequest(GitHubModel): merged_by: Missing[ Union[WebhookPullRequestAssignedPropPullRequestPropMergedBy, None] ] = Field(default=UNSET, title="User") - milestone: Union[ - WebhookPullRequestAssignedPropPullRequestPropMilestone, None - ] = Field( - title="Milestone", - description="A collection of related issues and pull requests.", + milestone: Union[WebhookPullRequestAssignedPropPullRequestPropMilestone, None] = ( + Field( + title="Milestone", + description="A collection of related issues and pull requests.", + ) ) node_id: str = Field() number: int = Field( @@ -528,9 +527,9 @@ class WebhookPullRequestAssignedPropPullRequestPropBase(GitHubModel): title="Repository", description="A git repository" ) sha: str = Field() - user: Union[ - WebhookPullRequestAssignedPropPullRequestPropBasePropUser, None - ] = Field(title="User") + user: Union[WebhookPullRequestAssignedPropPullRequestPropBasePropUser, None] = ( + Field(title="User") + ) class WebhookPullRequestAssignedPropPullRequestPropBasePropUser(GitHubModel): @@ -681,11 +680,11 @@ class WebhookPullRequestAssignedPropPullRequestPropBasePropRepo(GitHubModel): default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) @@ -767,13 +766,13 @@ class WebhookPullRequestAssignedPropPullRequestPropHead(GitHubModel): label: Union[str, None] = Field() ref: str = Field() - repo: Union[ - WebhookPullRequestAssignedPropPullRequestPropHeadPropRepo, None - ] = Field(title="Repository", description="A git repository") + repo: Union[WebhookPullRequestAssignedPropPullRequestPropHeadPropRepo, None] = ( + Field(title="Repository", description="A git repository") + ) sha: str = Field() - user: Union[ - WebhookPullRequestAssignedPropPullRequestPropHeadPropUser, None - ] = Field(title="User") + user: Union[WebhookPullRequestAssignedPropPullRequestPropHeadPropUser, None] = ( + Field(title="User") + ) class WebhookPullRequestAssignedPropPullRequestPropHeadPropRepo(GitHubModel): @@ -898,11 +897,11 @@ class WebhookPullRequestAssignedPropPullRequestPropHeadPropRepo(GitHubModel): default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0672.py b/githubkit/versions/ghec_v2022_11_28/models/group_0672.py index b1b207235..7e9e79f1f 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0672.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0672.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -115,9 +114,9 @@ class WebhookPullRequestAutoMergeDisabledPropPullRequest(GitHubModel): html_url: str = Field() id: int = Field() issue_url: str = Field() - labels: List[ - WebhookPullRequestAutoMergeDisabledPropPullRequestPropLabelsItems - ] = Field() + labels: List[WebhookPullRequestAutoMergeDisabledPropPullRequestPropLabelsItems] = ( + Field() + ) locked: bool = Field() maintainer_can_modify: Missing[bool] = Field( default=UNSET, @@ -163,9 +162,9 @@ class WebhookPullRequestAutoMergeDisabledPropPullRequest(GitHubModel): title: str = Field(description="The title of the pull request.") updated_at: datetime = Field() url: str = Field() - user: Union[ - WebhookPullRequestAutoMergeDisabledPropPullRequestPropUser, None - ] = Field(title="User") + user: Union[WebhookPullRequestAutoMergeDisabledPropPullRequestPropUser, None] = ( + Field(title="User") + ) class WebhookPullRequestAutoMergeDisabledPropPullRequestPropAssignee(GitHubModel): @@ -672,11 +671,11 @@ class WebhookPullRequestAutoMergeDisabledPropPullRequestPropBasePropRepo(GitHubM default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) @@ -923,11 +922,11 @@ class WebhookPullRequestAutoMergeDisabledPropPullRequestPropHeadPropRepo(GitHubM default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0673.py b/githubkit/versions/ghec_v2022_11_28/models/group_0673.py index fb6963c88..0a8304603 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0673.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0673.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -113,9 +112,9 @@ class WebhookPullRequestAutoMergeEnabledPropPullRequest(GitHubModel): html_url: str = Field() id: int = Field() issue_url: str = Field() - labels: List[ - WebhookPullRequestAutoMergeEnabledPropPullRequestPropLabelsItems - ] = Field() + labels: List[WebhookPullRequestAutoMergeEnabledPropPullRequestPropLabelsItems] = ( + Field() + ) locked: bool = Field() maintainer_can_modify: Missing[bool] = Field( default=UNSET, @@ -161,9 +160,9 @@ class WebhookPullRequestAutoMergeEnabledPropPullRequest(GitHubModel): title: str = Field(description="The title of the pull request.") updated_at: datetime = Field() url: str = Field() - user: Union[ - WebhookPullRequestAutoMergeEnabledPropPullRequestPropUser, None - ] = Field(title="User") + user: Union[WebhookPullRequestAutoMergeEnabledPropPullRequestPropUser, None] = ( + Field(title="User") + ) class WebhookPullRequestAutoMergeEnabledPropPullRequestPropAssignee(GitHubModel): @@ -671,11 +670,11 @@ class WebhookPullRequestAutoMergeEnabledPropPullRequestPropBasePropRepo(GitHubMo default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) @@ -919,11 +918,11 @@ class WebhookPullRequestAutoMergeEnabledPropPullRequestPropHeadPropRepo(GitHubMo default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0674.py b/githubkit/versions/ghec_v2022_11_28/models/group_0674.py index 2f2df99bb..51e278edd 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0674.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0674.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0675.py b/githubkit/versions/ghec_v2022_11_28/models/group_0675.py index 02f3210cd..ad77ca744 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0675.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0675.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -127,11 +126,11 @@ class WebhookPullRequestClosedPropPullRequest(GitHubModel): default=UNSET, description="The default value for a squash merge commit message:\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) use_squash_pr_title_as_default: Missing[bool] = Field( default=UNSET, diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0676.py b/githubkit/versions/ghec_v2022_11_28/models/group_0676.py index bb8b667e6..5302207da 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0676.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0676.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal @@ -47,11 +46,11 @@ class WebhookPullRequestClosedPropPullRequestAllof1(GitHubModel): default=UNSET, description="The default value for a squash merge commit message:\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) use_squash_pr_title_as_default: Missing[bool] = Field( default=UNSET, diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0677.py b/githubkit/versions/ghec_v2022_11_28/models/group_0677.py index 9bae4b6b6..92c77c0be 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0677.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0677.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0678.py b/githubkit/versions/ghec_v2022_11_28/models/group_0678.py index c07f3d0b0..3f0a3f8d9 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0678.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0678.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -127,11 +126,11 @@ class WebhookPullRequestConvertedToDraftPropPullRequest(GitHubModel): default=UNSET, description="The default value for a squash merge commit message:\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) use_squash_pr_title_as_default: Missing[bool] = Field( default=UNSET, diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0679.py b/githubkit/versions/ghec_v2022_11_28/models/group_0679.py index 4a0089d69..1fa7f5f5a 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0679.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0679.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal @@ -47,11 +46,11 @@ class WebhookPullRequestConvertedToDraftPropPullRequestAllof1(GitHubModel): default=UNSET, description="The default value for a squash merge commit message:\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) use_squash_pr_title_as_default: Missing[bool] = Field( default=UNSET, diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0680.py b/githubkit/versions/ghec_v2022_11_28/models/group_0680.py index bf756f0ef..907b976b4 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0680.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0680.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -70,9 +69,9 @@ class WebhookPullRequestDemilestonedPropPullRequest(GitHubModel): None, Literal["resolved", "off-topic", "too heated", "spam"] ] = Field() additions: Missing[int] = Field(default=UNSET) - assignee: Union[ - WebhookPullRequestDemilestonedPropPullRequestPropAssignee, None - ] = Field(title="User") + assignee: Union[WebhookPullRequestDemilestonedPropPullRequestPropAssignee, None] = ( + Field(title="User") + ) assignees: List[ Union[WebhookPullRequestDemilestonedPropPullRequestPropAssigneesItems, None] ] = Field() @@ -512,9 +511,9 @@ class WebhookPullRequestDemilestonedPropPullRequestPropBase(GitHubModel): title="Repository", description="A git repository" ) sha: str = Field() - user: Union[ - WebhookPullRequestDemilestonedPropPullRequestPropBasePropUser, None - ] = Field(title="User") + user: Union[WebhookPullRequestDemilestonedPropPullRequestPropBasePropUser, None] = ( + Field(title="User") + ) class WebhookPullRequestDemilestonedPropPullRequestPropBasePropUser(GitHubModel): @@ -665,11 +664,11 @@ class WebhookPullRequestDemilestonedPropPullRequestPropBasePropRepo(GitHubModel) default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) @@ -759,9 +758,9 @@ class WebhookPullRequestDemilestonedPropPullRequestPropHead(GitHubModel): title="Repository", description="A git repository" ) sha: str = Field() - user: Union[ - WebhookPullRequestDemilestonedPropPullRequestPropHeadPropUser, None - ] = Field(title="User") + user: Union[WebhookPullRequestDemilestonedPropPullRequestPropHeadPropUser, None] = ( + Field(title="User") + ) class WebhookPullRequestDemilestonedPropPullRequestPropHeadPropUser(GitHubModel): @@ -912,11 +911,11 @@ class WebhookPullRequestDemilestonedPropPullRequestPropHeadPropRepo(GitHubModel) default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0681.py b/githubkit/versions/ghec_v2022_11_28/models/group_0681.py index 9b4ee7b96..218d456ba 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0681.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0681.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -68,9 +67,9 @@ class WebhookPullRequestDequeuedPropPullRequest(GitHubModel): None, Literal["resolved", "off-topic", "too heated", "spam"] ] = Field() additions: Missing[int] = Field(default=UNSET) - assignee: Union[ - WebhookPullRequestDequeuedPropPullRequestPropAssignee, None - ] = Field(title="User") + assignee: Union[WebhookPullRequestDequeuedPropPullRequestPropAssignee, None] = ( + Field(title="User") + ) assignees: List[ Union[WebhookPullRequestDequeuedPropPullRequestPropAssigneesItems, None] ] = Field() @@ -87,11 +86,11 @@ class WebhookPullRequestDequeuedPropPullRequest(GitHubModel): title="AuthorAssociation", description="How the author is associated with the repository.", ) - auto_merge: Union[ - WebhookPullRequestDequeuedPropPullRequestPropAutoMerge, None - ] = Field( - title="PullRequestAutoMerge", - description="The status of auto merging a pull request.", + auto_merge: Union[WebhookPullRequestDequeuedPropPullRequestPropAutoMerge, None] = ( + Field( + title="PullRequestAutoMerge", + description="The status of auto merging a pull request.", + ) ) base: WebhookPullRequestDequeuedPropPullRequestPropBase = Field() body: Union[str, None] = Field() @@ -125,11 +124,11 @@ class WebhookPullRequestDequeuedPropPullRequest(GitHubModel): merged_by: Missing[ Union[WebhookPullRequestDequeuedPropPullRequestPropMergedBy, None] ] = Field(default=UNSET, title="User") - milestone: Union[ - WebhookPullRequestDequeuedPropPullRequestPropMilestone, None - ] = Field( - title="Milestone", - description="A collection of related issues and pull requests.", + milestone: Union[WebhookPullRequestDequeuedPropPullRequestPropMilestone, None] = ( + Field( + title="Milestone", + description="A collection of related issues and pull requests.", + ) ) node_id: str = Field() number: int = Field( @@ -496,9 +495,9 @@ class WebhookPullRequestDequeuedPropPullRequestPropBase(GitHubModel): title="Repository", description="A git repository" ) sha: str = Field() - user: Union[ - WebhookPullRequestDequeuedPropPullRequestPropBasePropUser, None - ] = Field(title="User") + user: Union[WebhookPullRequestDequeuedPropPullRequestPropBasePropUser, None] = ( + Field(title="User") + ) class WebhookPullRequestDequeuedPropPullRequestPropBasePropUser(GitHubModel): @@ -649,11 +648,11 @@ class WebhookPullRequestDequeuedPropPullRequestPropBasePropRepo(GitHubModel): default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) @@ -739,9 +738,9 @@ class WebhookPullRequestDequeuedPropPullRequestPropHead(GitHubModel): title="Repository", description="A git repository" ) sha: str = Field() - user: Union[ - WebhookPullRequestDequeuedPropPullRequestPropHeadPropUser, None - ] = Field(title="User") + user: Union[WebhookPullRequestDequeuedPropPullRequestPropHeadPropUser, None] = ( + Field(title="User") + ) class WebhookPullRequestDequeuedPropPullRequestPropHeadPropUser(GitHubModel): @@ -892,11 +891,11 @@ class WebhookPullRequestDequeuedPropPullRequestPropHeadPropRepo(GitHubModel): default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0682.py b/githubkit/versions/ghec_v2022_11_28/models/group_0682.py index f1511fa66..8e529e9f2 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0682.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0682.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0683.py b/githubkit/versions/ghec_v2022_11_28/models/group_0683.py index 33a0066da..07337b124 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0683.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0683.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -127,11 +126,11 @@ class WebhookPullRequestEditedPropPullRequest(GitHubModel): default=UNSET, description="The default value for a squash merge commit message:\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) use_squash_pr_title_as_default: Missing[bool] = Field( default=UNSET, diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0684.py b/githubkit/versions/ghec_v2022_11_28/models/group_0684.py index eaa81b0ec..4d5b0bb81 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0684.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0684.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal @@ -47,11 +46,11 @@ class WebhookPullRequestEditedPropPullRequestAllof1(GitHubModel): default=UNSET, description="The default value for a squash merge commit message:\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) use_squash_pr_title_as_default: Missing[bool] = Field( default=UNSET, diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0685.py b/githubkit/versions/ghec_v2022_11_28/models/group_0685.py index 3cc3d3ea9..f61a671b4 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0685.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0685.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -67,9 +66,9 @@ class WebhookPullRequestEnqueuedPropPullRequest(GitHubModel): None, Literal["resolved", "off-topic", "too heated", "spam"] ] = Field() additions: Missing[int] = Field(default=UNSET) - assignee: Union[ - WebhookPullRequestEnqueuedPropPullRequestPropAssignee, None - ] = Field(title="User") + assignee: Union[WebhookPullRequestEnqueuedPropPullRequestPropAssignee, None] = ( + Field(title="User") + ) assignees: List[ Union[WebhookPullRequestEnqueuedPropPullRequestPropAssigneesItems, None] ] = Field() @@ -86,11 +85,11 @@ class WebhookPullRequestEnqueuedPropPullRequest(GitHubModel): title="AuthorAssociation", description="How the author is associated with the repository.", ) - auto_merge: Union[ - WebhookPullRequestEnqueuedPropPullRequestPropAutoMerge, None - ] = Field( - title="PullRequestAutoMerge", - description="The status of auto merging a pull request.", + auto_merge: Union[WebhookPullRequestEnqueuedPropPullRequestPropAutoMerge, None] = ( + Field( + title="PullRequestAutoMerge", + description="The status of auto merging a pull request.", + ) ) base: WebhookPullRequestEnqueuedPropPullRequestPropBase = Field() body: Union[str, None] = Field() @@ -124,11 +123,11 @@ class WebhookPullRequestEnqueuedPropPullRequest(GitHubModel): merged_by: Missing[ Union[WebhookPullRequestEnqueuedPropPullRequestPropMergedBy, None] ] = Field(default=UNSET, title="User") - milestone: Union[ - WebhookPullRequestEnqueuedPropPullRequestPropMilestone, None - ] = Field( - title="Milestone", - description="A collection of related issues and pull requests.", + milestone: Union[WebhookPullRequestEnqueuedPropPullRequestPropMilestone, None] = ( + Field( + title="Milestone", + description="A collection of related issues and pull requests.", + ) ) node_id: str = Field() number: int = Field( @@ -495,9 +494,9 @@ class WebhookPullRequestEnqueuedPropPullRequestPropBase(GitHubModel): title="Repository", description="A git repository" ) sha: str = Field() - user: Union[ - WebhookPullRequestEnqueuedPropPullRequestPropBasePropUser, None - ] = Field(title="User") + user: Union[WebhookPullRequestEnqueuedPropPullRequestPropBasePropUser, None] = ( + Field(title="User") + ) class WebhookPullRequestEnqueuedPropPullRequestPropBasePropUser(GitHubModel): @@ -648,11 +647,11 @@ class WebhookPullRequestEnqueuedPropPullRequestPropBasePropRepo(GitHubModel): default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) @@ -738,9 +737,9 @@ class WebhookPullRequestEnqueuedPropPullRequestPropHead(GitHubModel): title="Repository", description="A git repository" ) sha: str = Field() - user: Union[ - WebhookPullRequestEnqueuedPropPullRequestPropHeadPropUser, None - ] = Field(title="User") + user: Union[WebhookPullRequestEnqueuedPropPullRequestPropHeadPropUser, None] = ( + Field(title="User") + ) class WebhookPullRequestEnqueuedPropPullRequestPropHeadPropUser(GitHubModel): @@ -891,11 +890,11 @@ class WebhookPullRequestEnqueuedPropPullRequestPropHeadPropRepo(GitHubModel): default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0686.py b/githubkit/versions/ghec_v2022_11_28/models/group_0686.py index b5d291540..99ff23437 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0686.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0686.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -101,11 +100,11 @@ class WebhookPullRequestLabeledPropPullRequest(GitHubModel): title="AuthorAssociation", description="How the author is associated with the repository.", ) - auto_merge: Union[ - WebhookPullRequestLabeledPropPullRequestPropAutoMerge, None - ] = Field( - title="PullRequestAutoMerge", - description="The status of auto merging a pull request.", + auto_merge: Union[WebhookPullRequestLabeledPropPullRequestPropAutoMerge, None] = ( + Field( + title="PullRequestAutoMerge", + description="The status of auto merging a pull request.", + ) ) base: WebhookPullRequestLabeledPropPullRequestPropBase = Field() body: Union[str, None] = Field() @@ -139,11 +138,11 @@ class WebhookPullRequestLabeledPropPullRequest(GitHubModel): merged_by: Missing[ Union[WebhookPullRequestLabeledPropPullRequestPropMergedBy, None] ] = Field(default=UNSET, title="User") - milestone: Union[ - WebhookPullRequestLabeledPropPullRequestPropMilestone, None - ] = Field( - title="Milestone", - description="A collection of related issues and pull requests.", + milestone: Union[WebhookPullRequestLabeledPropPullRequestPropMilestone, None] = ( + Field( + title="Milestone", + description="A collection of related issues and pull requests.", + ) ) node_id: str = Field() number: int = Field( @@ -671,11 +670,11 @@ class WebhookPullRequestLabeledPropPullRequestPropBasePropRepo(GitHubModel): default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) @@ -888,11 +887,11 @@ class WebhookPullRequestLabeledPropPullRequestPropHeadPropRepo(GitHubModel): default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0687.py b/githubkit/versions/ghec_v2022_11_28/models/group_0687.py index eb84be184..5fca9a6b8 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0687.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0687.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -84,11 +83,11 @@ class WebhookPullRequestLockedPropPullRequest(GitHubModel): title="AuthorAssociation", description="How the author is associated with the repository.", ) - auto_merge: Union[ - WebhookPullRequestLockedPropPullRequestPropAutoMerge, None - ] = Field( - title="PullRequestAutoMerge", - description="The status of auto merging a pull request.", + auto_merge: Union[WebhookPullRequestLockedPropPullRequestPropAutoMerge, None] = ( + Field( + title="PullRequestAutoMerge", + description="The status of auto merging a pull request.", + ) ) base: WebhookPullRequestLockedPropPullRequestPropBase = Field() body: Union[str, None] = Field() @@ -122,11 +121,11 @@ class WebhookPullRequestLockedPropPullRequest(GitHubModel): merged_by: Missing[ Union[WebhookPullRequestLockedPropPullRequestPropMergedBy, None] ] = Field(default=UNSET, title="User") - milestone: Union[ - WebhookPullRequestLockedPropPullRequestPropMilestone, None - ] = Field( - title="Milestone", - description="A collection of related issues and pull requests.", + milestone: Union[WebhookPullRequestLockedPropPullRequestPropMilestone, None] = ( + Field( + title="Milestone", + description="A collection of related issues and pull requests.", + ) ) node_id: str = Field() number: int = Field( @@ -648,11 +647,11 @@ class WebhookPullRequestLockedPropPullRequestPropBasePropRepo(GitHubModel): default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) @@ -865,11 +864,11 @@ class WebhookPullRequestLockedPropPullRequestPropHeadPropRepo(GitHubModel): default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0688.py b/githubkit/versions/ghec_v2022_11_28/models/group_0688.py index db0a57fcf..28a7a6ebf 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0688.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0688.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -68,9 +67,9 @@ class WebhookPullRequestMilestonedPropPullRequest(GitHubModel): None, Literal["resolved", "off-topic", "too heated", "spam"] ] = Field() additions: Missing[int] = Field(default=UNSET) - assignee: Union[ - WebhookPullRequestMilestonedPropPullRequestPropAssignee, None - ] = Field(title="User") + assignee: Union[WebhookPullRequestMilestonedPropPullRequestPropAssignee, None] = ( + Field(title="User") + ) assignees: List[ Union[WebhookPullRequestMilestonedPropPullRequestPropAssigneesItems, None] ] = Field() @@ -125,11 +124,11 @@ class WebhookPullRequestMilestonedPropPullRequest(GitHubModel): merged_by: Missing[ Union[WebhookPullRequestMilestonedPropPullRequestPropMergedBy, None] ] = Field(default=UNSET, title="User") - milestone: Union[ - WebhookPullRequestMilestonedPropPullRequestPropMilestone, None - ] = Field( - title="Milestone", - description="A collection of related issues and pull requests.", + milestone: Union[WebhookPullRequestMilestonedPropPullRequestPropMilestone, None] = ( + Field( + title="Milestone", + description="A collection of related issues and pull requests.", + ) ) node_id: str = Field() number: int = Field( @@ -508,9 +507,9 @@ class WebhookPullRequestMilestonedPropPullRequestPropBase(GitHubModel): title="Repository", description="A git repository" ) sha: str = Field() - user: Union[ - WebhookPullRequestMilestonedPropPullRequestPropBasePropUser, None - ] = Field(title="User") + user: Union[WebhookPullRequestMilestonedPropPullRequestPropBasePropUser, None] = ( + Field(title="User") + ) class WebhookPullRequestMilestonedPropPullRequestPropBasePropUser(GitHubModel): @@ -661,11 +660,11 @@ class WebhookPullRequestMilestonedPropPullRequestPropBasePropRepo(GitHubModel): default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) @@ -753,9 +752,9 @@ class WebhookPullRequestMilestonedPropPullRequestPropHead(GitHubModel): title="Repository", description="A git repository" ) sha: str = Field() - user: Union[ - WebhookPullRequestMilestonedPropPullRequestPropHeadPropUser, None - ] = Field(title="User") + user: Union[WebhookPullRequestMilestonedPropPullRequestPropHeadPropUser, None] = ( + Field(title="User") + ) class WebhookPullRequestMilestonedPropPullRequestPropHeadPropUser(GitHubModel): @@ -906,11 +905,11 @@ class WebhookPullRequestMilestonedPropPullRequestPropHeadPropRepo(GitHubModel): default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0689.py b/githubkit/versions/ghec_v2022_11_28/models/group_0689.py index d5ff19d0e..1aa89703d 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0689.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0689.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0690.py b/githubkit/versions/ghec_v2022_11_28/models/group_0690.py index 40f3a072e..6cdb5612b 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0690.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0690.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -127,11 +126,11 @@ class WebhookPullRequestOpenedPropPullRequest(GitHubModel): default=UNSET, description="The default value for a squash merge commit message:\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) use_squash_pr_title_as_default: Missing[bool] = Field( default=UNSET, diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0691.py b/githubkit/versions/ghec_v2022_11_28/models/group_0691.py index 8a88c1b4b..0c4870ab5 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0691.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0691.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal @@ -47,11 +46,11 @@ class WebhookPullRequestOpenedPropPullRequestAllof1(GitHubModel): default=UNSET, description="The default value for a squash merge commit message:\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) use_squash_pr_title_as_default: Missing[bool] = Field( default=UNSET, diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0692.py b/githubkit/versions/ghec_v2022_11_28/models/group_0692.py index c02c0b121..5edd0d171 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0692.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0692.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0693.py b/githubkit/versions/ghec_v2022_11_28/models/group_0693.py index 9be7be32d..1da9e97d1 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0693.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0693.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -127,11 +126,11 @@ class WebhookPullRequestReadyForReviewPropPullRequest(GitHubModel): default=UNSET, description="The default value for a squash merge commit message:\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) use_squash_pr_title_as_default: Missing[bool] = Field( default=UNSET, diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0694.py b/githubkit/versions/ghec_v2022_11_28/models/group_0694.py index c4925c0ed..adb6035a1 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0694.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0694.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal @@ -47,11 +46,11 @@ class WebhookPullRequestReadyForReviewPropPullRequestAllof1(GitHubModel): default=UNSET, description="The default value for a squash merge commit message:\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) use_squash_pr_title_as_default: Missing[bool] = Field( default=UNSET, diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0695.py b/githubkit/versions/ghec_v2022_11_28/models/group_0695.py index 05b0af262..b423015a1 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0695.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0695.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0696.py b/githubkit/versions/ghec_v2022_11_28/models/group_0696.py index 1a8e9d4fa..c184c464b 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0696.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0696.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -127,11 +126,11 @@ class WebhookPullRequestReopenedPropPullRequest(GitHubModel): default=UNSET, description="The default value for a squash merge commit message:\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) use_squash_pr_title_as_default: Missing[bool] = Field( default=UNSET, diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0697.py b/githubkit/versions/ghec_v2022_11_28/models/group_0697.py index ea7cda6ee..ff0c36671 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0697.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0697.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal @@ -47,11 +46,11 @@ class WebhookPullRequestReopenedPropPullRequestAllof1(GitHubModel): default=UNSET, description="The default value for a squash merge commit message:\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) use_squash_pr_title_as_default: Missing[bool] = Field( default=UNSET, diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0698.py b/githubkit/versions/ghec_v2022_11_28/models/group_0698.py index ffb836857..3e281941f 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0698.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0698.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -144,9 +143,9 @@ class WebhookPullRequestReviewCommentCreatedPropComment(GitHubModel): ) updated_at: datetime = Field() url: str = Field(description="URL for the pull request review comment") - user: Union[ - WebhookPullRequestReviewCommentCreatedPropCommentPropUser, None - ] = Field(title="User") + user: Union[WebhookPullRequestReviewCommentCreatedPropCommentPropUser, None] = ( + Field(title="User") + ) class WebhookPullRequestReviewCommentCreatedPropCommentPropReactions(GitHubModel): @@ -306,9 +305,9 @@ class WebhookPullRequestReviewCommentCreatedPropPullRequest(GitHubModel): title: str = Field() updated_at: str = Field() url: str = Field() - user: Union[ - WebhookPullRequestReviewCommentCreatedPropPullRequestPropUser, None - ] = Field(title="User") + user: Union[WebhookPullRequestReviewCommentCreatedPropPullRequestPropUser, None] = ( + Field(title="User") + ) class WebhookPullRequestReviewCommentCreatedPropPullRequestPropAssignee(GitHubModel): @@ -808,11 +807,11 @@ class WebhookPullRequestReviewCommentCreatedPropPullRequestPropBasePropRepo( default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) @@ -1035,11 +1034,11 @@ class WebhookPullRequestReviewCommentCreatedPropPullRequestPropHeadPropRepo( default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0699.py b/githubkit/versions/ghec_v2022_11_28/models/group_0699.py index b39752bb2..2b73f5d91 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0699.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0699.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -144,9 +143,9 @@ class WebhookPullRequestReviewCommentDeletedPropComment(GitHubModel): ) updated_at: datetime = Field() url: str = Field(description="URL for the pull request review comment") - user: Union[ - WebhookPullRequestReviewCommentDeletedPropCommentPropUser, None - ] = Field(title="User") + user: Union[WebhookPullRequestReviewCommentDeletedPropCommentPropUser, None] = ( + Field(title="User") + ) class WebhookPullRequestReviewCommentDeletedPropCommentPropReactions(GitHubModel): @@ -306,9 +305,9 @@ class WebhookPullRequestReviewCommentDeletedPropPullRequest(GitHubModel): title: str = Field() updated_at: str = Field() url: str = Field() - user: Union[ - WebhookPullRequestReviewCommentDeletedPropPullRequestPropUser, None - ] = Field(title="User") + user: Union[WebhookPullRequestReviewCommentDeletedPropPullRequestPropUser, None] = ( + Field(title="User") + ) class WebhookPullRequestReviewCommentDeletedPropPullRequestPropAssignee(GitHubModel): @@ -800,11 +799,11 @@ class WebhookPullRequestReviewCommentDeletedPropPullRequestPropBasePropRepo( default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) @@ -1027,11 +1026,11 @@ class WebhookPullRequestReviewCommentDeletedPropPullRequestPropHeadPropRepo( default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0700.py b/githubkit/versions/ghec_v2022_11_28/models/group_0700.py index 665a66b24..b38f01234 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0700.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0700.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -325,9 +324,9 @@ class WebhookPullRequestReviewCommentEditedPropPullRequest(GitHubModel): title: str = Field() updated_at: str = Field() url: str = Field() - user: Union[ - WebhookPullRequestReviewCommentEditedPropPullRequestPropUser, None - ] = Field(title="User") + user: Union[WebhookPullRequestReviewCommentEditedPropPullRequestPropUser, None] = ( + Field(title="User") + ) class WebhookPullRequestReviewCommentEditedPropPullRequestPropAssignee(GitHubModel): @@ -817,11 +816,11 @@ class WebhookPullRequestReviewCommentEditedPropPullRequestPropBasePropRepo(GitHu default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) @@ -1042,11 +1041,11 @@ class WebhookPullRequestReviewCommentEditedPropPullRequestPropHeadPropRepo(GitHu default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0701.py b/githubkit/versions/ghec_v2022_11_28/models/group_0701.py index 3d82d862c..20d813ba0 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0701.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0701.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -191,9 +190,9 @@ class WebhookPullRequestReviewDismissedPropPullRequest(GitHubModel): html_url: str = Field() id: int = Field() issue_url: str = Field() - labels: List[ - WebhookPullRequestReviewDismissedPropPullRequestPropLabelsItems - ] = Field() + labels: List[WebhookPullRequestReviewDismissedPropPullRequestPropLabelsItems] = ( + Field() + ) locked: bool = Field() merge_commit_sha: Union[str, None] = Field() merged_at: Union[str, None] = Field() @@ -706,11 +705,11 @@ class WebhookPullRequestReviewDismissedPropPullRequestPropBasePropRepo(GitHubMod default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) @@ -928,11 +927,11 @@ class WebhookPullRequestReviewDismissedPropPullRequestPropHeadPropRepo(GitHubMod default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0702.py b/githubkit/versions/ghec_v2022_11_28/models/group_0702.py index 94ed5b5c9..2466f32be 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0702.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0702.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -170,9 +169,9 @@ class WebhookPullRequestReviewEditedPropPullRequest(GitHubModel): active_lock_reason: Union[ None, Literal["resolved", "off-topic", "too heated", "spam"] ] = Field() - assignee: Union[ - WebhookPullRequestReviewEditedPropPullRequestPropAssignee, None - ] = Field(title="User") + assignee: Union[WebhookPullRequestReviewEditedPropPullRequestPropAssignee, None] = ( + Field(title="User") + ) assignees: List[ Union[WebhookPullRequestReviewEditedPropPullRequestPropAssigneesItems, None] ] = Field() @@ -564,9 +563,9 @@ class WebhookPullRequestReviewEditedPropPullRequestPropBase(GitHubModel): title="Repository", description="A git repository" ) sha: str = Field() - user: Union[ - WebhookPullRequestReviewEditedPropPullRequestPropBasePropUser, None - ] = Field(title="User") + user: Union[WebhookPullRequestReviewEditedPropPullRequestPropBasePropUser, None] = ( + Field(title="User") + ) class WebhookPullRequestReviewEditedPropPullRequestPropBasePropUser(GitHubModel): @@ -776,13 +775,13 @@ class WebhookPullRequestReviewEditedPropPullRequestPropHead(GitHubModel): label: str = Field() ref: str = Field() - repo: Union[ - WebhookPullRequestReviewEditedPropPullRequestPropHeadPropRepo, None - ] = Field(title="Repository", description="A git repository") + repo: Union[WebhookPullRequestReviewEditedPropPullRequestPropHeadPropRepo, None] = ( + Field(title="Repository", description="A git repository") + ) sha: str = Field() - user: Union[ - WebhookPullRequestReviewEditedPropPullRequestPropHeadPropUser, None - ] = Field(title="User") + user: Union[WebhookPullRequestReviewEditedPropPullRequestPropHeadPropUser, None] = ( + Field(title="User") + ) class WebhookPullRequestReviewEditedPropPullRequestPropHeadPropRepo(GitHubModel): diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0703.py b/githubkit/versions/ghec_v2022_11_28/models/group_0703.py index 7e8683651..576884b94 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0703.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0703.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -724,10 +723,11 @@ class WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropBasePropRep default=UNSET, description="The default value for a squash merge commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, description="The default value for a squash merge commit title." + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title.", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) @@ -979,11 +979,11 @@ class WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropHeadPropRep default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0704.py b/githubkit/versions/ghec_v2022_11_28/models/group_0704.py index c0e440568..d6987f056 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0704.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0704.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -747,11 +746,11 @@ class WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropBasePropRep default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) @@ -1003,11 +1002,11 @@ class WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropHeadPropRep default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0705.py b/githubkit/versions/ghec_v2022_11_28/models/group_0705.py index dd79d2bfc..dceeb8638 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0705.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0705.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -722,11 +721,11 @@ class WebhookPullRequestReviewRequestedOneof0PropPullRequestPropBasePropRepo( default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) @@ -977,11 +976,11 @@ class WebhookPullRequestReviewRequestedOneof0PropPullRequestPropHeadPropRepo( default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0706.py b/githubkit/versions/ghec_v2022_11_28/models/group_0706.py index 6afd71098..2c44c2740 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0706.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0706.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -741,11 +740,11 @@ class WebhookPullRequestReviewRequestedOneof1PropPullRequestPropBasePropRepo( default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) @@ -996,11 +995,11 @@ class WebhookPullRequestReviewRequestedOneof1PropPullRequestPropHeadPropRepo( default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0707.py b/githubkit/versions/ghec_v2022_11_28/models/group_0707.py index 027db40c1..4cfce915c 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0707.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0707.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -189,9 +188,9 @@ class WebhookPullRequestReviewSubmittedPropPullRequest(GitHubModel): html_url: str = Field() id: int = Field() issue_url: str = Field() - labels: List[ - WebhookPullRequestReviewSubmittedPropPullRequestPropLabelsItems - ] = Field() + labels: List[WebhookPullRequestReviewSubmittedPropPullRequestPropLabelsItems] = ( + Field() + ) locked: bool = Field() merge_commit_sha: Union[str, None] = Field() merged_at: Union[str, None] = Field() @@ -706,11 +705,11 @@ class WebhookPullRequestReviewSubmittedPropPullRequestPropBasePropRepo(GitHubMod default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) @@ -928,11 +927,11 @@ class WebhookPullRequestReviewSubmittedPropPullRequestPropHeadPropRepo(GitHubMod default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0708.py b/githubkit/versions/ghec_v2022_11_28/models/group_0708.py index f52276ee5..2e62a4c8b 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0708.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0708.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -141,9 +140,9 @@ class WebhookPullRequestReviewThreadResolvedPropPullRequest(GitHubModel): title: str = Field() updated_at: str = Field() url: str = Field() - user: Union[ - WebhookPullRequestReviewThreadResolvedPropPullRequestPropUser, None - ] = Field(title="User") + user: Union[WebhookPullRequestReviewThreadResolvedPropPullRequestPropUser, None] = ( + Field(title="User") + ) class WebhookPullRequestReviewThreadResolvedPropPullRequestPropAssignee(GitHubModel): diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0709.py b/githubkit/versions/ghec_v2022_11_28/models/group_0709.py index 3f2d9ffbb..c3181722b 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0709.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0709.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0710.py b/githubkit/versions/ghec_v2022_11_28/models/group_0710.py index 1993cc218..1570e1809 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0710.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0710.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -69,9 +68,9 @@ class WebhookPullRequestSynchronizePropPullRequest(GitHubModel): None, Literal["resolved", "off-topic", "too heated", "spam"] ] = Field() additions: Missing[int] = Field(default=UNSET) - assignee: Union[ - WebhookPullRequestSynchronizePropPullRequestPropAssignee, None - ] = Field(title="User") + assignee: Union[WebhookPullRequestSynchronizePropPullRequestPropAssignee, None] = ( + Field(title="User") + ) assignees: List[ Union[WebhookPullRequestSynchronizePropPullRequestPropAssigneesItems, None] ] = Field() @@ -509,9 +508,9 @@ class WebhookPullRequestSynchronizePropPullRequestPropBase(GitHubModel): title="Repository", description="A git repository" ) sha: str = Field() - user: Union[ - WebhookPullRequestSynchronizePropPullRequestPropBasePropUser, None - ] = Field(title="User") + user: Union[WebhookPullRequestSynchronizePropPullRequestPropBasePropUser, None] = ( + Field(title="User") + ) class WebhookPullRequestSynchronizePropPullRequestPropBasePropUser(GitHubModel): @@ -662,11 +661,11 @@ class WebhookPullRequestSynchronizePropPullRequestPropBasePropRepo(GitHubModel): default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) @@ -756,9 +755,9 @@ class WebhookPullRequestSynchronizePropPullRequestPropHead(GitHubModel): title="Repository", description="A git repository" ) sha: str = Field() - user: Union[ - WebhookPullRequestSynchronizePropPullRequestPropHeadPropUser, None - ] = Field(title="User") + user: Union[WebhookPullRequestSynchronizePropPullRequestPropHeadPropUser, None] = ( + Field(title="User") + ) class WebhookPullRequestSynchronizePropPullRequestPropHeadPropUser(GitHubModel): @@ -907,11 +906,11 @@ class WebhookPullRequestSynchronizePropPullRequestPropHeadPropRepo(GitHubModel): default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0711.py b/githubkit/versions/ghec_v2022_11_28/models/group_0711.py index 03b7e0c27..97c7f7c28 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0711.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0711.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -99,9 +98,9 @@ class WebhookPullRequestUnassignedPropPullRequest(GitHubModel): None, Literal["resolved", "off-topic", "too heated", "spam"] ] = Field() additions: Missing[int] = Field(default=UNSET) - assignee: Union[ - WebhookPullRequestUnassignedPropPullRequestPropAssignee, None - ] = Field(title="User") + assignee: Union[WebhookPullRequestUnassignedPropPullRequestPropAssignee, None] = ( + Field(title="User") + ) assignees: List[ Union[WebhookPullRequestUnassignedPropPullRequestPropAssigneesItems, None] ] = Field() @@ -156,11 +155,11 @@ class WebhookPullRequestUnassignedPropPullRequest(GitHubModel): merged_by: Missing[ Union[WebhookPullRequestUnassignedPropPullRequestPropMergedBy, None] ] = Field(default=UNSET, title="User") - milestone: Union[ - WebhookPullRequestUnassignedPropPullRequestPropMilestone, None - ] = Field( - title="Milestone", - description="A collection of related issues and pull requests.", + milestone: Union[WebhookPullRequestUnassignedPropPullRequestPropMilestone, None] = ( + Field( + title="Milestone", + description="A collection of related issues and pull requests.", + ) ) node_id: str = Field() number: int = Field( @@ -541,9 +540,9 @@ class WebhookPullRequestUnassignedPropPullRequestPropBase(GitHubModel): title="Repository", description="A git repository" ) sha: str = Field() - user: Union[ - WebhookPullRequestUnassignedPropPullRequestPropBasePropUser, None - ] = Field(title="User") + user: Union[WebhookPullRequestUnassignedPropPullRequestPropBasePropUser, None] = ( + Field(title="User") + ) class WebhookPullRequestUnassignedPropPullRequestPropBasePropUser(GitHubModel): @@ -694,11 +693,11 @@ class WebhookPullRequestUnassignedPropPullRequestPropBasePropRepo(GitHubModel): default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) @@ -782,13 +781,13 @@ class WebhookPullRequestUnassignedPropPullRequestPropHead(GitHubModel): label: Union[str, None] = Field() ref: str = Field() - repo: Union[ - WebhookPullRequestUnassignedPropPullRequestPropHeadPropRepo, None - ] = Field(title="Repository", description="A git repository") + repo: Union[WebhookPullRequestUnassignedPropPullRequestPropHeadPropRepo, None] = ( + Field(title="Repository", description="A git repository") + ) sha: str = Field() - user: Union[ - WebhookPullRequestUnassignedPropPullRequestPropHeadPropUser, None - ] = Field(title="User") + user: Union[WebhookPullRequestUnassignedPropPullRequestPropHeadPropUser, None] = ( + Field(title="User") + ) class WebhookPullRequestUnassignedPropPullRequestPropHeadPropRepo(GitHubModel): @@ -913,11 +912,11 @@ class WebhookPullRequestUnassignedPropPullRequestPropHeadPropRepo(GitHubModel): default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0712.py b/githubkit/versions/ghec_v2022_11_28/models/group_0712.py index 9b358ea7a..605f90be1 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0712.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0712.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -84,9 +83,9 @@ class WebhookPullRequestUnlabeledPropPullRequest(GitHubModel): None, Literal["resolved", "off-topic", "too heated", "spam"] ] = Field() additions: Missing[int] = Field(default=UNSET) - assignee: Union[ - WebhookPullRequestUnlabeledPropPullRequestPropAssignee, None - ] = Field(title="User") + assignee: Union[WebhookPullRequestUnlabeledPropPullRequestPropAssignee, None] = ( + Field(title="User") + ) assignees: List[ Union[WebhookPullRequestUnlabeledPropPullRequestPropAssigneesItems, None] ] = Field() @@ -103,11 +102,11 @@ class WebhookPullRequestUnlabeledPropPullRequest(GitHubModel): title="AuthorAssociation", description="How the author is associated with the repository.", ) - auto_merge: Union[ - WebhookPullRequestUnlabeledPropPullRequestPropAutoMerge, None - ] = Field( - title="PullRequestAutoMerge", - description="The status of auto merging a pull request.", + auto_merge: Union[WebhookPullRequestUnlabeledPropPullRequestPropAutoMerge, None] = ( + Field( + title="PullRequestAutoMerge", + description="The status of auto merging a pull request.", + ) ) base: WebhookPullRequestUnlabeledPropPullRequestPropBase = Field() body: Union[str, None] = Field() @@ -141,11 +140,11 @@ class WebhookPullRequestUnlabeledPropPullRequest(GitHubModel): merged_by: Missing[ Union[WebhookPullRequestUnlabeledPropPullRequestPropMergedBy, None] ] = Field(default=UNSET, title="User") - milestone: Union[ - WebhookPullRequestUnlabeledPropPullRequestPropMilestone, None - ] = Field( - title="Milestone", - description="A collection of related issues and pull requests.", + milestone: Union[WebhookPullRequestUnlabeledPropPullRequestPropMilestone, None] = ( + Field( + title="Milestone", + description="A collection of related issues and pull requests.", + ) ) node_id: str = Field() number: int = Field( @@ -520,9 +519,9 @@ class WebhookPullRequestUnlabeledPropPullRequestPropBase(GitHubModel): title="Repository", description="A git repository" ) sha: str = Field() - user: Union[ - WebhookPullRequestUnlabeledPropPullRequestPropBasePropUser, None - ] = Field(title="User") + user: Union[WebhookPullRequestUnlabeledPropPullRequestPropBasePropUser, None] = ( + Field(title="User") + ) class WebhookPullRequestUnlabeledPropPullRequestPropBasePropUser(GitHubModel): @@ -673,11 +672,11 @@ class WebhookPullRequestUnlabeledPropPullRequestPropBasePropRepo(GitHubModel): default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) @@ -761,13 +760,13 @@ class WebhookPullRequestUnlabeledPropPullRequestPropHead(GitHubModel): label: Union[str, None] = Field() ref: str = Field() - repo: Union[ - WebhookPullRequestUnlabeledPropPullRequestPropHeadPropRepo, None - ] = Field(title="Repository", description="A git repository") + repo: Union[WebhookPullRequestUnlabeledPropPullRequestPropHeadPropRepo, None] = ( + Field(title="Repository", description="A git repository") + ) sha: str = Field() - user: Union[ - WebhookPullRequestUnlabeledPropPullRequestPropHeadPropUser, None - ] = Field(title="User") + user: Union[WebhookPullRequestUnlabeledPropPullRequestPropHeadPropUser, None] = ( + Field(title="User") + ) class WebhookPullRequestUnlabeledPropPullRequestPropHeadPropRepo(GitHubModel): @@ -890,11 +889,11 @@ class WebhookPullRequestUnlabeledPropPullRequestPropHeadPropRepo(GitHubModel): default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0713.py b/githubkit/versions/ghec_v2022_11_28/models/group_0713.py index 31ea53b3a..15daad532 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0713.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0713.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -67,9 +66,9 @@ class WebhookPullRequestUnlockedPropPullRequest(GitHubModel): None, Literal["resolved", "off-topic", "too heated", "spam"] ] = Field() additions: Missing[int] = Field(default=UNSET) - assignee: Union[ - WebhookPullRequestUnlockedPropPullRequestPropAssignee, None - ] = Field(title="User") + assignee: Union[WebhookPullRequestUnlockedPropPullRequestPropAssignee, None] = ( + Field(title="User") + ) assignees: List[ Union[WebhookPullRequestUnlockedPropPullRequestPropAssigneesItems, None] ] = Field() @@ -86,11 +85,11 @@ class WebhookPullRequestUnlockedPropPullRequest(GitHubModel): title="AuthorAssociation", description="How the author is associated with the repository.", ) - auto_merge: Union[ - WebhookPullRequestUnlockedPropPullRequestPropAutoMerge, None - ] = Field( - title="PullRequestAutoMerge", - description="The status of auto merging a pull request.", + auto_merge: Union[WebhookPullRequestUnlockedPropPullRequestPropAutoMerge, None] = ( + Field( + title="PullRequestAutoMerge", + description="The status of auto merging a pull request.", + ) ) base: WebhookPullRequestUnlockedPropPullRequestPropBase = Field() body: Union[str, None] = Field() @@ -124,11 +123,11 @@ class WebhookPullRequestUnlockedPropPullRequest(GitHubModel): merged_by: Missing[ Union[WebhookPullRequestUnlockedPropPullRequestPropMergedBy, None] ] = Field(default=UNSET, title="User") - milestone: Union[ - WebhookPullRequestUnlockedPropPullRequestPropMilestone, None - ] = Field( - title="Milestone", - description="A collection of related issues and pull requests.", + milestone: Union[WebhookPullRequestUnlockedPropPullRequestPropMilestone, None] = ( + Field( + title="Milestone", + description="A collection of related issues and pull requests.", + ) ) node_id: str = Field() number: int = Field( @@ -489,9 +488,9 @@ class WebhookPullRequestUnlockedPropPullRequestPropBase(GitHubModel): title="Repository", description="A git repository" ) sha: str = Field() - user: Union[ - WebhookPullRequestUnlockedPropPullRequestPropBasePropUser, None - ] = Field(title="User") + user: Union[WebhookPullRequestUnlockedPropPullRequestPropBasePropUser, None] = ( + Field(title="User") + ) class WebhookPullRequestUnlockedPropPullRequestPropBasePropUser(GitHubModel): @@ -642,11 +641,11 @@ class WebhookPullRequestUnlockedPropPullRequestPropBasePropRepo(GitHubModel): default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) @@ -728,13 +727,13 @@ class WebhookPullRequestUnlockedPropPullRequestPropHead(GitHubModel): label: str = Field() ref: str = Field() - repo: Union[ - WebhookPullRequestUnlockedPropPullRequestPropHeadPropRepo, None - ] = Field(title="Repository", description="A git repository") + repo: Union[WebhookPullRequestUnlockedPropPullRequestPropHeadPropRepo, None] = ( + Field(title="Repository", description="A git repository") + ) sha: str = Field() - user: Union[ - WebhookPullRequestUnlockedPropPullRequestPropHeadPropUser, None - ] = Field(title="User") + user: Union[WebhookPullRequestUnlockedPropPullRequestPropHeadPropUser, None] = ( + Field(title="User") + ) class WebhookPullRequestUnlockedPropPullRequestPropHeadPropRepo(GitHubModel): @@ -859,11 +858,11 @@ class WebhookPullRequestUnlockedPropPullRequestPropHeadPropRepo(GitHubModel): default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0714.py b/githubkit/versions/ghec_v2022_11_28/models/group_0714.py index 8f41974f8..e948525b0 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0714.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0714.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0715.py b/githubkit/versions/ghec_v2022_11_28/models/group_0715.py index 5ca75cff3..1efd612bd 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0715.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0715.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0716.py b/githubkit/versions/ghec_v2022_11_28/models/group_0716.py index 0d1e9b56c..a8b322978 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0716.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0716.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0717.py b/githubkit/versions/ghec_v2022_11_28/models/group_0717.py index 4a77d3c78..ebf08a34f 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0717.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0717.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0718.py b/githubkit/versions/ghec_v2022_11_28/models/group_0718.py index 97ec041fb..8b94ace9f 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0718.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0718.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0719.py b/githubkit/versions/ghec_v2022_11_28/models/group_0719.py index d267137d7..67a63ef67 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0719.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0719.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0720.py b/githubkit/versions/ghec_v2022_11_28/models/group_0720.py index 80af0848b..585f65150 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0720.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0720.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0721.py b/githubkit/versions/ghec_v2022_11_28/models/group_0721.py index 2fa65babb..1a2f5d2ef 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0721.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0721.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0722.py b/githubkit/versions/ghec_v2022_11_28/models/group_0722.py index 18a5a30ec..e43b1f19e 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0722.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0722.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0723.py b/githubkit/versions/ghec_v2022_11_28/models/group_0723.py index 15876711c..0010b6d8b 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0723.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0723.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0724.py b/githubkit/versions/ghec_v2022_11_28/models/group_0724.py index 9c8edd09b..e6ab41571 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0724.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0724.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0725.py b/githubkit/versions/ghec_v2022_11_28/models/group_0725.py index 2090b2144..06c767477 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0725.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0725.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0726.py b/githubkit/versions/ghec_v2022_11_28/models/group_0726.py index fa0b70312..81419a843 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0726.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0726.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0727.py b/githubkit/versions/ghec_v2022_11_28/models/group_0727.py index f90e7c3ba..44fffdb6f 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0727.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0727.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0728.py b/githubkit/versions/ghec_v2022_11_28/models/group_0728.py index 9a3c2c1e8..dae48fc98 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0728.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0728.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0729.py b/githubkit/versions/ghec_v2022_11_28/models/group_0729.py index 2077b72cc..ed01c663a 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0729.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0729.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0730.py b/githubkit/versions/ghec_v2022_11_28/models/group_0730.py index 961efb4a3..a57fd12c9 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0730.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0730.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0731.py b/githubkit/versions/ghec_v2022_11_28/models/group_0731.py index 3265c37be..29a57b2fe 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0731.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0731.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0732.py b/githubkit/versions/ghec_v2022_11_28/models/group_0732.py index 0cbd9d404..38fd0ce12 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0732.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0732.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0733.py b/githubkit/versions/ghec_v2022_11_28/models/group_0733.py index d194e0a27..c3572afe3 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0733.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0733.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0734.py b/githubkit/versions/ghec_v2022_11_28/models/group_0734.py index e0b3ff047..fae646334 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0734.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0734.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0735.py b/githubkit/versions/ghec_v2022_11_28/models/group_0735.py index 14b5adaa6..7016be938 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0735.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0735.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0736.py b/githubkit/versions/ghec_v2022_11_28/models/group_0736.py index f308de5a1..1ac24c1ba 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0736.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0736.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0737.py b/githubkit/versions/ghec_v2022_11_28/models/group_0737.py index f08fc32e9..327772f9d 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0737.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0737.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0738.py b/githubkit/versions/ghec_v2022_11_28/models/group_0738.py index 74c0cda5f..bacfc428b 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0738.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0738.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0739.py b/githubkit/versions/ghec_v2022_11_28/models/group_0739.py index a87fd4292..76aa5c9e3 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0739.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0739.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0740.py b/githubkit/versions/ghec_v2022_11_28/models/group_0740.py index f48fce4e4..45a17d794 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0740.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0740.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0741.py b/githubkit/versions/ghec_v2022_11_28/models/group_0741.py index 4c4a42dc9..ea3dc7eb9 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0741.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0741.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0742.py b/githubkit/versions/ghec_v2022_11_28/models/group_0742.py index c9439d3df..850b6f4ba 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0742.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0742.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0743.py b/githubkit/versions/ghec_v2022_11_28/models/group_0743.py index c677f471a..eaecb7bfa 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0743.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0743.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0744.py b/githubkit/versions/ghec_v2022_11_28/models/group_0744.py index 8748ba933..29b18c5fc 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0744.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0744.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0745.py b/githubkit/versions/ghec_v2022_11_28/models/group_0745.py index 6a4042506..badd87b0d 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0745.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0745.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0746.py b/githubkit/versions/ghec_v2022_11_28/models/group_0746.py index bd3b7db1b..6d5245c4a 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0746.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0746.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0747.py b/githubkit/versions/ghec_v2022_11_28/models/group_0747.py index 7314d6fe3..d6e4dc43e 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0747.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0747.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0748.py b/githubkit/versions/ghec_v2022_11_28/models/group_0748.py index cef94ed3a..08f2ce8ae 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0748.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0748.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0749.py b/githubkit/versions/ghec_v2022_11_28/models/group_0749.py index 30afe58bb..7472b6fd0 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0749.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0749.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0750.py b/githubkit/versions/ghec_v2022_11_28/models/group_0750.py index 3a975cf1e..22e7201ae 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0750.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0750.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0751.py b/githubkit/versions/ghec_v2022_11_28/models/group_0751.py index 9bfe13659..494fa80b0 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0751.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0751.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0752.py b/githubkit/versions/ghec_v2022_11_28/models/group_0752.py index 51072ade9..d3288232e 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0752.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0752.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0753.py b/githubkit/versions/ghec_v2022_11_28/models/group_0753.py index e917c907d..a2f0592f7 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0753.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0753.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0755.py b/githubkit/versions/ghec_v2022_11_28/models/group_0755.py index 3360b7c12..4444cb20c 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0755.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0755.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal @@ -58,9 +57,9 @@ class WebhookRepositoryEdited(GitHubModel): class WebhookRepositoryEditedPropChanges(GitHubModel): """WebhookRepositoryEditedPropChanges""" - default_branch: Missing[ - WebhookRepositoryEditedPropChangesPropDefaultBranch - ] = Field(default=UNSET) + default_branch: Missing[WebhookRepositoryEditedPropChangesPropDefaultBranch] = ( + Field(default=UNSET) + ) description: Missing[WebhookRepositoryEditedPropChangesPropDescription] = Field( default=UNSET ) diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0756.py b/githubkit/versions/ghec_v2022_11_28/models/group_0756.py index 92bea43a7..8850f11b4 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0756.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0756.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0757.py b/githubkit/versions/ghec_v2022_11_28/models/group_0757.py index 2e0822d7b..a3b7d5df9 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0757.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0757.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0758.py b/githubkit/versions/ghec_v2022_11_28/models/group_0758.py index 013eb29b6..70b48fb42 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0758.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0758.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0759.py b/githubkit/versions/ghec_v2022_11_28/models/group_0759.py index de6983031..005722d22 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0759.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0759.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0760.py b/githubkit/versions/ghec_v2022_11_28/models/group_0760.py index a0cc1405c..833c23bb4 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0760.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0760.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0761.py b/githubkit/versions/ghec_v2022_11_28/models/group_0761.py index 07b91eab8..14f94defa 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0761.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0761.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0762.py b/githubkit/versions/ghec_v2022_11_28/models/group_0762.py index a97c4dff9..0a83e5c72 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0762.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0762.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0763.py b/githubkit/versions/ghec_v2022_11_28/models/group_0763.py index 5936dcea0..8bf9dfb04 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0763.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0763.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field @@ -26,12 +25,12 @@ class WebhookRepositoryRulesetEditedPropChanges(GitHubModel): name: Missing[WebhookRepositoryRulesetEditedPropChangesPropName] = Field( default=UNSET ) - enforcement: Missing[ - WebhookRepositoryRulesetEditedPropChangesPropEnforcement - ] = Field(default=UNSET) - conditions: Missing[ - WebhookRepositoryRulesetEditedPropChangesPropConditions - ] = Field(default=UNSET) + enforcement: Missing[WebhookRepositoryRulesetEditedPropChangesPropEnforcement] = ( + Field(default=UNSET) + ) + conditions: Missing[WebhookRepositoryRulesetEditedPropChangesPropConditions] = ( + Field(default=UNSET) + ) rules: Missing[WebhookRepositoryRulesetEditedPropChangesPropRules] = Field( default=UNSET ) diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0764.py b/githubkit/versions/ghec_v2022_11_28/models/group_0764.py index 144703843..7875bbc40 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0764.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0764.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0765.py b/githubkit/versions/ghec_v2022_11_28/models/group_0765.py index 29efb2d4f..fcad1e6ab 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0765.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0765.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0766.py b/githubkit/versions/ghec_v2022_11_28/models/group_0766.py index 00d3841dc..f0836ce03 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0766.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0766.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0767.py b/githubkit/versions/ghec_v2022_11_28/models/group_0767.py index acf30ea2f..cc67456ef 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0767.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0767.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0768.py b/githubkit/versions/ghec_v2022_11_28/models/group_0768.py index 2272b1441..96294b729 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0768.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0768.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0769.py b/githubkit/versions/ghec_v2022_11_28/models/group_0769.py index aeb8fa2ad..2b6688d2a 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0769.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0769.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0770.py b/githubkit/versions/ghec_v2022_11_28/models/group_0770.py index b12db7244..6651559e5 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0770.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0770.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0771.py b/githubkit/versions/ghec_v2022_11_28/models/group_0771.py index 59a1dbcee..2676bd502 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0771.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0771.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0772.py b/githubkit/versions/ghec_v2022_11_28/models/group_0772.py index a0d0d14a1..f0924881d 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0772.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0772.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0773.py b/githubkit/versions/ghec_v2022_11_28/models/group_0773.py index ddca26f86..9ed9c69c0 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0773.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0773.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0774.py b/githubkit/versions/ghec_v2022_11_28/models/group_0774.py index 3cb422ce9..f712fc967 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0774.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0774.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0775.py b/githubkit/versions/ghec_v2022_11_28/models/group_0775.py index 11f1e6087..38054f656 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0775.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0775.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0776.py b/githubkit/versions/ghec_v2022_11_28/models/group_0776.py index 1f3b27dde..3453472e1 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0776.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0776.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0777.py b/githubkit/versions/ghec_v2022_11_28/models/group_0777.py index 786792cf9..3a80bf388 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0777.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0777.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0778.py b/githubkit/versions/ghec_v2022_11_28/models/group_0778.py index 07ea6a447..d6c1a8544 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0778.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0778.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0779.py b/githubkit/versions/ghec_v2022_11_28/models/group_0779.py index 4b8114f05..791ec8695 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0779.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0779.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0780.py b/githubkit/versions/ghec_v2022_11_28/models/group_0780.py index db2a55d67..057a704d3 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0780.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0780.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0781.py b/githubkit/versions/ghec_v2022_11_28/models/group_0781.py index b457977cf..f26c6d49d 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0781.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0781.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0782.py b/githubkit/versions/ghec_v2022_11_28/models/group_0782.py index 9bb95dd51..7c0f6bc89 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0782.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0782.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0783.py b/githubkit/versions/ghec_v2022_11_28/models/group_0783.py index 9290d9f90..67cd55b39 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0783.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0783.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0784.py b/githubkit/versions/ghec_v2022_11_28/models/group_0784.py index 9a022bfd9..a0d031b92 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0784.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0784.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0785.py b/githubkit/versions/ghec_v2022_11_28/models/group_0785.py index d7d40258c..77b3945b0 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0785.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0785.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0786.py b/githubkit/versions/ghec_v2022_11_28/models/group_0786.py index dc067628b..9b2e5f051 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0786.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0786.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0787.py b/githubkit/versions/ghec_v2022_11_28/models/group_0787.py index eafcd7e61..ef8cfdba3 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0787.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0787.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0788.py b/githubkit/versions/ghec_v2022_11_28/models/group_0788.py index aabe01151..f830c8e98 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0788.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0788.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0789.py b/githubkit/versions/ghec_v2022_11_28/models/group_0789.py index a4a1d6892..f4746fca5 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0789.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0789.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0790.py b/githubkit/versions/ghec_v2022_11_28/models/group_0790.py index 046bb4240..af44e605c 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0790.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0790.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0791.py b/githubkit/versions/ghec_v2022_11_28/models/group_0791.py index 6897e0678..04f4d0d88 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0791.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0791.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0792.py b/githubkit/versions/ghec_v2022_11_28/models/group_0792.py index 2cdaafb47..875448bf5 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0792.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0792.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0793.py b/githubkit/versions/ghec_v2022_11_28/models/group_0793.py index b22c1be6c..6a0c252af 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0793.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0793.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0794.py b/githubkit/versions/ghec_v2022_11_28/models/group_0794.py index 1ed634dd9..e67b35741 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0794.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0794.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0795.py b/githubkit/versions/ghec_v2022_11_28/models/group_0795.py index a43de916f..0c1ba9f95 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0795.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0795.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0796.py b/githubkit/versions/ghec_v2022_11_28/models/group_0796.py index 2ba009ab8..66b09ad01 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0796.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0796.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0797.py b/githubkit/versions/ghec_v2022_11_28/models/group_0797.py index 3b646d24a..9be416070 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0797.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0797.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal @@ -67,9 +66,9 @@ class WebhookSecurityAdvisoryPublishedPropSecurityAdvisory(GitHubModel): """ cvss: WebhookSecurityAdvisoryPublishedPropSecurityAdvisoryPropCvss = Field() - cwes: List[ - WebhookSecurityAdvisoryPublishedPropSecurityAdvisoryPropCwesItems - ] = Field() + cwes: List[WebhookSecurityAdvisoryPublishedPropSecurityAdvisoryPropCwesItems] = ( + Field() + ) description: str = Field() ghsa_id: str = Field() identifiers: List[ diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0798.py b/githubkit/versions/ghec_v2022_11_28/models/group_0798.py index dff8bf74d..14119e1e6 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0798.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0798.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal @@ -67,9 +66,9 @@ class WebhookSecurityAdvisoryUpdatedPropSecurityAdvisory(GitHubModel): """ cvss: WebhookSecurityAdvisoryUpdatedPropSecurityAdvisoryPropCvss = Field() - cwes: List[ - WebhookSecurityAdvisoryUpdatedPropSecurityAdvisoryPropCwesItems - ] = Field() + cwes: List[WebhookSecurityAdvisoryUpdatedPropSecurityAdvisoryPropCwesItems] = ( + Field() + ) description: str = Field() ghsa_id: str = Field() identifiers: List[ diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0799.py b/githubkit/versions/ghec_v2022_11_28/models/group_0799.py index 9fc891cc1..12c26108d 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0799.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0799.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal @@ -67,9 +66,9 @@ class WebhookSecurityAdvisoryWithdrawnPropSecurityAdvisory(GitHubModel): """ cvss: WebhookSecurityAdvisoryWithdrawnPropSecurityAdvisoryPropCvss = Field() - cwes: List[ - WebhookSecurityAdvisoryWithdrawnPropSecurityAdvisoryPropCwesItems - ] = Field() + cwes: List[WebhookSecurityAdvisoryWithdrawnPropSecurityAdvisoryPropCwesItems] = ( + Field() + ) description: str = Field() ghsa_id: str = Field() identifiers: List[ diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0800.py b/githubkit/versions/ghec_v2022_11_28/models/group_0800.py index 65c03b523..3251c1836 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0800.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0800.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0801.py b/githubkit/versions/ghec_v2022_11_28/models/group_0801.py index 4aece9e78..c8b8e1d02 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0801.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0801.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0802.py b/githubkit/versions/ghec_v2022_11_28/models/group_0802.py index 516c62fa9..8f6b8a474 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0802.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0802.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0803.py b/githubkit/versions/ghec_v2022_11_28/models/group_0803.py index 48c3240af..c80e2cf10 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0803.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0803.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal @@ -60,9 +59,9 @@ class WebhookSponsorshipCancelledPropSponsorship(GitHubModel): """WebhookSponsorshipCancelledPropSponsorship""" created_at: str = Field() - maintainer: Missing[ - WebhookSponsorshipCancelledPropSponsorshipPropMaintainer - ] = Field(default=UNSET) + maintainer: Missing[WebhookSponsorshipCancelledPropSponsorshipPropMaintainer] = ( + Field(default=UNSET) + ) node_id: str = Field() privacy_level: str = Field() sponsor: Union[WebhookSponsorshipCancelledPropSponsorshipPropSponsor, None] = Field( diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0804.py b/githubkit/versions/ghec_v2022_11_28/models/group_0804.py index 3365f2bab..e741a8ecf 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0804.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0804.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0805.py b/githubkit/versions/ghec_v2022_11_28/models/group_0805.py index c791c89f4..f07976409 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0805.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0805.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal @@ -86,9 +85,9 @@ class WebhookSponsorshipEditedPropSponsorship(GitHubModel): sponsor: Union[WebhookSponsorshipEditedPropSponsorshipPropSponsor, None] = Field( title="User" ) - sponsorable: Union[ - WebhookSponsorshipEditedPropSponsorshipPropSponsorable, None - ] = Field(title="User") + sponsorable: Union[WebhookSponsorshipEditedPropSponsorshipPropSponsorable, None] = ( + Field(title="User") + ) tier: WebhookSponsorshipEditedPropSponsorshipPropTier = Field( title="Sponsorship Tier", description="The `tier_changed` and `pending_tier_change` will include the original tier before the change or pending change. For more information, see the pending tier change payload.", diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0806.py b/githubkit/versions/ghec_v2022_11_28/models/group_0806.py index 89fcaf519..094e37060 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0806.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0806.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0807.py b/githubkit/versions/ghec_v2022_11_28/models/group_0807.py index 590a1faca..d864fba65 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0807.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0807.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0808.py b/githubkit/versions/ghec_v2022_11_28/models/group_0808.py index 905204efd..6f1e22da1 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0808.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0808.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal @@ -61,14 +60,14 @@ class WebhookSponsorshipTierChangedPropSponsorship(GitHubModel): """WebhookSponsorshipTierChangedPropSponsorship""" created_at: str = Field() - maintainer: Missing[ - WebhookSponsorshipTierChangedPropSponsorshipPropMaintainer - ] = Field(default=UNSET) + maintainer: Missing[WebhookSponsorshipTierChangedPropSponsorshipPropMaintainer] = ( + Field(default=UNSET) + ) node_id: str = Field() privacy_level: str = Field() - sponsor: Union[ - WebhookSponsorshipTierChangedPropSponsorshipPropSponsor, None - ] = Field(title="User") + sponsor: Union[WebhookSponsorshipTierChangedPropSponsorshipPropSponsor, None] = ( + Field(title="User") + ) sponsorable: Union[ WebhookSponsorshipTierChangedPropSponsorshipPropSponsorable, None ] = Field(title="User") diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0809.py b/githubkit/versions/ghec_v2022_11_28/models/group_0809.py index b68e6695a..efec82181 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0809.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0809.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0810.py b/githubkit/versions/ghec_v2022_11_28/models/group_0810.py index da9623fbf..4a84bb596 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0810.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0810.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0811.py b/githubkit/versions/ghec_v2022_11_28/models/group_0811.py index 12f4840a1..d7c3de27b 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0811.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0811.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0812.py b/githubkit/versions/ghec_v2022_11_28/models/group_0812.py index a6a70911b..0c6cb9758 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0812.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0812.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0813.py b/githubkit/versions/ghec_v2022_11_28/models/group_0813.py index d03f6c71f..bae400dac 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0813.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0813.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0814.py b/githubkit/versions/ghec_v2022_11_28/models/group_0814.py index 810a3d7f0..16064411f 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0814.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0814.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0815.py b/githubkit/versions/ghec_v2022_11_28/models/group_0815.py index ccc562c99..01ba88f8b 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0815.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0815.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0816.py b/githubkit/versions/ghec_v2022_11_28/models/group_0816.py index 683ac098a..f0ff4fa5b 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0816.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0816.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal @@ -104,10 +103,10 @@ class WebhookTeamAddPropTeamPropParent(GitHubModel): description="Permission that the team will have for its repositories" ) privacy: Literal["open", "closed", "secret"] = Field() - notification_setting: Literal[ - "notifications_enabled", "notifications_disabled" - ] = Field( - description="Whether team members will receive notifications when their team is @mentioned" + notification_setting: Literal["notifications_enabled", "notifications_disabled"] = ( + Field( + description="Whether team members will receive notifications when their team is @mentioned" + ) ) repositories_url: str = Field() slug: str = Field() diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0817.py b/githubkit/versions/ghec_v2022_11_28/models/group_0817.py index 2e5b66eeb..c224e09a2 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0817.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0817.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -142,9 +141,9 @@ class WebhookTeamAddedToRepositoryPropRepository(GitHubModel): labels_url: str = Field() language: Union[str, None] = Field() languages_url: str = Field() - license_: Union[ - WebhookTeamAddedToRepositoryPropRepositoryPropLicense, None - ] = Field(alias="license", title="License") + license_: Union[WebhookTeamAddedToRepositoryPropRepositoryPropLicense, None] = ( + Field(alias="license", title="License") + ) master_branch: Missing[str] = Field(default=UNSET) merges_url: str = Field() milestones_url: str = Field() @@ -158,9 +157,9 @@ class WebhookTeamAddedToRepositoryPropRepository(GitHubModel): owner: Union[WebhookTeamAddedToRepositoryPropRepositoryPropOwner, None] = Field( title="User" ) - permissions: Missing[ - WebhookTeamAddedToRepositoryPropRepositoryPropPermissions - ] = Field(default=UNSET) + permissions: Missing[WebhookTeamAddedToRepositoryPropRepositoryPropPermissions] = ( + Field(default=UNSET) + ) private: bool = Field(description="Whether the repository is private or public.") public: Missing[bool] = Field(default=UNSET) pulls_url: str = Field() @@ -257,9 +256,9 @@ class WebhookTeamAddedToRepositoryPropTeam(GitHubModel): members_url: Missing[str] = Field(default=UNSET) name: str = Field(description="Name of the team") node_id: Missing[str] = Field(default=UNSET) - parent: Missing[ - Union[WebhookTeamAddedToRepositoryPropTeamPropParent, None] - ] = Field(default=UNSET) + parent: Missing[Union[WebhookTeamAddedToRepositoryPropTeamPropParent, None]] = ( + Field(default=UNSET) + ) permission: Missing[str] = Field( default=UNSET, description="Permission that the team will have for its repositories", @@ -289,10 +288,10 @@ class WebhookTeamAddedToRepositoryPropTeamPropParent(GitHubModel): description="Permission that the team will have for its repositories" ) privacy: Literal["open", "closed", "secret"] = Field() - notification_setting: Literal[ - "notifications_enabled", "notifications_disabled" - ] = Field( - description="Whether team members will receive notifications when their team is @mentioned" + notification_setting: Literal["notifications_enabled", "notifications_disabled"] = ( + Field( + description="Whether team members will receive notifications when their team is @mentioned" + ) ) repositories_url: str = Field() slug: str = Field() diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0818.py b/githubkit/versions/ghec_v2022_11_28/models/group_0818.py index dde522f84..d1882e413 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0818.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0818.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -93,11 +92,11 @@ class WebhookTeamCreatedPropRepository(GitHubModel): contents_url: str = Field() contributors_url: str = Field() created_at: Union[int, datetime] = Field() - custom_properties: Missing[ - WebhookTeamCreatedPropRepositoryPropCustomProperties - ] = Field( - default=UNSET, - description="The custom properties that were defined for the repository. The keys are the custom property names, and the values are the corresponding custom property values.", + custom_properties: Missing[WebhookTeamCreatedPropRepositoryPropCustomProperties] = ( + Field( + default=UNSET, + description="The custom properties that were defined for the repository. The keys are the custom property names, and the values are the corresponding custom property values.", + ) ) default_branch: str = Field(description="The default branch of the repository.") delete_branch_on_merge: Missing[bool] = Field( @@ -286,10 +285,10 @@ class WebhookTeamCreatedPropTeamPropParent(GitHubModel): description="Permission that the team will have for its repositories" ) privacy: Literal["open", "closed", "secret"] = Field() - notification_setting: Literal[ - "notifications_enabled", "notifications_disabled" - ] = Field( - description="Whether team members will receive notifications when their team is @mentioned" + notification_setting: Literal["notifications_enabled", "notifications_disabled"] = ( + Field( + description="Whether team members will receive notifications when their team is @mentioned" + ) ) repositories_url: str = Field() slug: str = Field() diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0819.py b/githubkit/versions/ghec_v2022_11_28/models/group_0819.py index 01361dfd5..cef159666 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0819.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0819.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -94,11 +93,11 @@ class WebhookTeamDeletedPropRepository(GitHubModel): contents_url: str = Field() contributors_url: str = Field() created_at: Union[int, datetime] = Field() - custom_properties: Missing[ - WebhookTeamDeletedPropRepositoryPropCustomProperties - ] = Field( - default=UNSET, - description="The custom properties that were defined for the repository. The keys are the custom property names, and the values are the corresponding custom property values.", + custom_properties: Missing[WebhookTeamDeletedPropRepositoryPropCustomProperties] = ( + Field( + default=UNSET, + description="The custom properties that were defined for the repository. The keys are the custom property names, and the values are the corresponding custom property values.", + ) ) default_branch: str = Field(description="The default branch of the repository.") delete_branch_on_merge: Missing[bool] = Field( @@ -287,10 +286,10 @@ class WebhookTeamDeletedPropTeamPropParent(GitHubModel): description="Permission that the team will have for its repositories" ) privacy: Literal["open", "closed", "secret"] = Field() - notification_setting: Literal[ - "notifications_enabled", "notifications_disabled" - ] = Field( - description="Whether team members will receive notifications when their team is @mentioned" + notification_setting: Literal["notifications_enabled", "notifications_disabled"] = ( + Field( + description="Whether team members will receive notifications when their team is @mentioned" + ) ) repositories_url: str = Field() slug: str = Field() diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0820.py b/githubkit/versions/ghec_v2022_11_28/models/group_0820.py index 83513a251..eb7aaa978 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0820.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0820.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -96,11 +95,11 @@ class WebhookTeamEditedPropRepository(GitHubModel): contents_url: str = Field() contributors_url: str = Field() created_at: Union[int, datetime] = Field() - custom_properties: Missing[ - WebhookTeamEditedPropRepositoryPropCustomProperties - ] = Field( - default=UNSET, - description="The custom properties that were defined for the repository. The keys are the custom property names, and the values are the corresponding custom property values.", + custom_properties: Missing[WebhookTeamEditedPropRepositoryPropCustomProperties] = ( + Field( + default=UNSET, + description="The custom properties that were defined for the repository. The keys are the custom property names, and the values are the corresponding custom property values.", + ) ) default_branch: str = Field(description="The default branch of the repository.") delete_branch_on_merge: Missing[bool] = Field( @@ -289,10 +288,10 @@ class WebhookTeamEditedPropTeamPropParent(GitHubModel): description="Permission that the team will have for its repositories" ) privacy: Literal["open", "closed", "secret"] = Field() - notification_setting: Literal[ - "notifications_enabled", "notifications_disabled" - ] = Field( - description="Whether team members will receive notifications when their team is @mentioned" + notification_setting: Literal["notifications_enabled", "notifications_disabled"] = ( + Field( + description="Whether team members will receive notifications when their team is @mentioned" + ) ) repositories_url: str = Field() slug: str = Field() diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0821.py b/githubkit/versions/ghec_v2022_11_28/models/group_0821.py index fabb20382..df447a8cc 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0821.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0821.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -141,9 +140,9 @@ class WebhookTeamRemovedFromRepositoryPropRepository(GitHubModel): labels_url: str = Field() language: Union[str, None] = Field() languages_url: str = Field() - license_: Union[ - WebhookTeamRemovedFromRepositoryPropRepositoryPropLicense, None - ] = Field(alias="license", title="License") + license_: Union[WebhookTeamRemovedFromRepositoryPropRepositoryPropLicense, None] = ( + Field(alias="license", title="License") + ) master_branch: Missing[str] = Field(default=UNSET) merges_url: str = Field() milestones_url: str = Field() @@ -258,9 +257,9 @@ class WebhookTeamRemovedFromRepositoryPropTeam(GitHubModel): members_url: Missing[str] = Field(default=UNSET) name: str = Field(description="Name of the team") node_id: Missing[str] = Field(default=UNSET) - parent: Missing[ - Union[WebhookTeamRemovedFromRepositoryPropTeamPropParent, None] - ] = Field(default=UNSET) + parent: Missing[Union[WebhookTeamRemovedFromRepositoryPropTeamPropParent, None]] = ( + Field(default=UNSET) + ) permission: Missing[str] = Field( default=UNSET, description="Permission that the team will have for its repositories", @@ -290,10 +289,10 @@ class WebhookTeamRemovedFromRepositoryPropTeamPropParent(GitHubModel): description="Permission that the team will have for its repositories" ) privacy: Literal["open", "closed", "secret"] = Field() - notification_setting: Literal[ - "notifications_enabled", "notifications_disabled" - ] = Field( - description="Whether team members will receive notifications when their team is @mentioned" + notification_setting: Literal["notifications_enabled", "notifications_disabled"] = ( + Field( + description="Whether team members will receive notifications when their team is @mentioned" + ) ) repositories_url: str = Field() slug: str = Field() diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0822.py b/githubkit/versions/ghec_v2022_11_28/models/group_0822.py index 1a98bf660..6b6dcdddd 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0822.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0822.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0823.py b/githubkit/versions/ghec_v2022_11_28/models/group_0823.py index 364a54fcd..ad09c535b 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0823.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0823.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0824.py b/githubkit/versions/ghec_v2022_11_28/models/group_0824.py index 7aa739f42..b843ae398 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0824.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0824.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal @@ -117,9 +116,9 @@ class WebhookWorkflowJobCompletedPropWorkflowJobMergedSteps(GitHubModel): """WebhookWorkflowJobCompletedPropWorkflowJobMergedSteps""" completed_at: Union[str, None] = Field() - conclusion: Union[ - None, Literal["failure", "skipped", "success", "cancelled"] - ] = Field() + conclusion: Union[None, Literal["failure", "skipped", "success", "cancelled"]] = ( + Field() + ) name: str = Field() number: int = Field() started_at: Union[str, None] = Field() diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0825.py b/githubkit/versions/ghec_v2022_11_28/models/group_0825.py index 9f23f2f9a..3bf8b5b8a 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0825.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0825.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal @@ -68,9 +67,9 @@ class WebhookWorkflowJobCompletedPropWorkflowJobAllof0(GitHubModel): ) head_branch: Union[str, None] = Field(description="The name of the current branch.") workflow_name: Union[str, None] = Field(description="The name of the workflow.") - steps: List[ - WebhookWorkflowJobCompletedPropWorkflowJobAllof0PropStepsItems - ] = Field() + steps: List[WebhookWorkflowJobCompletedPropWorkflowJobAllof0PropStepsItems] = ( + Field() + ) url: str = Field() @@ -78,9 +77,9 @@ class WebhookWorkflowJobCompletedPropWorkflowJobAllof0PropStepsItems(GitHubModel """Workflow Step""" completed_at: Union[str, None] = Field() - conclusion: Union[ - None, Literal["failure", "skipped", "success", "cancelled"] - ] = Field() + conclusion: Union[None, Literal["failure", "skipped", "success", "cancelled"]] = ( + Field() + ) name: str = Field() number: int = Field() started_at: Union[str, None] = Field() diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0826.py b/githubkit/versions/ghec_v2022_11_28/models/group_0826.py index 0351e88d3..b2813755e 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0826.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0826.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0827.py b/githubkit/versions/ghec_v2022_11_28/models/group_0827.py index 1ae78d857..b55766e10 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0827.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0827.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal @@ -66,9 +65,9 @@ class WebhookWorkflowJobInProgressPropWorkflowJob(GitHubModel): check_run_url: str = Field() completed_at: Union[Union[str, None], None] = Field() - conclusion: Union[ - Literal["success", "failure", "cancelled", "neutral"], None - ] = Field() + conclusion: Union[Literal["success", "failure", "cancelled", "neutral"], None] = ( + Field() + ) created_at: str = Field(description="The time that the job created.") head_sha: str = Field() html_url: str = Field() @@ -111,9 +110,9 @@ class WebhookWorkflowJobInProgressPropWorkflowJobMergedSteps(GitHubModel): """WebhookWorkflowJobInProgressPropWorkflowJobMergedSteps""" completed_at: Union[Union[str, None], None] = Field() - conclusion: Union[ - Literal["failure", "skipped", "success", "cancelled"], None - ] = Field() + conclusion: Union[Literal["failure", "skipped", "success", "cancelled"], None] = ( + Field() + ) name: str = Field() number: int = Field() started_at: Union[Union[str, None], None] = Field() diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0828.py b/githubkit/versions/ghec_v2022_11_28/models/group_0828.py index 2c1a90c63..a2f6be754 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0828.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0828.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal @@ -26,9 +25,9 @@ class WebhookWorkflowJobInProgressPropWorkflowJobAllof0(GitHubModel): check_run_url: str = Field() completed_at: Union[str, None] = Field() - conclusion: Union[ - None, Literal["success", "failure", "cancelled", "neutral"] - ] = Field() + conclusion: Union[None, Literal["success", "failure", "cancelled", "neutral"]] = ( + Field() + ) created_at: str = Field(description="The time that the job created.") head_sha: str = Field() html_url: str = Field() @@ -59,9 +58,9 @@ class WebhookWorkflowJobInProgressPropWorkflowJobAllof0(GitHubModel): ) head_branch: Union[str, None] = Field(description="The name of the current branch.") workflow_name: Union[str, None] = Field(description="The name of the workflow.") - steps: List[ - WebhookWorkflowJobInProgressPropWorkflowJobAllof0PropStepsItems - ] = Field() + steps: List[WebhookWorkflowJobInProgressPropWorkflowJobAllof0PropStepsItems] = ( + Field() + ) url: str = Field() @@ -69,9 +68,9 @@ class WebhookWorkflowJobInProgressPropWorkflowJobAllof0PropStepsItems(GitHubMode """Workflow Step""" completed_at: Union[str, None] = Field() - conclusion: Union[ - None, Literal["failure", "skipped", "success", "cancelled"] - ] = Field() + conclusion: Union[None, Literal["failure", "skipped", "success", "cancelled"]] = ( + Field() + ) name: str = Field() number: int = Field() started_at: Union[str, None] = Field() diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0829.py b/githubkit/versions/ghec_v2022_11_28/models/group_0829.py index ad0048230..c968cd99f 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0829.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0829.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal @@ -49,9 +48,9 @@ class WebhookWorkflowJobInProgressPropWorkflowJobAllof1(GitHubModel): workflow_name: Missing[Union[str, None]] = Field( default=UNSET, description="The name of the workflow." ) - steps: List[ - WebhookWorkflowJobInProgressPropWorkflowJobAllof1PropStepsItems - ] = Field() + steps: List[WebhookWorkflowJobInProgressPropWorkflowJobAllof1PropStepsItems] = ( + Field() + ) url: Missing[str] = Field(default=UNSET) diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0830.py b/githubkit/versions/ghec_v2022_11_28/models/group_0830.py index d4fe5d4b6..8176022d2 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0830.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0830.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -94,9 +93,9 @@ class WebhookWorkflowJobQueuedPropWorkflowJobPropStepsItems(GitHubModel): """Workflow Step""" completed_at: Union[str, None] = Field() - conclusion: Union[ - None, Literal["failure", "skipped", "success", "cancelled"] - ] = Field() + conclusion: Union[None, Literal["failure", "skipped", "success", "cancelled"]] = ( + Field() + ) name: str = Field() number: int = Field() started_at: Union[str, None] = Field() diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0831.py b/githubkit/versions/ghec_v2022_11_28/models/group_0831.py index 5f1197c18..59e65cc8d 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0831.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0831.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -94,15 +93,15 @@ class WebhookWorkflowJobWaitingPropWorkflowJobPropStepsItems(GitHubModel): """Workflow Step""" completed_at: Union[str, None] = Field() - conclusion: Union[ - None, Literal["failure", "skipped", "success", "cancelled"] - ] = Field() + conclusion: Union[None, Literal["failure", "skipped", "success", "cancelled"]] = ( + Field() + ) name: str = Field() number: int = Field() started_at: Union[str, None] = Field() - status: Literal[ - "completed", "in_progress", "queued", "pending", "waiting" - ] = Field() + status: Literal["completed", "in_progress", "queued", "pending", "waiting"] = ( + Field() + ) model_rebuild(WebhookWorkflowJobWaiting) diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0832.py b/githubkit/versions/ghec_v2022_11_28/models/group_0832.py index 809d3f80d..5e1e6ecb3 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0832.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0832.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0833.py b/githubkit/versions/ghec_v2022_11_28/models/group_0833.py index fc8406f55..bf5f47a43 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0833.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0833.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0834.py b/githubkit/versions/ghec_v2022_11_28/models/group_0834.py index 7794b8152..8824d54c8 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0834.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0834.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -30,9 +29,9 @@ class WebhookWorkflowRunCompletedPropWorkflowRunAllof0(GitHubModel): """Workflow Run""" - actor: Union[ - WebhookWorkflowRunCompletedPropWorkflowRunAllof0PropActor, None - ] = Field(title="User") + actor: Union[WebhookWorkflowRunCompletedPropWorkflowRunAllof0PropActor, None] = ( + Field(title="User") + ) artifacts_url: str = Field() cancel_url: str = Field() check_suite_id: int = Field() diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0835.py b/githubkit/versions/ghec_v2022_11_28/models/group_0835.py index 2189534cf..811170329 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0835.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0835.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0836.py b/githubkit/versions/ghec_v2022_11_28/models/group_0836.py index ad8f9c918..a66e7b627 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0836.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0836.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0837.py b/githubkit/versions/ghec_v2022_11_28/models/group_0837.py index effd314a8..0d70af4ab 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0837.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0837.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0838.py b/githubkit/versions/ghec_v2022_11_28/models/group_0838.py index e54c5b0c6..7ffa1d25d 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0838.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0838.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0839.py b/githubkit/versions/ghec_v2022_11_28/models/group_0839.py index 4f1e6c4bc..fd4b59d7e 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0839.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0839.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0840.py b/githubkit/versions/ghec_v2022_11_28/models/group_0840.py index d14e3796e..04d355d3a 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0840.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0840.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0841.py b/githubkit/versions/ghec_v2022_11_28/models/group_0841.py index 6dfbe2737..b91375f69 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0841.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0841.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -82,9 +81,9 @@ class WebhookWorkflowRunInProgressPropWorkflowRun(GitHubModel): run_attempt: int = Field() run_number: int = Field() run_started_at: datetime = Field() - status: Literal[ - "requested", "in_progress", "completed", "queued", "pending" - ] = Field() + status: Literal["requested", "in_progress", "completed", "queued", "pending"] = ( + Field() + ) triggering_actor: WebhookWorkflowRunInProgressPropWorkflowRunMergedTriggeringActor = Field() updated_at: datetime = Field() url: str = Field() diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0842.py b/githubkit/versions/ghec_v2022_11_28/models/group_0842.py index ee5e9d272..54cfe55c9 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0842.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0842.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -30,9 +29,9 @@ class WebhookWorkflowRunInProgressPropWorkflowRunAllof0(GitHubModel): """Workflow Run""" - actor: Union[ - WebhookWorkflowRunInProgressPropWorkflowRunAllof0PropActor, None - ] = Field(title="User") + actor: Union[WebhookWorkflowRunInProgressPropWorkflowRunAllof0PropActor, None] = ( + Field(title="User") + ) artifacts_url: str = Field() cancel_url: str = Field() check_suite_id: int = Field() @@ -87,9 +86,9 @@ class WebhookWorkflowRunInProgressPropWorkflowRunAllof0(GitHubModel): run_attempt: int = Field() run_number: int = Field() run_started_at: datetime = Field() - status: Literal[ - "requested", "in_progress", "completed", "queued", "pending" - ] = Field() + status: Literal["requested", "in_progress", "completed", "queued", "pending"] = ( + Field() + ) triggering_actor: Union[ WebhookWorkflowRunInProgressPropWorkflowRunAllof0PropTriggeringActor, None ] = Field(title="User") diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0843.py b/githubkit/versions/ghec_v2022_11_28/models/group_0843.py index 7b12f0fa7..f8af4e16b 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0843.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0843.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0844.py b/githubkit/versions/ghec_v2022_11_28/models/group_0844.py index 7de2dc1e4..244200532 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0844.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0844.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0845.py b/githubkit/versions/ghec_v2022_11_28/models/group_0845.py index 7e0196770..7e46d6f16 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0845.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0845.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0846.py b/githubkit/versions/ghec_v2022_11_28/models/group_0846.py index 9c811c3f9..1fd521272 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0846.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0846.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0847.py b/githubkit/versions/ghec_v2022_11_28/models/group_0847.py index bcdf20178..57527ac29 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0847.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0847.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0848.py b/githubkit/versions/ghec_v2022_11_28/models/group_0848.py index 70b132e04..b2ff27430 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0848.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0848.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0849.py b/githubkit/versions/ghec_v2022_11_28/models/group_0849.py index e15bcbea4..7644fe550 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0849.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0849.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0850.py b/githubkit/versions/ghec_v2022_11_28/models/group_0850.py index f24ae3553..d16ddbf37 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0850.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0850.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0851.py b/githubkit/versions/ghec_v2022_11_28/models/group_0851.py index e92da5524..1cc1f6139 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0851.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0851.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0852.py b/githubkit/versions/ghec_v2022_11_28/models/group_0852.py index 074805ac3..406984575 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0852.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0852.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from githubkit.compat import GitHubModel, model_rebuild diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0853.py b/githubkit/versions/ghec_v2022_11_28/models/group_0853.py index 4e966b387..dc85ce165 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0853.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0853.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0854.py b/githubkit/versions/ghec_v2022_11_28/models/group_0854.py index fad0edd6d..33e9e3dcc 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0854.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0854.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0855.py b/githubkit/versions/ghec_v2022_11_28/models/group_0855.py index 25b501707..13773092a 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0855.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0855.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0856.py b/githubkit/versions/ghec_v2022_11_28/models/group_0856.py index 9f31d787a..585475cf4 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0856.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0856.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0857.py b/githubkit/versions/ghec_v2022_11_28/models/group_0857.py index bfa527e78..a2c5766c1 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0857.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0857.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0858.py b/githubkit/versions/ghec_v2022_11_28/models/group_0858.py index 4ba4b78af..1d891acfc 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0858.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0858.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0859.py b/githubkit/versions/ghec_v2022_11_28/models/group_0859.py index 0b290ba9b..152fcb757 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0859.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0859.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from githubkit.compat import ExtraGitHubModel, model_rebuild diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0860.py b/githubkit/versions/ghec_v2022_11_28/models/group_0860.py index 3a87c6f6a..d184764f7 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0860.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0860.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0861.py b/githubkit/versions/ghec_v2022_11_28/models/group_0861.py index e755e69a1..48667f780 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0861.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0861.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0862.py b/githubkit/versions/ghec_v2022_11_28/models/group_0862.py index 3d96403e3..f30d03dfc 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0862.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0862.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0863.py b/githubkit/versions/ghec_v2022_11_28/models/group_0863.py index 6a6729d8d..f40988008 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0863.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0863.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0864.py b/githubkit/versions/ghec_v2022_11_28/models/group_0864.py index 6ccf8da12..1d1fa60a8 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0864.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0864.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0865.py b/githubkit/versions/ghec_v2022_11_28/models/group_0865.py index 2d89801fb..e25cd2052 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0865.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0865.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0866.py b/githubkit/versions/ghec_v2022_11_28/models/group_0866.py index cd2bbc6b5..a173b9741 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0866.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0866.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0867.py b/githubkit/versions/ghec_v2022_11_28/models/group_0867.py index eee8bb5ba..d348290c9 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0867.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0867.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0868.py b/githubkit/versions/ghec_v2022_11_28/models/group_0868.py index 9250a7d9a..07869aecc 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0868.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0868.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0869.py b/githubkit/versions/ghec_v2022_11_28/models/group_0869.py index 54eaa4d7c..a6228713e 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0869.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0869.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0870.py b/githubkit/versions/ghec_v2022_11_28/models/group_0870.py index 6c7c6d4b2..41a29b6c1 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0870.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0870.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0871.py b/githubkit/versions/ghec_v2022_11_28/models/group_0871.py index 174d252c6..46fd2b18a 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0871.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0871.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0872.py b/githubkit/versions/ghec_v2022_11_28/models/group_0872.py index bcc627f20..6bdb6f4b0 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0872.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0872.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0873.py b/githubkit/versions/ghec_v2022_11_28/models/group_0873.py index c9ef872a8..1183e8a83 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0873.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0873.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0874.py b/githubkit/versions/ghec_v2022_11_28/models/group_0874.py index 63d32a32b..3a7e14ffb 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0874.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0874.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0875.py b/githubkit/versions/ghec_v2022_11_28/models/group_0875.py index bb010410e..1403762a0 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0875.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0875.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0876.py b/githubkit/versions/ghec_v2022_11_28/models/group_0876.py index 63c692546..efb2a4e46 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0876.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0876.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0877.py b/githubkit/versions/ghec_v2022_11_28/models/group_0877.py index 46f9fb709..d05317d67 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0877.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0877.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0878.py b/githubkit/versions/ghec_v2022_11_28/models/group_0878.py index 9456215c1..977f8b47b 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0878.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0878.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0879.py b/githubkit/versions/ghec_v2022_11_28/models/group_0879.py index 66bef193e..8cbcddfe6 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0879.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0879.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0880.py b/githubkit/versions/ghec_v2022_11_28/models/group_0880.py index e34509cf7..aed3fa1a8 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0880.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0880.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0881.py b/githubkit/versions/ghec_v2022_11_28/models/group_0881.py index c3e0fd8e6..351ebec68 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0881.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0881.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0882.py b/githubkit/versions/ghec_v2022_11_28/models/group_0882.py index cdfd053f8..4da522baf 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0882.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0882.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0883.py b/githubkit/versions/ghec_v2022_11_28/models/group_0883.py index 3ec4c43a3..6b63828a9 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0883.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0883.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0884.py b/githubkit/versions/ghec_v2022_11_28/models/group_0884.py index 07d4f6fe7..c642ead3b 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0884.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0884.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from githubkit.compat import GitHubModel, model_rebuild diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0885.py b/githubkit/versions/ghec_v2022_11_28/models/group_0885.py index 6d7031039..34e7a41a1 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0885.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0885.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0886.py b/githubkit/versions/ghec_v2022_11_28/models/group_0886.py index 88bded6aa..08c16e9ea 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0886.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0886.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0887.py b/githubkit/versions/ghec_v2022_11_28/models/group_0887.py index e807d0938..2b6c200b5 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0887.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0887.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0888.py b/githubkit/versions/ghec_v2022_11_28/models/group_0888.py index d155457ae..d8ee0a92c 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0888.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0888.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0889.py b/githubkit/versions/ghec_v2022_11_28/models/group_0889.py index 18e33acf4..9751ae0a5 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0889.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0889.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0890.py b/githubkit/versions/ghec_v2022_11_28/models/group_0890.py index 721ab3774..847f097ba 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0890.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0890.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0891.py b/githubkit/versions/ghec_v2022_11_28/models/group_0891.py index 698cc5540..233170b79 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0891.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0891.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0892.py b/githubkit/versions/ghec_v2022_11_28/models/group_0892.py index 2743c4bdf..007f29b18 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0892.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0892.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0893.py b/githubkit/versions/ghec_v2022_11_28/models/group_0893.py index 534331a7a..f52322c46 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0893.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0893.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0894.py b/githubkit/versions/ghec_v2022_11_28/models/group_0894.py index 6df84c6f5..882706ed7 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0894.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0894.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0895.py b/githubkit/versions/ghec_v2022_11_28/models/group_0895.py index 7955fe667..f85a05eb9 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0895.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0895.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0896.py b/githubkit/versions/ghec_v2022_11_28/models/group_0896.py index d15ab2191..00dd92570 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0896.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0896.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0897.py b/githubkit/versions/ghec_v2022_11_28/models/group_0897.py index 32403134f..1aceffcdd 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0897.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0897.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0898.py b/githubkit/versions/ghec_v2022_11_28/models/group_0898.py index eae38c003..e1c1a2eb8 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0898.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0898.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0899.py b/githubkit/versions/ghec_v2022_11_28/models/group_0899.py index 2e30217cd..f64804bba 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0899.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0899.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0900.py b/githubkit/versions/ghec_v2022_11_28/models/group_0900.py index e01821b86..9c0d4d548 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0900.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0900.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0901.py b/githubkit/versions/ghec_v2022_11_28/models/group_0901.py index 310981c71..c2330ac7f 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0901.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0901.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0902.py b/githubkit/versions/ghec_v2022_11_28/models/group_0902.py index 8a96dbb08..79e08acac 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0902.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0902.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0903.py b/githubkit/versions/ghec_v2022_11_28/models/group_0903.py index f66ef1eb6..33374f7a4 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0903.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0903.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0904.py b/githubkit/versions/ghec_v2022_11_28/models/group_0904.py index 0b4b5c4a8..232c59473 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0904.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0904.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0905.py b/githubkit/versions/ghec_v2022_11_28/models/group_0905.py index 18fafae9c..2ffeafd63 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0905.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0905.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0906.py b/githubkit/versions/ghec_v2022_11_28/models/group_0906.py index 560d35275..b155361d8 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0906.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0906.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0907.py b/githubkit/versions/ghec_v2022_11_28/models/group_0907.py index 769e52407..0c04cf7c5 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0907.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0907.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0908.py b/githubkit/versions/ghec_v2022_11_28/models/group_0908.py index 286374f65..846c816b0 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0908.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0908.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0909.py b/githubkit/versions/ghec_v2022_11_28/models/group_0909.py index 5b752e20b..daf852734 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0909.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0909.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0910.py b/githubkit/versions/ghec_v2022_11_28/models/group_0910.py index f840cdc67..d95a23ed2 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0910.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0910.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0911.py b/githubkit/versions/ghec_v2022_11_28/models/group_0911.py index ee6436503..0b346bd1e 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0911.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0911.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0912.py b/githubkit/versions/ghec_v2022_11_28/models/group_0912.py index 146cc9786..de3c22c09 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0912.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0912.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0913.py b/githubkit/versions/ghec_v2022_11_28/models/group_0913.py index ca75133c3..be657ea20 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0913.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0913.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0914.py b/githubkit/versions/ghec_v2022_11_28/models/group_0914.py index 6bb1eeed7..cac422f0a 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0914.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0914.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0915.py b/githubkit/versions/ghec_v2022_11_28/models/group_0915.py index 798272a82..4658506c5 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0915.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0915.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0916.py b/githubkit/versions/ghec_v2022_11_28/models/group_0916.py index 4106dffaf..742a32f9a 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0916.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0916.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0917.py b/githubkit/versions/ghec_v2022_11_28/models/group_0917.py index adac3f02e..cd24940ff 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0917.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0917.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0918.py b/githubkit/versions/ghec_v2022_11_28/models/group_0918.py index 7165e3062..9c21960a6 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0918.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0918.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0919.py b/githubkit/versions/ghec_v2022_11_28/models/group_0919.py index dbaa3ecdf..83b1c7887 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0919.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0919.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0920.py b/githubkit/versions/ghec_v2022_11_28/models/group_0920.py index 884ae64d6..05a3214de 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0920.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0920.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0921.py b/githubkit/versions/ghec_v2022_11_28/models/group_0921.py index f9d879a8f..c722332b8 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0921.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0921.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0922.py b/githubkit/versions/ghec_v2022_11_28/models/group_0922.py index d000768a4..36b29d175 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0922.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0922.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0923.py b/githubkit/versions/ghec_v2022_11_28/models/group_0923.py index a2142f1bc..333670cb3 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0923.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0923.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0924.py b/githubkit/versions/ghec_v2022_11_28/models/group_0924.py index 3e3feec30..022333c11 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0924.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0924.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0925.py b/githubkit/versions/ghec_v2022_11_28/models/group_0925.py index be39f34fa..584db74a2 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0925.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0925.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0926.py b/githubkit/versions/ghec_v2022_11_28/models/group_0926.py index f994e34b5..e5bd04750 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0926.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0926.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0927.py b/githubkit/versions/ghec_v2022_11_28/models/group_0927.py index d8cd3dac3..e6a322116 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0927.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0927.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0928.py b/githubkit/versions/ghec_v2022_11_28/models/group_0928.py index da9878824..184351fa2 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0928.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0928.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0929.py b/githubkit/versions/ghec_v2022_11_28/models/group_0929.py index 1a0ecd844..6e2dccf88 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0929.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0929.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0930.py b/githubkit/versions/ghec_v2022_11_28/models/group_0930.py index 6d3b339b7..291c94f37 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0930.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0930.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0931.py b/githubkit/versions/ghec_v2022_11_28/models/group_0931.py index 71daf6da9..803b279ed 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0931.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0931.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0932.py b/githubkit/versions/ghec_v2022_11_28/models/group_0932.py index d255f1d2a..6e6a02fe1 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0932.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0932.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0933.py b/githubkit/versions/ghec_v2022_11_28/models/group_0933.py index 80ba38a96..e04c76aa7 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0933.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0933.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0934.py b/githubkit/versions/ghec_v2022_11_28/models/group_0934.py index 40faac84b..66a73d449 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0934.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0934.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0935.py b/githubkit/versions/ghec_v2022_11_28/models/group_0935.py index 00b86b590..0235488ca 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0935.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0935.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0936.py b/githubkit/versions/ghec_v2022_11_28/models/group_0936.py index 3cb78ce10..d4797058d 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0936.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0936.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0937.py b/githubkit/versions/ghec_v2022_11_28/models/group_0937.py index f95416b82..d5f7fdb7f 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0937.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0937.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0938.py b/githubkit/versions/ghec_v2022_11_28/models/group_0938.py index 949062ac7..a7298f36e 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0938.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0938.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0939.py b/githubkit/versions/ghec_v2022_11_28/models/group_0939.py index e400d725d..985d78ccf 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0939.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0939.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0940.py b/githubkit/versions/ghec_v2022_11_28/models/group_0940.py index 1f39c7943..82b58fb44 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0940.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0940.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0941.py b/githubkit/versions/ghec_v2022_11_28/models/group_0941.py index e2cd4b446..17fac965f 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0941.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0941.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from githubkit.compat import GitHubModel, model_rebuild diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0942.py b/githubkit/versions/ghec_v2022_11_28/models/group_0942.py index acebac3bd..22b6534f0 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0942.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0942.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal @@ -30,11 +29,11 @@ class OrgsOrgInvitationsPostBody(GitHubModel): default=UNSET, description="**Required unless you provide `invitee_id`**. Email address of the person you are inviting, which can be an existing GitHub user.", ) - role: Missing[ - Literal["admin", "direct_member", "billing_manager", "reinstate"] - ] = Field( - default=UNSET, - description="The role for the new member. \n * `admin` - Organization owners with full administrative rights to the organization and complete access to all repositories and teams. \n * `direct_member` - Non-owner organization members with ability to see other members and join teams by invitation. \n * `billing_manager` - Non-owner organization members with ability to manage the billing settings of your organization. \n * `reinstate` - The previous role assigned to the invitee before they were removed from your organization. Can be one of the roles listed above. Only works if the invitee was previously part of your organization.", + role: Missing[Literal["admin", "direct_member", "billing_manager", "reinstate"]] = ( + Field( + default=UNSET, + description="The role for the new member. \n * `admin` - Organization owners with full administrative rights to the organization and complete access to all repositories and teams. \n * `direct_member` - Non-owner organization members with ability to see other members and join teams by invitation. \n * `billing_manager` - Non-owner organization members with ability to manage the billing settings of your organization. \n * `reinstate` - The previous role assigned to the invitee before they were removed from your organization. Can be one of the roles listed above. Only works if the invitee was previously part of your organization.", + ) ) team_ids: Missing[List[int]] = Field( default=UNSET, diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0943.py b/githubkit/versions/ghec_v2022_11_28/models/group_0943.py index 1e7415ce7..ee5e0b47e 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0943.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0943.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0944.py b/githubkit/versions/ghec_v2022_11_28/models/group_0944.py index db9618eab..0fda1e440 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0944.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0944.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0945.py b/githubkit/versions/ghec_v2022_11_28/models/group_0945.py index 949b46d83..7a28ea6f2 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0945.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0945.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0946.py b/githubkit/versions/ghec_v2022_11_28/models/group_0946.py index ec2ee3591..442fd0c33 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0946.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0946.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0947.py b/githubkit/versions/ghec_v2022_11_28/models/group_0947.py index c727b036c..36fea21d7 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0947.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0947.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0948.py b/githubkit/versions/ghec_v2022_11_28/models/group_0948.py index 15dc904ee..793575830 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0948.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0948.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0949.py b/githubkit/versions/ghec_v2022_11_28/models/group_0949.py index 0f6fc3571..dc2469b07 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0949.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0949.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from githubkit.compat import GitHubModel, model_rebuild diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0950.py b/githubkit/versions/ghec_v2022_11_28/models/group_0950.py index b8fd30166..343f287e2 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0950.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0950.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0951.py b/githubkit/versions/ghec_v2022_11_28/models/group_0951.py index 1d684f4e2..79ab5caf5 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0951.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0951.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0952.py b/githubkit/versions/ghec_v2022_11_28/models/group_0952.py index df2ca1d1e..eb9596a93 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0952.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0952.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0953.py b/githubkit/versions/ghec_v2022_11_28/models/group_0953.py index 93439cb97..297f764b9 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0953.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0953.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0954.py b/githubkit/versions/ghec_v2022_11_28/models/group_0954.py index 858de01ce..53f6146e3 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0954.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0954.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0955.py b/githubkit/versions/ghec_v2022_11_28/models/group_0955.py index 0ae493b2c..bc57fa609 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0955.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0955.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0956.py b/githubkit/versions/ghec_v2022_11_28/models/group_0956.py index 26d580bc1..a19fd7d68 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0956.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0956.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0957.py b/githubkit/versions/ghec_v2022_11_28/models/group_0957.py index 1dc2fa54a..5b479ee53 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0957.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0957.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0958.py b/githubkit/versions/ghec_v2022_11_28/models/group_0958.py index 8bbb5e910..2866225a9 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0958.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0958.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0959.py b/githubkit/versions/ghec_v2022_11_28/models/group_0959.py index f1d541209..625d7833a 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0959.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0959.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal @@ -94,11 +93,11 @@ class OrgsOrgReposPostBody(GitHubModel): default=UNSET, description="Either `true` to allow squash-merge commits to use pull request title, or `false` to use commit message. **This property has been deprecated. Please use `squash_merge_commit_title` instead.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) squash_merge_commit_message: Missing[ Literal["PR_BODY", "COMMIT_MESSAGES", "BLANK"] diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0960.py b/githubkit/versions/ghec_v2022_11_28/models/group_0960.py index 2ad886161..3d9e1846b 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0960.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0960.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0961.py b/githubkit/versions/ghec_v2022_11_28/models/group_0961.py index 1c42ca30c..ac9be72f2 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0961.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0961.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0962.py b/githubkit/versions/ghec_v2022_11_28/models/group_0962.py index 53a5e765f..f75a38dbc 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0962.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0962.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0963.py b/githubkit/versions/ghec_v2022_11_28/models/group_0963.py index 53140f573..f3835d246 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0963.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0963.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0964.py b/githubkit/versions/ghec_v2022_11_28/models/group_0964.py index 9dc26423f..02ba3ccdd 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0964.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0964.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0965.py b/githubkit/versions/ghec_v2022_11_28/models/group_0965.py index 4b0e08e47..f19071c10 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0965.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0965.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0966.py b/githubkit/versions/ghec_v2022_11_28/models/group_0966.py index 2b2568b34..d8f084a3e 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0966.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0966.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0967.py b/githubkit/versions/ghec_v2022_11_28/models/group_0967.py index 7e339ea6d..f9ed8041d 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0967.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0967.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0968.py b/githubkit/versions/ghec_v2022_11_28/models/group_0968.py index 115d91e06..6459343b4 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0968.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0968.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0969.py b/githubkit/versions/ghec_v2022_11_28/models/group_0969.py index eee876423..1c2173ab7 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0969.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0969.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0970.py b/githubkit/versions/ghec_v2022_11_28/models/group_0970.py index 126ddf6d4..c48fb6c94 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0970.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0970.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0971.py b/githubkit/versions/ghec_v2022_11_28/models/group_0971.py index 30d9f451f..6b6e99580 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0971.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0971.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0972.py b/githubkit/versions/ghec_v2022_11_28/models/group_0972.py index c6d6d187d..3e7506639 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0972.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0972.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0973.py b/githubkit/versions/ghec_v2022_11_28/models/group_0973.py index 5520948d9..3603ad202 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0973.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0973.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0974.py b/githubkit/versions/ghec_v2022_11_28/models/group_0974.py index 51f26e50d..cb788d669 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0974.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0974.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0975.py b/githubkit/versions/ghec_v2022_11_28/models/group_0975.py index 52678797b..ba1a1500d 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0975.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0975.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0976.py b/githubkit/versions/ghec_v2022_11_28/models/group_0976.py index a9f5b2aac..0164cc723 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0976.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0976.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0977.py b/githubkit/versions/ghec_v2022_11_28/models/group_0977.py index 4e0dc7e8b..8e85c1489 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0977.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0977.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0978.py b/githubkit/versions/ghec_v2022_11_28/models/group_0978.py index c6cb2588d..6ff9e974c 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0978.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0978.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0979.py b/githubkit/versions/ghec_v2022_11_28/models/group_0979.py index ff177797f..d9c5ebe68 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0979.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0979.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0980.py b/githubkit/versions/ghec_v2022_11_28/models/group_0980.py index dceb594d5..7d3245c63 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0980.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0980.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from githubkit.compat import GitHubModel, model_rebuild diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0981.py b/githubkit/versions/ghec_v2022_11_28/models/group_0981.py index 1042f4756..97fe55aa9 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0981.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0981.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0982.py b/githubkit/versions/ghec_v2022_11_28/models/group_0982.py index ce18c8bea..2a0dcefa7 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0982.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0982.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0983.py b/githubkit/versions/ghec_v2022_11_28/models/group_0983.py index 5cd484949..e6f9395a8 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0983.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0983.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0984.py b/githubkit/versions/ghec_v2022_11_28/models/group_0984.py index c92975003..17db0e859 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0984.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0984.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0985.py b/githubkit/versions/ghec_v2022_11_28/models/group_0985.py index aa11a7263..78dbfee00 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0985.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0985.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0986.py b/githubkit/versions/ghec_v2022_11_28/models/group_0986.py index f7c42adf1..090a030ce 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0986.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0986.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0987.py b/githubkit/versions/ghec_v2022_11_28/models/group_0987.py index f0777b544..003392298 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0987.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0987.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0988.py b/githubkit/versions/ghec_v2022_11_28/models/group_0988.py index 1f7191077..6009bdb4e 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0988.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0988.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from githubkit.compat import GitHubModel, model_rebuild diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0989.py b/githubkit/versions/ghec_v2022_11_28/models/group_0989.py index 444816ebd..8185d7ede 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0989.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0989.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0990.py b/githubkit/versions/ghec_v2022_11_28/models/group_0990.py index 1aed0cda6..b66b14460 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0990.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0990.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0991.py b/githubkit/versions/ghec_v2022_11_28/models/group_0991.py index 56ecc0f15..5a474d68b 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0991.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0991.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0992.py b/githubkit/versions/ghec_v2022_11_28/models/group_0992.py index 6cd11fd34..a5695c5c0 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0992.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0992.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0993.py b/githubkit/versions/ghec_v2022_11_28/models/group_0993.py index e9c8b0a65..e33e0910d 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0993.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0993.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0994.py b/githubkit/versions/ghec_v2022_11_28/models/group_0994.py index fa91c0def..f4e118c4e 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0994.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0994.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0995.py b/githubkit/versions/ghec_v2022_11_28/models/group_0995.py index 080dfc4fd..fa6e0df52 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0995.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0995.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal @@ -89,11 +88,11 @@ class ReposOwnerRepoPatchBody(GitHubModel): default=UNSET, description="Either `true` to allow squash-merge commits to use pull request title, or `false` to use commit message. **This property has been deprecated. Please use `squash_merge_commit_title` instead.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) squash_merge_commit_message: Missing[ Literal["PR_BODY", "COMMIT_MESSAGES", "BLANK"] diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0996.py b/githubkit/versions/ghec_v2022_11_28/models/group_0996.py index dc00b41ec..9ff6e0540 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0996.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0996.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0997.py b/githubkit/versions/ghec_v2022_11_28/models/group_0997.py index a2cbdf398..4b45f9286 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0997.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0997.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0998.py b/githubkit/versions/ghec_v2022_11_28/models/group_0998.py index 10b71e450..7f44831d4 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0998.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0998.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0999.py b/githubkit/versions/ghec_v2022_11_28/models/group_0999.py index c09f49aa8..4a467a34e 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0999.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_0999.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1000.py b/githubkit/versions/ghec_v2022_11_28/models/group_1000.py index 4c5315964..9284acfb8 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1000.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1000.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1001.py b/githubkit/versions/ghec_v2022_11_28/models/group_1001.py index 7b2efdfaf..cd92079a4 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1001.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1001.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1002.py b/githubkit/versions/ghec_v2022_11_28/models/group_1002.py index 964988766..0eada8df4 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1002.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1002.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1003.py b/githubkit/versions/ghec_v2022_11_28/models/group_1003.py index 221238a19..c091701cc 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1003.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1003.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1004.py b/githubkit/versions/ghec_v2022_11_28/models/group_1004.py index e71571df3..47ec574ee 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1004.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1004.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1005.py b/githubkit/versions/ghec_v2022_11_28/models/group_1005.py index 02be41a28..f0573dca7 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1005.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1005.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1006.py b/githubkit/versions/ghec_v2022_11_28/models/group_1006.py index e301e9aec..246d84080 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1006.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1006.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1007.py b/githubkit/versions/ghec_v2022_11_28/models/group_1007.py index 983916ec4..d59e94d7b 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1007.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1007.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1008.py b/githubkit/versions/ghec_v2022_11_28/models/group_1008.py index 3ff1be613..e0a1881c2 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1008.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1008.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1009.py b/githubkit/versions/ghec_v2022_11_28/models/group_1009.py index 04ac9df09..df950841e 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1009.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1009.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1010.py b/githubkit/versions/ghec_v2022_11_28/models/group_1010.py index 58a596ec8..d62931f9a 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1010.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1010.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1011.py b/githubkit/versions/ghec_v2022_11_28/models/group_1011.py index 936b8aac5..28385e889 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1011.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1011.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1012.py b/githubkit/versions/ghec_v2022_11_28/models/group_1012.py index c21f36664..c79dac58f 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1012.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1012.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1013.py b/githubkit/versions/ghec_v2022_11_28/models/group_1013.py index 7685d3dfd..9b795a850 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1013.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1013.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1014.py b/githubkit/versions/ghec_v2022_11_28/models/group_1014.py index dc3d8606f..e1968472d 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1014.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1014.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1015.py b/githubkit/versions/ghec_v2022_11_28/models/group_1015.py index 44c204f2c..41b8f932c 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1015.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1015.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1016.py b/githubkit/versions/ghec_v2022_11_28/models/group_1016.py index 6555fa5b3..bf9209ee5 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1016.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1016.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1017.py b/githubkit/versions/ghec_v2022_11_28/models/group_1017.py index 933a8a27b..f0b922c41 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1017.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1017.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1018.py b/githubkit/versions/ghec_v2022_11_28/models/group_1018.py index d5a568931..d5193e37e 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1018.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1018.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1019.py b/githubkit/versions/ghec_v2022_11_28/models/group_1019.py index cb86fe4bb..506702767 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1019.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1019.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1020.py b/githubkit/versions/ghec_v2022_11_28/models/group_1020.py index 047c9782a..ad8d6bf41 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1020.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1020.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1021.py b/githubkit/versions/ghec_v2022_11_28/models/group_1021.py index 79b83365c..171e026b6 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1021.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1021.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1022.py b/githubkit/versions/ghec_v2022_11_28/models/group_1022.py index 91c073904..37533ed53 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1022.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1022.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1023.py b/githubkit/versions/ghec_v2022_11_28/models/group_1023.py index 719dc7faf..bf12fcce1 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1023.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1023.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1024.py b/githubkit/versions/ghec_v2022_11_28/models/group_1024.py index b54c8dd14..2c40acb3b 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1024.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1024.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1025.py b/githubkit/versions/ghec_v2022_11_28/models/group_1025.py index dacc26e66..39635099b 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1025.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1025.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1026.py b/githubkit/versions/ghec_v2022_11_28/models/group_1026.py index 842999e78..f699ea725 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1026.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1026.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1027.py b/githubkit/versions/ghec_v2022_11_28/models/group_1027.py index 3945e94ce..0a6816433 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1027.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1027.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1028.py b/githubkit/versions/ghec_v2022_11_28/models/group_1028.py index 276db9909..661488f46 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1028.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1028.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1029.py b/githubkit/versions/ghec_v2022_11_28/models/group_1029.py index 8e739066a..04feeadfe 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1029.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1029.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1030.py b/githubkit/versions/ghec_v2022_11_28/models/group_1030.py index 944ed54c6..f44772a3b 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1030.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1030.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1031.py b/githubkit/versions/ghec_v2022_11_28/models/group_1031.py index 3bc3469ab..1f7be7c63 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1031.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1031.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1032.py b/githubkit/versions/ghec_v2022_11_28/models/group_1032.py index d313aae79..cad6d2023 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1032.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1032.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1033.py b/githubkit/versions/ghec_v2022_11_28/models/group_1033.py index 72f8c7cfa..a92d25c56 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1033.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1033.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1034.py b/githubkit/versions/ghec_v2022_11_28/models/group_1034.py index 9097d715f..1c399dbec 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1034.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1034.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1035.py b/githubkit/versions/ghec_v2022_11_28/models/group_1035.py index e8657e723..669ca7afa 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1035.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1035.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1036.py b/githubkit/versions/ghec_v2022_11_28/models/group_1036.py index 004f94103..4fc86a736 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1036.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1036.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1037.py b/githubkit/versions/ghec_v2022_11_28/models/group_1037.py index aed93947a..5fcd45c02 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1037.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1037.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1038.py b/githubkit/versions/ghec_v2022_11_28/models/group_1038.py index 8346f26a2..0746e9073 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1038.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1038.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal @@ -44,11 +43,11 @@ class ReposOwnerRepoCheckRunsPostBodyPropOutput(GitHubModel): default=UNSET, description='Adds information from your analysis to specific lines of code. Annotations are visible on GitHub in the **Checks** and **Files changed** tab of the pull request. The Checks API limits the number of annotations to a maximum of 50 per API request. To create more than 50 annotations, you have to make multiple requests to the [Update a check run](https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#update-a-check-run) endpoint. Each time you update the check run, annotations are appended to the list of annotations that already exist for the check run. GitHub Actions are limited to 10 warning annotations and 10 error annotations per step. For details about how you can view annotations on GitHub, see "[About status checks](https://docs.github.com/enterprise-cloud@latest//articles/about-status-checks#checks)".', ) - images: Missing[ - List[ReposOwnerRepoCheckRunsPostBodyPropOutputPropImagesItems] - ] = Field( - default=UNSET, - description="Adds images to the output displayed in the GitHub pull request UI.", + images: Missing[List[ReposOwnerRepoCheckRunsPostBodyPropOutputPropImagesItems]] = ( + Field( + default=UNSET, + description="Adds images to the output displayed in the GitHub pull request UI.", + ) ) diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1039.py b/githubkit/versions/ghec_v2022_11_28/models/group_1039.py index b1f4c13b1..81218dede 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1039.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1039.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1040.py b/githubkit/versions/ghec_v2022_11_28/models/group_1040.py index 984c66922..64903ce53 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1040.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1040.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1041.py b/githubkit/versions/ghec_v2022_11_28/models/group_1041.py index df189aa69..b658d212e 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1041.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1041.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1042.py b/githubkit/versions/ghec_v2022_11_28/models/group_1042.py index dd1fa83f2..8a14bf014 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1042.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1042.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1043.py b/githubkit/versions/ghec_v2022_11_28/models/group_1043.py index 8aad3cb93..2aeae8c26 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1043.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1043.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1044.py b/githubkit/versions/ghec_v2022_11_28/models/group_1044.py index 96d32222a..2a8e7cd54 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1044.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1044.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1045.py b/githubkit/versions/ghec_v2022_11_28/models/group_1045.py index 7a7f9a272..e31b287e9 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1045.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1045.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1046.py b/githubkit/versions/ghec_v2022_11_28/models/group_1046.py index 9f42dd8bc..a491b4ccd 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1046.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1046.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1047.py b/githubkit/versions/ghec_v2022_11_28/models/group_1047.py index 7f31032c3..14e8507cc 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1047.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1047.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal @@ -32,11 +31,11 @@ class ReposOwnerRepoCodeScanningAlertsAlertNumberPatchBody(GitHubModel): default=UNSET, description="**Required when the state is dismissed.** The reason for dismissing or closing the alert.", ) - dismissed_comment: Missing[ - Union[Annotated[str, Field(max_length=280)], None] - ] = Field( - default=UNSET, - description="The dismissal comment associated with the dismissal of the alert.", + dismissed_comment: Missing[Union[Annotated[str, Field(max_length=280)], None]] = ( + Field( + default=UNSET, + description="The dismissal comment associated with the dismissal of the alert.", + ) ) diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1048.py b/githubkit/versions/ghec_v2022_11_28/models/group_1048.py index 1c2500f03..ed78e98a4 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1048.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1048.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1049.py b/githubkit/versions/ghec_v2022_11_28/models/group_1049.py index 40b082919..88962b261 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1049.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1049.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1050.py b/githubkit/versions/ghec_v2022_11_28/models/group_1050.py index 46f4881f3..fcbf9ab7e 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1050.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1050.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1051.py b/githubkit/versions/ghec_v2022_11_28/models/group_1051.py index e9966fe40..94896c110 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1051.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1051.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1052.py b/githubkit/versions/ghec_v2022_11_28/models/group_1052.py index 2c9aab718..224bf90ad 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1052.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1052.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1053.py b/githubkit/versions/ghec_v2022_11_28/models/group_1053.py index 69d2fe052..cbb5b1e1b 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1053.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1053.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1054.py b/githubkit/versions/ghec_v2022_11_28/models/group_1054.py index c1a88b769..e99811a75 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1054.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1054.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1055.py b/githubkit/versions/ghec_v2022_11_28/models/group_1055.py index 83ba3f657..f9c1b8267 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1055.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1055.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1056.py b/githubkit/versions/ghec_v2022_11_28/models/group_1056.py index c9a1787f7..e02fc904b 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1056.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1056.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1057.py b/githubkit/versions/ghec_v2022_11_28/models/group_1057.py index abca28ab6..75effd211 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1057.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1057.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1058.py b/githubkit/versions/ghec_v2022_11_28/models/group_1058.py index d7bcd1e7f..a64b1dfaa 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1058.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1058.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1059.py b/githubkit/versions/ghec_v2022_11_28/models/group_1059.py index 41d22b2d7..7a8745468 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1059.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1059.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1060.py b/githubkit/versions/ghec_v2022_11_28/models/group_1060.py index fa192c3c7..6f9b29248 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1060.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1060.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1061.py b/githubkit/versions/ghec_v2022_11_28/models/group_1061.py index daa08bbc4..ed215f98b 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1061.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1061.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1062.py b/githubkit/versions/ghec_v2022_11_28/models/group_1062.py index ba0fa2598..887992d4b 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1062.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1062.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1063.py b/githubkit/versions/ghec_v2022_11_28/models/group_1063.py index f70402bd0..d872bec34 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1063.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1063.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1064.py b/githubkit/versions/ghec_v2022_11_28/models/group_1064.py index ca37f0afc..6b696bdc7 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1064.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1064.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1065.py b/githubkit/versions/ghec_v2022_11_28/models/group_1065.py index 98e133af0..e84feaee0 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1065.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1065.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1066.py b/githubkit/versions/ghec_v2022_11_28/models/group_1066.py index 36d282a38..d8abaeb32 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1066.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1066.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1067.py b/githubkit/versions/ghec_v2022_11_28/models/group_1067.py index 70b727294..e794f6b41 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1067.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1067.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union @@ -37,9 +36,9 @@ class ReposOwnerRepoDeploymentsPostBody(GitHubModel): default=UNSET, description="The [status](https://docs.github.com/enterprise-cloud@latest//rest/commits/statuses) contexts to verify against commit status checks. If you omit this parameter, GitHub verifies all unique contexts before creating a deployment. To bypass checking entirely, pass an empty array. Defaults to all unique contexts.", ) - payload: Missing[ - Union[ReposOwnerRepoDeploymentsPostBodyPropPayloadOneof0, str] - ] = Field(default=UNSET) + payload: Missing[Union[ReposOwnerRepoDeploymentsPostBodyPropPayloadOneof0, str]] = ( + Field(default=UNSET) + ) environment: Missing[str] = Field( default=UNSET, description="Name for the target deployment environment (e.g., `production`, `staging`, `qa`).", diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1068.py b/githubkit/versions/ghec_v2022_11_28/models/group_1068.py index 0fc87e471..8fe47fba1 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1068.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1068.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1069.py b/githubkit/versions/ghec_v2022_11_28/models/group_1069.py index 966a8b208..b51ea5c18 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1069.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1069.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1070.py b/githubkit/versions/ghec_v2022_11_28/models/group_1070.py index 0c5acced9..019ffdc28 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1070.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1070.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1071.py b/githubkit/versions/ghec_v2022_11_28/models/group_1071.py index 2266f9f7d..85056714a 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1071.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1071.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal @@ -41,11 +40,11 @@ class ReposOwnerRepoEnvironmentsEnvironmentNamePutBody(GitHubModel): default=UNSET, description="The people or teams that may review jobs that reference the environment. You can list up to six users or teams as reviewers. The reviewers must have at least read access to the repository. Only one of the required reviewers needs to approve the job for it to proceed.", ) - deployment_branch_policy: Missing[ - Union[DeploymentBranchPolicySettings, None] - ] = Field( - default=UNSET, - description="The type of deployment branch policy for this environment. To allow all branches to deploy, set to `null`.", + deployment_branch_policy: Missing[Union[DeploymentBranchPolicySettings, None]] = ( + Field( + default=UNSET, + description="The type of deployment branch policy for this environment. To allow all branches to deploy, set to `null`.", + ) ) diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1072.py b/githubkit/versions/ghec_v2022_11_28/models/group_1072.py index 837fd3a77..164fcd76f 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1072.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1072.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1073.py b/githubkit/versions/ghec_v2022_11_28/models/group_1073.py index 56367e6b5..b159fbf0c 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1073.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1073.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1074.py b/githubkit/versions/ghec_v2022_11_28/models/group_1074.py index 09857dc2d..27a26ecee 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1074.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1074.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1075.py b/githubkit/versions/ghec_v2022_11_28/models/group_1075.py index f6acb095b..e366d10fe 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1075.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1075.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1076.py b/githubkit/versions/ghec_v2022_11_28/models/group_1076.py index b86ad6ceb..60d9411b7 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1076.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1076.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1077.py b/githubkit/versions/ghec_v2022_11_28/models/group_1077.py index 9f7c5438f..6f72a2cb1 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1077.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1077.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1078.py b/githubkit/versions/ghec_v2022_11_28/models/group_1078.py index 50c07a497..376060834 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1078.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1078.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1079.py b/githubkit/versions/ghec_v2022_11_28/models/group_1079.py index af91d33b9..4bf82006d 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1079.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1079.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1080.py b/githubkit/versions/ghec_v2022_11_28/models/group_1080.py index 8a2ddcf27..0fe1a32f9 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1080.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1080.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1081.py b/githubkit/versions/ghec_v2022_11_28/models/group_1081.py index d5a11b8f6..5ef2b62bc 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1081.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1081.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1082.py b/githubkit/versions/ghec_v2022_11_28/models/group_1082.py index b1510b91c..56b388fb9 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1082.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1082.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1083.py b/githubkit/versions/ghec_v2022_11_28/models/group_1083.py index 000a6082f..e02988ad3 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1083.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1083.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1084.py b/githubkit/versions/ghec_v2022_11_28/models/group_1084.py index ff2b59c3e..457380b7b 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1084.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1084.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1085.py b/githubkit/versions/ghec_v2022_11_28/models/group_1085.py index c16ab3360..74d3527c4 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1085.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1085.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1086.py b/githubkit/versions/ghec_v2022_11_28/models/group_1086.py index 9cd457378..43ce478ab 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1086.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1086.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1087.py b/githubkit/versions/ghec_v2022_11_28/models/group_1087.py index aa9604a41..2891623cb 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1087.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1087.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1088.py b/githubkit/versions/ghec_v2022_11_28/models/group_1088.py index 62ba5dfb6..78efdb398 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1088.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1088.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1089.py b/githubkit/versions/ghec_v2022_11_28/models/group_1089.py index 8c0172ee4..20e79ec0d 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1089.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1089.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1090.py b/githubkit/versions/ghec_v2022_11_28/models/group_1090.py index c5cf2bbda..9ec5ec399 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1090.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1090.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1091.py b/githubkit/versions/ghec_v2022_11_28/models/group_1091.py index 7664690b4..c2aa14687 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1091.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1091.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1092.py b/githubkit/versions/ghec_v2022_11_28/models/group_1092.py index 82ca76919..c5a5b2258 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1092.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1092.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1093.py b/githubkit/versions/ghec_v2022_11_28/models/group_1093.py index c80b51086..7727d20f6 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1093.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1093.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1094.py b/githubkit/versions/ghec_v2022_11_28/models/group_1094.py index 8a712fdd3..759975570 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1094.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1094.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from githubkit.compat import GitHubModel, model_rebuild diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1095.py b/githubkit/versions/ghec_v2022_11_28/models/group_1095.py index 10629d9ab..d06271828 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1095.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1095.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal @@ -22,11 +21,11 @@ class ReposOwnerRepoInvitationsInvitationIdPatchBody(GitHubModel): """ReposOwnerRepoInvitationsInvitationIdPatchBody""" - permissions: Missing[ - Literal["read", "write", "maintain", "triage", "admin"] - ] = Field( - default=UNSET, - description="The permissions that the associated user will have on the repository. Valid values are `read`, `write`, `maintain`, `triage`, and `admin`.", + permissions: Missing[Literal["read", "write", "maintain", "triage", "admin"]] = ( + Field( + default=UNSET, + description="The permissions that the associated user will have on the repository. Valid values are `read`, `write`, `maintain`, `triage`, and `admin`.", + ) ) diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1096.py b/githubkit/versions/ghec_v2022_11_28/models/group_1096.py index 246a0a674..e40165dc9 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1096.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1096.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1097.py b/githubkit/versions/ghec_v2022_11_28/models/group_1097.py index 34dff37e2..2e91230e7 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1097.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1097.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1098.py b/githubkit/versions/ghec_v2022_11_28/models/group_1098.py index 3624a4d1b..e13da8a38 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1098.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1098.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1099.py b/githubkit/versions/ghec_v2022_11_28/models/group_1099.py index 54677abcd..f4cf48489 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1099.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1099.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1100.py b/githubkit/versions/ghec_v2022_11_28/models/group_1100.py index d8fee54a5..e809e4006 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1100.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1100.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1101.py b/githubkit/versions/ghec_v2022_11_28/models/group_1101.py index fcc79838e..5d857cf8c 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1101.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1101.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1102.py b/githubkit/versions/ghec_v2022_11_28/models/group_1102.py index 163bd82a0..49a6d6da0 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1102.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1102.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1103.py b/githubkit/versions/ghec_v2022_11_28/models/group_1103.py index ecdacfdbb..8d5917f2e 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1103.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1103.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1104.py b/githubkit/versions/ghec_v2022_11_28/models/group_1104.py index 37bccae64..0ed7e108e 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1104.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1104.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1105.py b/githubkit/versions/ghec_v2022_11_28/models/group_1105.py index 4bc49a232..d59513ace 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1105.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1105.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1106.py b/githubkit/versions/ghec_v2022_11_28/models/group_1106.py index 2ef6a0cea..4e8d7c310 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1106.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1106.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1107.py b/githubkit/versions/ghec_v2022_11_28/models/group_1107.py index b159eb528..0d0e29232 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1107.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1107.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1108.py b/githubkit/versions/ghec_v2022_11_28/models/group_1108.py index defbd6c56..dfb903bb9 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1108.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1108.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1109.py b/githubkit/versions/ghec_v2022_11_28/models/group_1109.py index 3bcd071e4..5769fdef9 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1109.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1109.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal @@ -22,11 +21,11 @@ class ReposOwnerRepoIssuesIssueNumberLockPutBody(GitHubModel): """ReposOwnerRepoIssuesIssueNumberLockPutBody""" - lock_reason: Missing[ - Literal["off-topic", "too heated", "resolved", "spam"] - ] = Field( - default=UNSET, - description="The reason for locking the issue or pull request conversation. Lock will fail if you don't use one of these reasons: \n * `off-topic` \n * `too heated` \n * `resolved` \n * `spam`", + lock_reason: Missing[Literal["off-topic", "too heated", "resolved", "spam"]] = ( + Field( + default=UNSET, + description="The reason for locking the issue or pull request conversation. Lock will fail if you don't use one of these reasons: \n * `off-topic` \n * `too heated` \n * `resolved` \n * `spam`", + ) ) diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1110.py b/githubkit/versions/ghec_v2022_11_28/models/group_1110.py index b40843698..42295dd52 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1110.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1110.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1111.py b/githubkit/versions/ghec_v2022_11_28/models/group_1111.py index d47d4aa6a..ed84db7b4 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1111.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1111.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1112.py b/githubkit/versions/ghec_v2022_11_28/models/group_1112.py index 1387cce16..c9c52cd3c 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1112.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1112.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1113.py b/githubkit/versions/ghec_v2022_11_28/models/group_1113.py index 360a044a6..99482c11e 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1113.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1113.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1114.py b/githubkit/versions/ghec_v2022_11_28/models/group_1114.py index e5bd2063a..7be32859a 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1114.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1114.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1115.py b/githubkit/versions/ghec_v2022_11_28/models/group_1115.py index c22a93289..052d6bba0 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1115.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1115.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1116.py b/githubkit/versions/ghec_v2022_11_28/models/group_1116.py index 4d105f702..4db27f8af 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1116.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1116.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1117.py b/githubkit/versions/ghec_v2022_11_28/models/group_1117.py index d8b31d61c..66f746617 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1117.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1117.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1118.py b/githubkit/versions/ghec_v2022_11_28/models/group_1118.py index 722f6fd61..ee1af04ff 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1118.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1118.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1119.py b/githubkit/versions/ghec_v2022_11_28/models/group_1119.py index e2bea8c94..2b5b85a37 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1119.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1119.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1120.py b/githubkit/versions/ghec_v2022_11_28/models/group_1120.py index 4c9778648..aaa502a31 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1120.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1120.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1121.py b/githubkit/versions/ghec_v2022_11_28/models/group_1121.py index 44eb77203..3d26309b6 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1121.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1121.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1122.py b/githubkit/versions/ghec_v2022_11_28/models/group_1122.py index b5cac3bb8..dd76d0dc5 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1122.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1122.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1123.py b/githubkit/versions/ghec_v2022_11_28/models/group_1123.py index 3fb93b8bc..ce982b47d 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1123.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1123.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1124.py b/githubkit/versions/ghec_v2022_11_28/models/group_1124.py index 0879b43a0..8ca3ac00a 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1124.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1124.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1125.py b/githubkit/versions/ghec_v2022_11_28/models/group_1125.py index ebdb6eebe..4ab91beed 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1125.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1125.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1126.py b/githubkit/versions/ghec_v2022_11_28/models/group_1126.py index 7661bd2c4..a34439e2e 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1126.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1126.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1127.py b/githubkit/versions/ghec_v2022_11_28/models/group_1127.py index eefed104d..2edecc86e 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1127.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1127.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1128.py b/githubkit/versions/ghec_v2022_11_28/models/group_1128.py index 4dc2f1a7e..c040a7a22 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1128.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1128.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1129.py b/githubkit/versions/ghec_v2022_11_28/models/group_1129.py index bcfabc4dd..983710249 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1129.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1129.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1130.py b/githubkit/versions/ghec_v2022_11_28/models/group_1130.py index e7c9ebb48..c70eda7b0 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1130.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1130.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1131.py b/githubkit/versions/ghec_v2022_11_28/models/group_1131.py index f2fd473c7..64fb2be93 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1131.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1131.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1132.py b/githubkit/versions/ghec_v2022_11_28/models/group_1132.py index 4c493b4e4..54c9accbb 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1132.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1132.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1133.py b/githubkit/versions/ghec_v2022_11_28/models/group_1133.py index 3c1828f99..4fbd1ab3f 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1133.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1133.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1134.py b/githubkit/versions/ghec_v2022_11_28/models/group_1134.py index 952437ca6..b48ea50a0 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1134.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1134.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1135.py b/githubkit/versions/ghec_v2022_11_28/models/group_1135.py index 474573f90..7206cc70c 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1135.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1135.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1136.py b/githubkit/versions/ghec_v2022_11_28/models/group_1136.py index cf363104d..c05715bd9 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1136.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1136.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1137.py b/githubkit/versions/ghec_v2022_11_28/models/group_1137.py index 5895b7a86..a1c5168af 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1137.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1137.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1138.py b/githubkit/versions/ghec_v2022_11_28/models/group_1138.py index b5ba97e5f..052083c53 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1138.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1138.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1139.py b/githubkit/versions/ghec_v2022_11_28/models/group_1139.py index 0f5b74ef5..19ce96346 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1139.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1139.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1140.py b/githubkit/versions/ghec_v2022_11_28/models/group_1140.py index 397173976..bc574dd95 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1140.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1140.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1141.py b/githubkit/versions/ghec_v2022_11_28/models/group_1141.py index 542b53be8..eaa87fc99 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1141.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1141.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1142.py b/githubkit/versions/ghec_v2022_11_28/models/group_1142.py index 258a28a52..ff106781d 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1142.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1142.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1143.py b/githubkit/versions/ghec_v2022_11_28/models/group_1143.py index 7efac1703..1fa538765 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1143.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1143.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1144.py b/githubkit/versions/ghec_v2022_11_28/models/group_1144.py index b5642115d..6f77dbb5a 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1144.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1144.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1145.py b/githubkit/versions/ghec_v2022_11_28/models/group_1145.py index 5f71bfa88..0adaf0241 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1145.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1145.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1146.py b/githubkit/versions/ghec_v2022_11_28/models/group_1146.py index d10618415..d5d5a7566 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1146.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1146.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1147.py b/githubkit/versions/ghec_v2022_11_28/models/group_1147.py index 02ca890ec..60600e7a7 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1147.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1147.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1148.py b/githubkit/versions/ghec_v2022_11_28/models/group_1148.py index 63fc52daa..857baf92a 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1148.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1148.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1149.py b/githubkit/versions/ghec_v2022_11_28/models/group_1149.py index 08ff77f23..63a7f87ba 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1149.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1149.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1150.py b/githubkit/versions/ghec_v2022_11_28/models/group_1150.py index 6d287d6ce..5ae4b707e 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1150.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1150.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1151.py b/githubkit/versions/ghec_v2022_11_28/models/group_1151.py index 1307b08cd..862b6ba8f 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1151.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1151.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1152.py b/githubkit/versions/ghec_v2022_11_28/models/group_1152.py index 689f23fad..92b00e20a 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1152.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1152.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1153.py b/githubkit/versions/ghec_v2022_11_28/models/group_1153.py index 2714500b0..f49d56bca 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1153.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1153.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1154.py b/githubkit/versions/ghec_v2022_11_28/models/group_1154.py index 3146142c1..3944a35e1 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1154.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1154.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1155.py b/githubkit/versions/ghec_v2022_11_28/models/group_1155.py index f0d21b185..37c6fbbe2 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1155.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1155.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1156.py b/githubkit/versions/ghec_v2022_11_28/models/group_1156.py index b9df99234..2e3235af7 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1156.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1156.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1157.py b/githubkit/versions/ghec_v2022_11_28/models/group_1157.py index f411a8bca..28639691b 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1157.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1157.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1158.py b/githubkit/versions/ghec_v2022_11_28/models/group_1158.py index fd47ae540..66a160c92 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1158.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1158.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1159.py b/githubkit/versions/ghec_v2022_11_28/models/group_1159.py index a276be095..e2b827b1b 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1159.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1159.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1160.py b/githubkit/versions/ghec_v2022_11_28/models/group_1160.py index 04dd9d32b..c68c08211 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1160.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1160.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1161.py b/githubkit/versions/ghec_v2022_11_28/models/group_1161.py index 981f7922d..140c5808c 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1161.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1161.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1162.py b/githubkit/versions/ghec_v2022_11_28/models/group_1162.py index c8d258e38..59aae89ec 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1162.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1162.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1163.py b/githubkit/versions/ghec_v2022_11_28/models/group_1163.py index 1c67f4ec5..e248ddcbd 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1163.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1163.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1164.py b/githubkit/versions/ghec_v2022_11_28/models/group_1164.py index e460b9eda..8e53926f6 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1164.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1164.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1165.py b/githubkit/versions/ghec_v2022_11_28/models/group_1165.py index 6c3977b48..a7818cc81 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1165.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1165.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1166.py b/githubkit/versions/ghec_v2022_11_28/models/group_1166.py index a64a6ff8c..883fe1eea 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1166.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1166.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1167.py b/githubkit/versions/ghec_v2022_11_28/models/group_1167.py index 29532978a..587281d49 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1167.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1167.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1168.py b/githubkit/versions/ghec_v2022_11_28/models/group_1168.py index 97c4d8a0a..bf89049c1 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1168.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1168.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1169.py b/githubkit/versions/ghec_v2022_11_28/models/group_1169.py index 0056a0e0f..ff25ca816 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1169.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1169.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1170.py b/githubkit/versions/ghec_v2022_11_28/models/group_1170.py index 162a19731..9e0151a61 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1170.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1170.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1171.py b/githubkit/versions/ghec_v2022_11_28/models/group_1171.py index d64134382..8c9998ba6 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1171.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1171.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1172.py b/githubkit/versions/ghec_v2022_11_28/models/group_1172.py index 02f946939..2333d1363 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1172.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1172.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1173.py b/githubkit/versions/ghec_v2022_11_28/models/group_1173.py index adcc71f40..a44a260ff 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1173.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1173.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1174.py b/githubkit/versions/ghec_v2022_11_28/models/group_1174.py index 318b375ee..fae48df36 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1174.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1174.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1175.py b/githubkit/versions/ghec_v2022_11_28/models/group_1175.py index 0679d0b91..a1d80ad44 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1175.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1175.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1176.py b/githubkit/versions/ghec_v2022_11_28/models/group_1176.py index f2bc5a3a8..913551bc8 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1176.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1176.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1177.py b/githubkit/versions/ghec_v2022_11_28/models/group_1177.py index b06cda3ee..8aef0bc43 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1177.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1177.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1178.py b/githubkit/versions/ghec_v2022_11_28/models/group_1178.py index 9017da95e..6162fd16b 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1178.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1178.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1179.py b/githubkit/versions/ghec_v2022_11_28/models/group_1179.py index 717e54f29..90c3c572e 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1179.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1179.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1180.py b/githubkit/versions/ghec_v2022_11_28/models/group_1180.py index 4ade4c58b..b1a5f78f7 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1180.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1180.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1181.py b/githubkit/versions/ghec_v2022_11_28/models/group_1181.py index 3d15c5db3..db0d2249c 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1181.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1181.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1182.py b/githubkit/versions/ghec_v2022_11_28/models/group_1182.py index f7343f929..1a40af131 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1182.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1182.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1183.py b/githubkit/versions/ghec_v2022_11_28/models/group_1183.py index b4d5b6849..a33f8e1b9 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1183.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1183.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1184.py b/githubkit/versions/ghec_v2022_11_28/models/group_1184.py index badec465c..b9b4defa0 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1184.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1184.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1185.py b/githubkit/versions/ghec_v2022_11_28/models/group_1185.py index a8c19bbaa..5d7718128 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1185.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1185.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1186.py b/githubkit/versions/ghec_v2022_11_28/models/group_1186.py index de61bb7f7..445f0ef66 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1186.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1186.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1187.py b/githubkit/versions/ghec_v2022_11_28/models/group_1187.py index 892a8bcbd..059f4fa36 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1187.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1187.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1188.py b/githubkit/versions/ghec_v2022_11_28/models/group_1188.py index 8282f744d..054a6d61b 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1188.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1188.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1189.py b/githubkit/versions/ghec_v2022_11_28/models/group_1189.py index 79e84473e..5edeb55cb 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1189.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1189.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1190.py b/githubkit/versions/ghec_v2022_11_28/models/group_1190.py index 6aa66cf58..bc12e3513 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1190.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1190.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1191.py b/githubkit/versions/ghec_v2022_11_28/models/group_1191.py index 97a0b1a40..574036b59 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1191.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1191.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1192.py b/githubkit/versions/ghec_v2022_11_28/models/group_1192.py index 409a58334..04c6a0578 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1192.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1192.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1193.py b/githubkit/versions/ghec_v2022_11_28/models/group_1193.py index 97dec5a8c..40687cc1f 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1193.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1193.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1194.py b/githubkit/versions/ghec_v2022_11_28/models/group_1194.py index e907dca97..c2aace7bb 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1194.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1194.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1195.py b/githubkit/versions/ghec_v2022_11_28/models/group_1195.py index 8585dee35..f6a483044 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1195.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1195.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1196.py b/githubkit/versions/ghec_v2022_11_28/models/group_1196.py index 843adbac4..50efae3c7 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1196.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1196.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1197.py b/githubkit/versions/ghec_v2022_11_28/models/group_1197.py index 416919275..462d4423d 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1197.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1197.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1198.py b/githubkit/versions/ghec_v2022_11_28/models/group_1198.py index 040a3401a..09cbf54e3 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1198.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1198.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from githubkit.compat import GitHubModel, model_rebuild diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1199.py b/githubkit/versions/ghec_v2022_11_28/models/group_1199.py index ce4d5c3c5..c2167fcac 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1199.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1199.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1200.py b/githubkit/versions/ghec_v2022_11_28/models/group_1200.py index 5946f2b8c..9b771b5c3 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1200.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1200.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1201.py b/githubkit/versions/ghec_v2022_11_28/models/group_1201.py index d51f7e16d..994900d2d 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1201.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1201.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1202.py b/githubkit/versions/ghec_v2022_11_28/models/group_1202.py index 5aec3efe2..e16a36610 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1202.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1202.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1203.py b/githubkit/versions/ghec_v2022_11_28/models/group_1203.py index 8e5eccf2c..e0fe3d9d9 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1203.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1203.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal @@ -77,11 +76,11 @@ class UserReposPostBody(GitHubModel): default=UNSET, description="Whether to delete head branches when pull requests are merged", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) squash_merge_commit_message: Missing[ Literal["PR_BODY", "COMMIT_MESSAGES", "BLANK"] diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1204.py b/githubkit/versions/ghec_v2022_11_28/models/group_1204.py index a37b6683d..3f7092ec4 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1204.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1204.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1205.py b/githubkit/versions/ghec_v2022_11_28/models/group_1205.py index c2ee90055..a8664c5d3 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1205.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1205.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1206.py b/githubkit/versions/ghec_v2022_11_28/models/group_1206.py index 318f33e0e..d882d76f5 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1206.py +++ b/githubkit/versions/ghec_v2022_11_28/models/group_1206.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/ghec_v2022_11_28/rest/actions.py b/githubkit/versions/ghec_v2022_11_28/rest/actions.py index 4c53e9fc3..b1495dcba 100644 --- a/githubkit/versions/ghec_v2022_11_28/rest/actions.py +++ b/githubkit/versions/ghec_v2022_11_28/rest/actions.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref @@ -191,8 +190,7 @@ def set_actions_oidc_custom_issuer_policy_for_enterprise( *, headers: Optional[Dict[str, str]] = None, data: ActionsOidcCustomIssuerPolicyForEnterpriseType, - ) -> Response: - ... + ) -> Response: ... @overload def set_actions_oidc_custom_issuer_policy_for_enterprise( @@ -202,8 +200,7 @@ def set_actions_oidc_custom_issuer_policy_for_enterprise( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, include_enterprise_slug: Missing[bool] = UNSET, - ) -> Response: - ... + ) -> Response: ... def set_actions_oidc_custom_issuer_policy_for_enterprise( self, @@ -242,8 +239,7 @@ async def async_set_actions_oidc_custom_issuer_policy_for_enterprise( *, headers: Optional[Dict[str, str]] = None, data: ActionsOidcCustomIssuerPolicyForEnterpriseType, - ) -> Response: - ... + ) -> Response: ... @overload async def async_set_actions_oidc_custom_issuer_policy_for_enterprise( @@ -253,8 +249,7 @@ async def async_set_actions_oidc_custom_issuer_policy_for_enterprise( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, include_enterprise_slug: Missing[bool] = UNSET, - ) -> Response: - ... + ) -> Response: ... async def async_set_actions_oidc_custom_issuer_policy_for_enterprise( self, @@ -335,8 +330,7 @@ def set_github_actions_default_workflow_permissions_enterprise( *, headers: Optional[Dict[str, str]] = None, data: ActionsSetDefaultWorkflowPermissionsType, - ) -> Response: - ... + ) -> Response: ... @overload def set_github_actions_default_workflow_permissions_enterprise( @@ -347,8 +341,7 @@ def set_github_actions_default_workflow_permissions_enterprise( headers: Optional[Dict[str, str]] = None, default_workflow_permissions: Missing[Literal["read", "write"]] = UNSET, can_approve_pull_request_reviews: Missing[bool] = UNSET, - ) -> Response: - ... + ) -> Response: ... def set_github_actions_default_workflow_permissions_enterprise( self, @@ -387,8 +380,7 @@ async def async_set_github_actions_default_workflow_permissions_enterprise( *, headers: Optional[Dict[str, str]] = None, data: ActionsSetDefaultWorkflowPermissionsType, - ) -> Response: - ... + ) -> Response: ... @overload async def async_set_github_actions_default_workflow_permissions_enterprise( @@ -399,8 +391,7 @@ async def async_set_github_actions_default_workflow_permissions_enterprise( headers: Optional[Dict[str, str]] = None, default_workflow_permissions: Missing[Literal["read", "write"]] = UNSET, can_approve_pull_request_reviews: Missing[bool] = UNSET, - ) -> Response: - ... + ) -> Response: ... async def async_set_github_actions_default_workflow_permissions_enterprise( self, @@ -439,8 +430,9 @@ def generate_runner_jitconfig_for_enterprise( *, headers: Optional[Dict[str, str]] = None, data: EnterprisesEnterpriseActionsRunnersGenerateJitconfigPostBodyType, - ) -> Response[EnterprisesEnterpriseActionsRunnersGenerateJitconfigPostResponse201]: - ... + ) -> Response[ + EnterprisesEnterpriseActionsRunnersGenerateJitconfigPostResponse201 + ]: ... @overload def generate_runner_jitconfig_for_enterprise( @@ -453,8 +445,9 @@ def generate_runner_jitconfig_for_enterprise( runner_group_id: int, labels: List[str], work_folder: Missing[str] = UNSET, - ) -> Response[EnterprisesEnterpriseActionsRunnersGenerateJitconfigPostResponse201]: - ... + ) -> Response[ + EnterprisesEnterpriseActionsRunnersGenerateJitconfigPostResponse201 + ]: ... def generate_runner_jitconfig_for_enterprise( self, @@ -507,8 +500,9 @@ async def async_generate_runner_jitconfig_for_enterprise( *, headers: Optional[Dict[str, str]] = None, data: EnterprisesEnterpriseActionsRunnersGenerateJitconfigPostBodyType, - ) -> Response[EnterprisesEnterpriseActionsRunnersGenerateJitconfigPostResponse201]: - ... + ) -> Response[ + EnterprisesEnterpriseActionsRunnersGenerateJitconfigPostResponse201 + ]: ... @overload async def async_generate_runner_jitconfig_for_enterprise( @@ -521,8 +515,9 @@ async def async_generate_runner_jitconfig_for_enterprise( runner_group_id: int, labels: List[str], work_folder: Missing[str] = UNSET, - ) -> Response[EnterprisesEnterpriseActionsRunnersGenerateJitconfigPostResponse201]: - ... + ) -> Response[ + EnterprisesEnterpriseActionsRunnersGenerateJitconfigPostResponse201 + ]: ... async def async_generate_runner_jitconfig_for_enterprise( self, @@ -717,8 +712,7 @@ def set_github_actions_permissions_organization( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgActionsPermissionsPutBodyType, - ) -> Response: - ... + ) -> Response: ... @overload def set_github_actions_permissions_organization( @@ -729,8 +723,7 @@ def set_github_actions_permissions_organization( headers: Optional[Dict[str, str]] = None, enabled_repositories: Literal["all", "none", "selected"], allowed_actions: Missing[Literal["all", "local_only", "selected"]] = UNSET, - ) -> Response: - ... + ) -> Response: ... def set_github_actions_permissions_organization( self, @@ -769,8 +762,7 @@ async def async_set_github_actions_permissions_organization( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgActionsPermissionsPutBodyType, - ) -> Response: - ... + ) -> Response: ... @overload async def async_set_github_actions_permissions_organization( @@ -781,8 +773,7 @@ async def async_set_github_actions_permissions_organization( headers: Optional[Dict[str, str]] = None, enabled_repositories: Literal["all", "none", "selected"], allowed_actions: Missing[Literal["all", "local_only", "selected"]] = UNSET, - ) -> Response: - ... + ) -> Response: ... async def async_set_github_actions_permissions_organization( self, @@ -879,8 +870,7 @@ def set_selected_repositories_enabled_github_actions_organization( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgActionsPermissionsRepositoriesPutBodyType, - ) -> Response: - ... + ) -> Response: ... @overload def set_selected_repositories_enabled_github_actions_organization( @@ -890,8 +880,7 @@ def set_selected_repositories_enabled_github_actions_organization( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, selected_repository_ids: List[int], - ) -> Response: - ... + ) -> Response: ... def set_selected_repositories_enabled_github_actions_organization( self, @@ -930,8 +919,7 @@ async def async_set_selected_repositories_enabled_github_actions_organization( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgActionsPermissionsRepositoriesPutBodyType, - ) -> Response: - ... + ) -> Response: ... @overload async def async_set_selected_repositories_enabled_github_actions_organization( @@ -941,8 +929,7 @@ async def async_set_selected_repositories_enabled_github_actions_organization( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, selected_repository_ids: List[int], - ) -> Response: - ... + ) -> Response: ... async def async_set_selected_repositories_enabled_github_actions_organization( self, @@ -1099,8 +1086,7 @@ def set_allowed_actions_organization( *, headers: Optional[Dict[str, str]] = None, data: Missing[SelectedActionsType] = UNSET, - ) -> Response: - ... + ) -> Response: ... @overload def set_allowed_actions_organization( @@ -1112,8 +1098,7 @@ def set_allowed_actions_organization( github_owned_allowed: Missing[bool] = UNSET, verified_allowed: Missing[bool] = UNSET, patterns_allowed: Missing[List[str]] = UNSET, - ) -> Response: - ... + ) -> Response: ... def set_allowed_actions_organization( self, @@ -1152,8 +1137,7 @@ async def async_set_allowed_actions_organization( *, headers: Optional[Dict[str, str]] = None, data: Missing[SelectedActionsType] = UNSET, - ) -> Response: - ... + ) -> Response: ... @overload async def async_set_allowed_actions_organization( @@ -1165,8 +1149,7 @@ async def async_set_allowed_actions_organization( github_owned_allowed: Missing[bool] = UNSET, verified_allowed: Missing[bool] = UNSET, patterns_allowed: Missing[List[str]] = UNSET, - ) -> Response: - ... + ) -> Response: ... async def async_set_allowed_actions_organization( self, @@ -1247,8 +1230,7 @@ def set_github_actions_default_workflow_permissions_organization( *, headers: Optional[Dict[str, str]] = None, data: Missing[ActionsSetDefaultWorkflowPermissionsType] = UNSET, - ) -> Response: - ... + ) -> Response: ... @overload def set_github_actions_default_workflow_permissions_organization( @@ -1259,8 +1241,7 @@ def set_github_actions_default_workflow_permissions_organization( headers: Optional[Dict[str, str]] = None, default_workflow_permissions: Missing[Literal["read", "write"]] = UNSET, can_approve_pull_request_reviews: Missing[bool] = UNSET, - ) -> Response: - ... + ) -> Response: ... def set_github_actions_default_workflow_permissions_organization( self, @@ -1300,8 +1281,7 @@ async def async_set_github_actions_default_workflow_permissions_organization( *, headers: Optional[Dict[str, str]] = None, data: Missing[ActionsSetDefaultWorkflowPermissionsType] = UNSET, - ) -> Response: - ... + ) -> Response: ... @overload async def async_set_github_actions_default_workflow_permissions_organization( @@ -1312,8 +1292,7 @@ async def async_set_github_actions_default_workflow_permissions_organization( headers: Optional[Dict[str, str]] = None, default_workflow_permissions: Missing[Literal["read", "write"]] = UNSET, can_approve_pull_request_reviews: Missing[bool] = UNSET, - ) -> Response: - ... + ) -> Response: ... async def async_set_github_actions_default_workflow_permissions_organization( self, @@ -1415,8 +1394,7 @@ def create_self_hosted_runner_group_for_org( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgActionsRunnerGroupsPostBodyType, - ) -> Response[RunnerGroupsOrg]: - ... + ) -> Response[RunnerGroupsOrg]: ... @overload def create_self_hosted_runner_group_for_org( @@ -1432,8 +1410,7 @@ def create_self_hosted_runner_group_for_org( allows_public_repositories: Missing[bool] = UNSET, restricted_to_workflows: Missing[bool] = UNSET, selected_workflows: Missing[List[str]] = UNSET, - ) -> Response[RunnerGroupsOrg]: - ... + ) -> Response[RunnerGroupsOrg]: ... def create_self_hosted_runner_group_for_org( self, @@ -1473,8 +1450,7 @@ async def async_create_self_hosted_runner_group_for_org( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgActionsRunnerGroupsPostBodyType, - ) -> Response[RunnerGroupsOrg]: - ... + ) -> Response[RunnerGroupsOrg]: ... @overload async def async_create_self_hosted_runner_group_for_org( @@ -1490,8 +1466,7 @@ async def async_create_self_hosted_runner_group_for_org( allows_public_repositories: Missing[bool] = UNSET, restricted_to_workflows: Missing[bool] = UNSET, selected_workflows: Missing[List[str]] = UNSET, - ) -> Response[RunnerGroupsOrg]: - ... + ) -> Response[RunnerGroupsOrg]: ... async def async_create_self_hosted_runner_group_for_org( self, @@ -1614,8 +1589,7 @@ def update_self_hosted_runner_group_for_org( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgActionsRunnerGroupsRunnerGroupIdPatchBodyType, - ) -> Response[RunnerGroupsOrg]: - ... + ) -> Response[RunnerGroupsOrg]: ... @overload def update_self_hosted_runner_group_for_org( @@ -1630,8 +1604,7 @@ def update_self_hosted_runner_group_for_org( allows_public_repositories: Missing[bool] = UNSET, restricted_to_workflows: Missing[bool] = UNSET, selected_workflows: Missing[List[str]] = UNSET, - ) -> Response[RunnerGroupsOrg]: - ... + ) -> Response[RunnerGroupsOrg]: ... def update_self_hosted_runner_group_for_org( self, @@ -1678,8 +1651,7 @@ async def async_update_self_hosted_runner_group_for_org( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgActionsRunnerGroupsRunnerGroupIdPatchBodyType, - ) -> Response[RunnerGroupsOrg]: - ... + ) -> Response[RunnerGroupsOrg]: ... @overload async def async_update_self_hosted_runner_group_for_org( @@ -1694,8 +1666,7 @@ async def async_update_self_hosted_runner_group_for_org( allows_public_repositories: Missing[bool] = UNSET, restricted_to_workflows: Missing[bool] = UNSET, selected_workflows: Missing[List[str]] = UNSET, - ) -> Response[RunnerGroupsOrg]: - ... + ) -> Response[RunnerGroupsOrg]: ... async def async_update_self_hosted_runner_group_for_org( self, @@ -1806,8 +1777,7 @@ def set_repo_access_to_self_hosted_runner_group_in_org( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgActionsRunnerGroupsRunnerGroupIdRepositoriesPutBodyType, - ) -> Response: - ... + ) -> Response: ... @overload def set_repo_access_to_self_hosted_runner_group_in_org( @@ -1818,8 +1788,7 @@ def set_repo_access_to_self_hosted_runner_group_in_org( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, selected_repository_ids: List[int], - ) -> Response: - ... + ) -> Response: ... def set_repo_access_to_self_hosted_runner_group_in_org( self, @@ -1864,8 +1833,7 @@ async def async_set_repo_access_to_self_hosted_runner_group_in_org( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgActionsRunnerGroupsRunnerGroupIdRepositoriesPutBodyType, - ) -> Response: - ... + ) -> Response: ... @overload async def async_set_repo_access_to_self_hosted_runner_group_in_org( @@ -1876,8 +1844,7 @@ async def async_set_repo_access_to_self_hosted_runner_group_in_org( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, selected_repository_ids: List[int], - ) -> Response: - ... + ) -> Response: ... async def async_set_repo_access_to_self_hosted_runner_group_in_org( self, @@ -2066,8 +2033,7 @@ def set_self_hosted_runners_in_group_for_org( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgActionsRunnerGroupsRunnerGroupIdRunnersPutBodyType, - ) -> Response: - ... + ) -> Response: ... @overload def set_self_hosted_runners_in_group_for_org( @@ -2078,8 +2044,7 @@ def set_self_hosted_runners_in_group_for_org( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, runners: List[int], - ) -> Response: - ... + ) -> Response: ... def set_self_hosted_runners_in_group_for_org( self, @@ -2124,8 +2089,7 @@ async def async_set_self_hosted_runners_in_group_for_org( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgActionsRunnerGroupsRunnerGroupIdRunnersPutBodyType, - ) -> Response: - ... + ) -> Response: ... @overload async def async_set_self_hosted_runners_in_group_for_org( @@ -2136,8 +2100,7 @@ async def async_set_self_hosted_runners_in_group_for_org( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, runners: List[int], - ) -> Response: - ... + ) -> Response: ... async def async_set_self_hosted_runners_in_group_for_org( self, @@ -2369,8 +2332,9 @@ def generate_runner_jitconfig_for_org( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgActionsRunnersGenerateJitconfigPostBodyType, - ) -> Response[EnterprisesEnterpriseActionsRunnersGenerateJitconfigPostResponse201]: - ... + ) -> Response[ + EnterprisesEnterpriseActionsRunnersGenerateJitconfigPostResponse201 + ]: ... @overload def generate_runner_jitconfig_for_org( @@ -2383,8 +2347,9 @@ def generate_runner_jitconfig_for_org( runner_group_id: int, labels: List[str], work_folder: Missing[str] = UNSET, - ) -> Response[EnterprisesEnterpriseActionsRunnersGenerateJitconfigPostResponse201]: - ... + ) -> Response[ + EnterprisesEnterpriseActionsRunnersGenerateJitconfigPostResponse201 + ]: ... def generate_runner_jitconfig_for_org( self, @@ -2435,8 +2400,9 @@ async def async_generate_runner_jitconfig_for_org( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgActionsRunnersGenerateJitconfigPostBodyType, - ) -> Response[EnterprisesEnterpriseActionsRunnersGenerateJitconfigPostResponse201]: - ... + ) -> Response[ + EnterprisesEnterpriseActionsRunnersGenerateJitconfigPostResponse201 + ]: ... @overload async def async_generate_runner_jitconfig_for_org( @@ -2449,8 +2415,9 @@ async def async_generate_runner_jitconfig_for_org( runner_group_id: int, labels: List[str], work_folder: Missing[str] = UNSET, - ) -> Response[EnterprisesEnterpriseActionsRunnersGenerateJitconfigPostResponse201]: - ... + ) -> Response[ + EnterprisesEnterpriseActionsRunnersGenerateJitconfigPostResponse201 + ]: ... async def async_generate_runner_jitconfig_for_org( self, @@ -2724,8 +2691,7 @@ def set_custom_labels_for_self_hosted_runner_for_org( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgActionsRunnersRunnerIdLabelsPutBodyType, - ) -> Response[EnterprisesEnterpriseActionsRunnersRunnerIdLabelsGetResponse200]: - ... + ) -> Response[EnterprisesEnterpriseActionsRunnersRunnerIdLabelsGetResponse200]: ... @overload def set_custom_labels_for_self_hosted_runner_for_org( @@ -2736,8 +2702,7 @@ def set_custom_labels_for_self_hosted_runner_for_org( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, labels: List[str], - ) -> Response[EnterprisesEnterpriseActionsRunnersRunnerIdLabelsGetResponse200]: - ... + ) -> Response[EnterprisesEnterpriseActionsRunnersRunnerIdLabelsGetResponse200]: ... def set_custom_labels_for_self_hosted_runner_for_org( self, @@ -2788,8 +2753,7 @@ async def async_set_custom_labels_for_self_hosted_runner_for_org( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgActionsRunnersRunnerIdLabelsPutBodyType, - ) -> Response[EnterprisesEnterpriseActionsRunnersRunnerIdLabelsGetResponse200]: - ... + ) -> Response[EnterprisesEnterpriseActionsRunnersRunnerIdLabelsGetResponse200]: ... @overload async def async_set_custom_labels_for_self_hosted_runner_for_org( @@ -2800,8 +2764,7 @@ async def async_set_custom_labels_for_self_hosted_runner_for_org( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, labels: List[str], - ) -> Response[EnterprisesEnterpriseActionsRunnersRunnerIdLabelsGetResponse200]: - ... + ) -> Response[EnterprisesEnterpriseActionsRunnersRunnerIdLabelsGetResponse200]: ... async def async_set_custom_labels_for_self_hosted_runner_for_org( self, @@ -2852,8 +2815,7 @@ def add_custom_labels_to_self_hosted_runner_for_org( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgActionsRunnersRunnerIdLabelsPostBodyType, - ) -> Response[EnterprisesEnterpriseActionsRunnersRunnerIdLabelsGetResponse200]: - ... + ) -> Response[EnterprisesEnterpriseActionsRunnersRunnerIdLabelsGetResponse200]: ... @overload def add_custom_labels_to_self_hosted_runner_for_org( @@ -2864,8 +2826,7 @@ def add_custom_labels_to_self_hosted_runner_for_org( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, labels: List[str], - ) -> Response[EnterprisesEnterpriseActionsRunnersRunnerIdLabelsGetResponse200]: - ... + ) -> Response[EnterprisesEnterpriseActionsRunnersRunnerIdLabelsGetResponse200]: ... def add_custom_labels_to_self_hosted_runner_for_org( self, @@ -2916,8 +2877,7 @@ async def async_add_custom_labels_to_self_hosted_runner_for_org( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgActionsRunnersRunnerIdLabelsPostBodyType, - ) -> Response[EnterprisesEnterpriseActionsRunnersRunnerIdLabelsGetResponse200]: - ... + ) -> Response[EnterprisesEnterpriseActionsRunnersRunnerIdLabelsGetResponse200]: ... @overload async def async_add_custom_labels_to_self_hosted_runner_for_org( @@ -2928,8 +2888,7 @@ async def async_add_custom_labels_to_self_hosted_runner_for_org( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, labels: List[str], - ) -> Response[EnterprisesEnterpriseActionsRunnersRunnerIdLabelsGetResponse200]: - ... + ) -> Response[EnterprisesEnterpriseActionsRunnersRunnerIdLabelsGetResponse200]: ... async def async_add_custom_labels_to_self_hosted_runner_for_org( self, @@ -3242,8 +3201,7 @@ def create_or_update_org_secret( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgActionsSecretsSecretNamePutBodyType, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... @overload def create_or_update_org_secret( @@ -3257,8 +3215,7 @@ def create_or_update_org_secret( key_id: Missing[str] = UNSET, visibility: Literal["all", "private", "selected"], selected_repository_ids: Missing[List[int]] = UNSET, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... def create_or_update_org_secret( self, @@ -3300,8 +3257,7 @@ async def async_create_or_update_org_secret( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgActionsSecretsSecretNamePutBodyType, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... @overload async def async_create_or_update_org_secret( @@ -3315,8 +3271,7 @@ async def async_create_or_update_org_secret( key_id: Missing[str] = UNSET, visibility: Literal["all", "private", "selected"], selected_repository_ids: Missing[List[int]] = UNSET, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... async def async_create_or_update_org_secret( self, @@ -3456,8 +3411,7 @@ def set_selected_repos_for_org_secret( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgActionsSecretsSecretNameRepositoriesPutBodyType, - ) -> Response: - ... + ) -> Response: ... @overload def set_selected_repos_for_org_secret( @@ -3468,8 +3422,7 @@ def set_selected_repos_for_org_secret( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, selected_repository_ids: List[int], - ) -> Response: - ... + ) -> Response: ... def set_selected_repos_for_org_secret( self, @@ -3512,8 +3465,7 @@ async def async_set_selected_repos_for_org_secret( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgActionsSecretsSecretNameRepositoriesPutBodyType, - ) -> Response: - ... + ) -> Response: ... @overload async def async_set_selected_repos_for_org_secret( @@ -3524,8 +3476,7 @@ async def async_set_selected_repos_for_org_secret( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, selected_repository_ids: List[int], - ) -> Response: - ... + ) -> Response: ... async def async_set_selected_repos_for_org_secret( self, @@ -3709,8 +3660,7 @@ def create_org_variable( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgActionsVariablesPostBodyType, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... @overload def create_org_variable( @@ -3723,8 +3673,7 @@ def create_org_variable( value: str, visibility: Literal["all", "private", "selected"], selected_repository_ids: Missing[List[int]] = UNSET, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... def create_org_variable( self, @@ -3764,8 +3713,7 @@ async def async_create_org_variable( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgActionsVariablesPostBodyType, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... @overload async def async_create_org_variable( @@ -3778,8 +3726,7 @@ async def async_create_org_variable( value: str, visibility: Literal["all", "private", "selected"], selected_repository_ids: Missing[List[int]] = UNSET, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... async def async_create_org_variable( self, @@ -3902,8 +3849,7 @@ def update_org_variable( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgActionsVariablesNamePatchBodyType, - ) -> Response: - ... + ) -> Response: ... @overload def update_org_variable( @@ -3916,8 +3862,7 @@ def update_org_variable( value: Missing[str] = UNSET, visibility: Missing[Literal["all", "private", "selected"]] = UNSET, selected_repository_ids: Missing[List[int]] = UNSET, - ) -> Response: - ... + ) -> Response: ... def update_org_variable( self, @@ -3958,8 +3903,7 @@ async def async_update_org_variable( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgActionsVariablesNamePatchBodyType, - ) -> Response: - ... + ) -> Response: ... @overload async def async_update_org_variable( @@ -3972,8 +3916,7 @@ async def async_update_org_variable( value: Missing[str] = UNSET, visibility: Missing[Literal["all", "private", "selected"]] = UNSET, selected_repository_ids: Missing[List[int]] = UNSET, - ) -> Response: - ... + ) -> Response: ... async def async_update_org_variable( self, @@ -4076,8 +4019,7 @@ def set_selected_repos_for_org_variable( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgActionsVariablesNameRepositoriesPutBodyType, - ) -> Response: - ... + ) -> Response: ... @overload def set_selected_repos_for_org_variable( @@ -4088,8 +4030,7 @@ def set_selected_repos_for_org_variable( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, selected_repository_ids: List[int], - ) -> Response: - ... + ) -> Response: ... def set_selected_repos_for_org_variable( self, @@ -4133,8 +4074,7 @@ async def async_set_selected_repos_for_org_variable( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgActionsVariablesNameRepositoriesPutBodyType, - ) -> Response: - ... + ) -> Response: ... @overload async def async_set_selected_repos_for_org_variable( @@ -4145,8 +4085,7 @@ async def async_set_selected_repos_for_org_variable( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, selected_repository_ids: List[int], - ) -> Response: - ... + ) -> Response: ... async def async_set_selected_repos_for_org_variable( self, @@ -4789,8 +4728,7 @@ def re_run_job_for_workflow_run( data: Missing[ Union[ReposOwnerRepoActionsJobsJobIdRerunPostBodyType, None] ] = UNSET, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... @overload def re_run_job_for_workflow_run( @@ -4802,8 +4740,7 @@ def re_run_job_for_workflow_run( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, enable_debug_logging: Missing[bool] = UNSET, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... def re_run_job_for_workflow_run( self, @@ -4862,8 +4799,7 @@ async def async_re_run_job_for_workflow_run( data: Missing[ Union[ReposOwnerRepoActionsJobsJobIdRerunPostBodyType, None] ] = UNSET, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... @overload async def async_re_run_job_for_workflow_run( @@ -4875,8 +4811,7 @@ async def async_re_run_job_for_workflow_run( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, enable_debug_logging: Missing[bool] = UNSET, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... async def async_re_run_job_for_workflow_run( self, @@ -4984,8 +4919,7 @@ def set_custom_oidc_sub_claim_for_repo( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoActionsOidcCustomizationSubPutBodyType, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... @overload def set_custom_oidc_sub_claim_for_repo( @@ -4997,8 +4931,7 @@ def set_custom_oidc_sub_claim_for_repo( headers: Optional[Dict[str, str]] = None, use_default: bool, include_claim_keys: Missing[List[str]] = UNSET, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... def set_custom_oidc_sub_claim_for_repo( self, @@ -5052,8 +4985,7 @@ async def async_set_custom_oidc_sub_claim_for_repo( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoActionsOidcCustomizationSubPutBodyType, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... @overload async def async_set_custom_oidc_sub_claim_for_repo( @@ -5065,8 +4997,7 @@ async def async_set_custom_oidc_sub_claim_for_repo( headers: Optional[Dict[str, str]] = None, use_default: bool, include_claim_keys: Missing[List[str]] = UNSET, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... async def async_set_custom_oidc_sub_claim_for_repo( self, @@ -5284,8 +5215,7 @@ def set_github_actions_permissions_repository( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoActionsPermissionsPutBodyType, - ) -> Response: - ... + ) -> Response: ... @overload def set_github_actions_permissions_repository( @@ -5297,8 +5227,7 @@ def set_github_actions_permissions_repository( headers: Optional[Dict[str, str]] = None, enabled: bool, allowed_actions: Missing[Literal["all", "local_only", "selected"]] = UNSET, - ) -> Response: - ... + ) -> Response: ... def set_github_actions_permissions_repository( self, @@ -5339,8 +5268,7 @@ async def async_set_github_actions_permissions_repository( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoActionsPermissionsPutBodyType, - ) -> Response: - ... + ) -> Response: ... @overload async def async_set_github_actions_permissions_repository( @@ -5352,8 +5280,7 @@ async def async_set_github_actions_permissions_repository( headers: Optional[Dict[str, str]] = None, enabled: bool, allowed_actions: Missing[Literal["all", "local_only", "selected"]] = UNSET, - ) -> Response: - ... + ) -> Response: ... async def async_set_github_actions_permissions_repository( self, @@ -5438,8 +5365,7 @@ def set_workflow_access_to_repository( *, headers: Optional[Dict[str, str]] = None, data: ActionsWorkflowAccessToRepositoryType, - ) -> Response: - ... + ) -> Response: ... @overload def set_workflow_access_to_repository( @@ -5450,8 +5376,7 @@ def set_workflow_access_to_repository( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, access_level: Literal["none", "user", "organization", "enterprise"], - ) -> Response: - ... + ) -> Response: ... def set_workflow_access_to_repository( self, @@ -5492,8 +5417,7 @@ async def async_set_workflow_access_to_repository( *, headers: Optional[Dict[str, str]] = None, data: ActionsWorkflowAccessToRepositoryType, - ) -> Response: - ... + ) -> Response: ... @overload async def async_set_workflow_access_to_repository( @@ -5504,8 +5428,7 @@ async def async_set_workflow_access_to_repository( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, access_level: Literal["none", "user", "organization", "enterprise"], - ) -> Response: - ... + ) -> Response: ... async def async_set_workflow_access_to_repository( self, @@ -5590,8 +5513,7 @@ def set_allowed_actions_repository( *, headers: Optional[Dict[str, str]] = None, data: Missing[SelectedActionsType] = UNSET, - ) -> Response: - ... + ) -> Response: ... @overload def set_allowed_actions_repository( @@ -5604,8 +5526,7 @@ def set_allowed_actions_repository( github_owned_allowed: Missing[bool] = UNSET, verified_allowed: Missing[bool] = UNSET, patterns_allowed: Missing[List[str]] = UNSET, - ) -> Response: - ... + ) -> Response: ... def set_allowed_actions_repository( self, @@ -5646,8 +5567,7 @@ async def async_set_allowed_actions_repository( *, headers: Optional[Dict[str, str]] = None, data: Missing[SelectedActionsType] = UNSET, - ) -> Response: - ... + ) -> Response: ... @overload async def async_set_allowed_actions_repository( @@ -5660,8 +5580,7 @@ async def async_set_allowed_actions_repository( github_owned_allowed: Missing[bool] = UNSET, verified_allowed: Missing[bool] = UNSET, patterns_allowed: Missing[List[str]] = UNSET, - ) -> Response: - ... + ) -> Response: ... async def async_set_allowed_actions_repository( self, @@ -5746,8 +5665,7 @@ def set_github_actions_default_workflow_permissions_repository( *, headers: Optional[Dict[str, str]] = None, data: ActionsSetDefaultWorkflowPermissionsType, - ) -> Response: - ... + ) -> Response: ... @overload def set_github_actions_default_workflow_permissions_repository( @@ -5759,8 +5677,7 @@ def set_github_actions_default_workflow_permissions_repository( headers: Optional[Dict[str, str]] = None, default_workflow_permissions: Missing[Literal["read", "write"]] = UNSET, can_approve_pull_request_reviews: Missing[bool] = UNSET, - ) -> Response: - ... + ) -> Response: ... def set_github_actions_default_workflow_permissions_repository( self, @@ -5802,8 +5719,7 @@ async def async_set_github_actions_default_workflow_permissions_repository( *, headers: Optional[Dict[str, str]] = None, data: ActionsSetDefaultWorkflowPermissionsType, - ) -> Response: - ... + ) -> Response: ... @overload async def async_set_github_actions_default_workflow_permissions_repository( @@ -5815,8 +5731,7 @@ async def async_set_github_actions_default_workflow_permissions_repository( headers: Optional[Dict[str, str]] = None, default_workflow_permissions: Missing[Literal["read", "write"]] = UNSET, can_approve_pull_request_reviews: Missing[bool] = UNSET, - ) -> Response: - ... + ) -> Response: ... async def async_set_github_actions_default_workflow_permissions_repository( self, @@ -5970,8 +5885,9 @@ def generate_runner_jitconfig_for_repo( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoActionsRunnersGenerateJitconfigPostBodyType, - ) -> Response[EnterprisesEnterpriseActionsRunnersGenerateJitconfigPostResponse201]: - ... + ) -> Response[ + EnterprisesEnterpriseActionsRunnersGenerateJitconfigPostResponse201 + ]: ... @overload def generate_runner_jitconfig_for_repo( @@ -5985,8 +5901,9 @@ def generate_runner_jitconfig_for_repo( runner_group_id: int, labels: List[str], work_folder: Missing[str] = UNSET, - ) -> Response[EnterprisesEnterpriseActionsRunnersGenerateJitconfigPostResponse201]: - ... + ) -> Response[ + EnterprisesEnterpriseActionsRunnersGenerateJitconfigPostResponse201 + ]: ... def generate_runner_jitconfig_for_repo( self, @@ -6041,8 +5958,9 @@ async def async_generate_runner_jitconfig_for_repo( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoActionsRunnersGenerateJitconfigPostBodyType, - ) -> Response[EnterprisesEnterpriseActionsRunnersGenerateJitconfigPostResponse201]: - ... + ) -> Response[ + EnterprisesEnterpriseActionsRunnersGenerateJitconfigPostResponse201 + ]: ... @overload async def async_generate_runner_jitconfig_for_repo( @@ -6056,8 +5974,9 @@ async def async_generate_runner_jitconfig_for_repo( runner_group_id: int, labels: List[str], work_folder: Missing[str] = UNSET, - ) -> Response[EnterprisesEnterpriseActionsRunnersGenerateJitconfigPostResponse201]: - ... + ) -> Response[ + EnterprisesEnterpriseActionsRunnersGenerateJitconfigPostResponse201 + ]: ... async def async_generate_runner_jitconfig_for_repo( self, @@ -6345,8 +6264,7 @@ def set_custom_labels_for_self_hosted_runner_for_repo( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoActionsRunnersRunnerIdLabelsPutBodyType, - ) -> Response[EnterprisesEnterpriseActionsRunnersRunnerIdLabelsGetResponse200]: - ... + ) -> Response[EnterprisesEnterpriseActionsRunnersRunnerIdLabelsGetResponse200]: ... @overload def set_custom_labels_for_self_hosted_runner_for_repo( @@ -6358,8 +6276,7 @@ def set_custom_labels_for_self_hosted_runner_for_repo( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, labels: List[str], - ) -> Response[EnterprisesEnterpriseActionsRunnersRunnerIdLabelsGetResponse200]: - ... + ) -> Response[EnterprisesEnterpriseActionsRunnersRunnerIdLabelsGetResponse200]: ... def set_custom_labels_for_self_hosted_runner_for_repo( self, @@ -6414,8 +6331,7 @@ async def async_set_custom_labels_for_self_hosted_runner_for_repo( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoActionsRunnersRunnerIdLabelsPutBodyType, - ) -> Response[EnterprisesEnterpriseActionsRunnersRunnerIdLabelsGetResponse200]: - ... + ) -> Response[EnterprisesEnterpriseActionsRunnersRunnerIdLabelsGetResponse200]: ... @overload async def async_set_custom_labels_for_self_hosted_runner_for_repo( @@ -6427,8 +6343,7 @@ async def async_set_custom_labels_for_self_hosted_runner_for_repo( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, labels: List[str], - ) -> Response[EnterprisesEnterpriseActionsRunnersRunnerIdLabelsGetResponse200]: - ... + ) -> Response[EnterprisesEnterpriseActionsRunnersRunnerIdLabelsGetResponse200]: ... async def async_set_custom_labels_for_self_hosted_runner_for_repo( self, @@ -6483,8 +6398,7 @@ def add_custom_labels_to_self_hosted_runner_for_repo( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoActionsRunnersRunnerIdLabelsPostBodyType, - ) -> Response[EnterprisesEnterpriseActionsRunnersRunnerIdLabelsGetResponse200]: - ... + ) -> Response[EnterprisesEnterpriseActionsRunnersRunnerIdLabelsGetResponse200]: ... @overload def add_custom_labels_to_self_hosted_runner_for_repo( @@ -6496,8 +6410,7 @@ def add_custom_labels_to_self_hosted_runner_for_repo( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, labels: List[str], - ) -> Response[EnterprisesEnterpriseActionsRunnersRunnerIdLabelsGetResponse200]: - ... + ) -> Response[EnterprisesEnterpriseActionsRunnersRunnerIdLabelsGetResponse200]: ... def add_custom_labels_to_self_hosted_runner_for_repo( self, @@ -6552,8 +6465,7 @@ async def async_add_custom_labels_to_self_hosted_runner_for_repo( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoActionsRunnersRunnerIdLabelsPostBodyType, - ) -> Response[EnterprisesEnterpriseActionsRunnersRunnerIdLabelsGetResponse200]: - ... + ) -> Response[EnterprisesEnterpriseActionsRunnersRunnerIdLabelsGetResponse200]: ... @overload async def async_add_custom_labels_to_self_hosted_runner_for_repo( @@ -6565,8 +6477,7 @@ async def async_add_custom_labels_to_self_hosted_runner_for_repo( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, labels: List[str], - ) -> Response[EnterprisesEnterpriseActionsRunnersRunnerIdLabelsGetResponse200]: - ... + ) -> Response[EnterprisesEnterpriseActionsRunnersRunnerIdLabelsGetResponse200]: ... async def async_add_custom_labels_to_self_hosted_runner_for_repo( self, @@ -7373,8 +7284,7 @@ def review_custom_gates_for_run( data: Union[ ReviewCustomGatesCommentRequiredType, ReviewCustomGatesStateRequiredType ], - ) -> Response: - ... + ) -> Response: ... @overload def review_custom_gates_for_run( @@ -7387,8 +7297,7 @@ def review_custom_gates_for_run( headers: Optional[Dict[str, str]] = None, environment_name: str, comment: str, - ) -> Response: - ... + ) -> Response: ... @overload def review_custom_gates_for_run( @@ -7402,8 +7311,7 @@ def review_custom_gates_for_run( environment_name: str, state: Literal["approved", "rejected"], comment: Missing[str] = UNSET, - ) -> Response: - ... + ) -> Response: ... def review_custom_gates_for_run( self, @@ -7460,8 +7368,7 @@ async def async_review_custom_gates_for_run( data: Union[ ReviewCustomGatesCommentRequiredType, ReviewCustomGatesStateRequiredType ], - ) -> Response: - ... + ) -> Response: ... @overload async def async_review_custom_gates_for_run( @@ -7474,8 +7381,7 @@ async def async_review_custom_gates_for_run( headers: Optional[Dict[str, str]] = None, environment_name: str, comment: str, - ) -> Response: - ... + ) -> Response: ... @overload async def async_review_custom_gates_for_run( @@ -7489,8 +7395,7 @@ async def async_review_custom_gates_for_run( environment_name: str, state: Literal["approved", "rejected"], comment: Missing[str] = UNSET, - ) -> Response: - ... + ) -> Response: ... async def async_review_custom_gates_for_run( self, @@ -7805,8 +7710,7 @@ def review_pending_deployments_for_run( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoActionsRunsRunIdPendingDeploymentsPostBodyType, - ) -> Response[List[Deployment]]: - ... + ) -> Response[List[Deployment]]: ... @overload def review_pending_deployments_for_run( @@ -7820,8 +7724,7 @@ def review_pending_deployments_for_run( environment_ids: List[int], state: Literal["approved", "rejected"], comment: str, - ) -> Response[List[Deployment]]: - ... + ) -> Response[List[Deployment]]: ... def review_pending_deployments_for_run( self, @@ -7874,8 +7777,7 @@ async def async_review_pending_deployments_for_run( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoActionsRunsRunIdPendingDeploymentsPostBodyType, - ) -> Response[List[Deployment]]: - ... + ) -> Response[List[Deployment]]: ... @overload async def async_review_pending_deployments_for_run( @@ -7889,8 +7791,7 @@ async def async_review_pending_deployments_for_run( environment_ids: List[int], state: Literal["approved", "rejected"], comment: str, - ) -> Response[List[Deployment]]: - ... + ) -> Response[List[Deployment]]: ... async def async_review_pending_deployments_for_run( self, @@ -7945,8 +7846,7 @@ def re_run_workflow( data: Missing[ Union[ReposOwnerRepoActionsRunsRunIdRerunPostBodyType, None] ] = UNSET, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... @overload def re_run_workflow( @@ -7958,8 +7858,7 @@ def re_run_workflow( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, enable_debug_logging: Missing[bool] = UNSET, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... def re_run_workflow( self, @@ -8011,8 +7910,7 @@ async def async_re_run_workflow( data: Missing[ Union[ReposOwnerRepoActionsRunsRunIdRerunPostBodyType, None] ] = UNSET, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... @overload async def async_re_run_workflow( @@ -8024,8 +7922,7 @@ async def async_re_run_workflow( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, enable_debug_logging: Missing[bool] = UNSET, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... async def async_re_run_workflow( self, @@ -8077,8 +7974,7 @@ def re_run_workflow_failed_jobs( data: Missing[ Union[ReposOwnerRepoActionsRunsRunIdRerunFailedJobsPostBodyType, None] ] = UNSET, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... @overload def re_run_workflow_failed_jobs( @@ -8090,8 +7986,7 @@ def re_run_workflow_failed_jobs( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, enable_debug_logging: Missing[bool] = UNSET, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... def re_run_workflow_failed_jobs( self, @@ -8146,8 +8041,7 @@ async def async_re_run_workflow_failed_jobs( data: Missing[ Union[ReposOwnerRepoActionsRunsRunIdRerunFailedJobsPostBodyType, None] ] = UNSET, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... @overload async def async_re_run_workflow_failed_jobs( @@ -8159,8 +8053,7 @@ async def async_re_run_workflow_failed_jobs( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, enable_debug_logging: Missing[bool] = UNSET, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... async def async_re_run_workflow_failed_jobs( self, @@ -8409,8 +8302,7 @@ def create_or_update_repo_secret( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoActionsSecretsSecretNamePutBodyType, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... @overload def create_or_update_repo_secret( @@ -8423,8 +8315,7 @@ def create_or_update_repo_secret( headers: Optional[Dict[str, str]] = None, encrypted_value: Missing[str] = UNSET, key_id: Missing[str] = UNSET, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... def create_or_update_repo_secret( self, @@ -8468,8 +8359,7 @@ async def async_create_or_update_repo_secret( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoActionsSecretsSecretNamePutBodyType, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... @overload async def async_create_or_update_repo_secret( @@ -8482,8 +8372,7 @@ async def async_create_or_update_repo_secret( headers: Optional[Dict[str, str]] = None, encrypted_value: Missing[str] = UNSET, key_id: Missing[str] = UNSET, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... async def async_create_or_update_repo_secret( self, @@ -8626,8 +8515,7 @@ def create_repo_variable( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoActionsVariablesPostBodyType, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... @overload def create_repo_variable( @@ -8639,8 +8527,7 @@ def create_repo_variable( headers: Optional[Dict[str, str]] = None, name: str, value: str, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... def create_repo_variable( self, @@ -8682,8 +8569,7 @@ async def async_create_repo_variable( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoActionsVariablesPostBodyType, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... @overload async def async_create_repo_variable( @@ -8695,8 +8581,7 @@ async def async_create_repo_variable( headers: Optional[Dict[str, str]] = None, name: str, value: str, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... async def async_create_repo_variable( self, @@ -8825,8 +8710,7 @@ def update_repo_variable( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoActionsVariablesNamePatchBodyType, - ) -> Response: - ... + ) -> Response: ... @overload def update_repo_variable( @@ -8838,8 +8722,7 @@ def update_repo_variable( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, value: Missing[str] = UNSET, - ) -> Response: - ... + ) -> Response: ... def update_repo_variable( self, @@ -8882,8 +8765,7 @@ async def async_update_repo_variable( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoActionsVariablesNamePatchBodyType, - ) -> Response: - ... + ) -> Response: ... @overload async def async_update_repo_variable( @@ -8895,8 +8777,7 @@ async def async_update_repo_variable( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, value: Missing[str] = UNSET, - ) -> Response: - ... + ) -> Response: ... async def async_update_repo_variable( self, @@ -9085,8 +8966,7 @@ def create_workflow_dispatch( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoActionsWorkflowsWorkflowIdDispatchesPostBodyType, - ) -> Response: - ... + ) -> Response: ... @overload def create_workflow_dispatch( @@ -9101,8 +8981,7 @@ def create_workflow_dispatch( inputs: Missing[ ReposOwnerRepoActionsWorkflowsWorkflowIdDispatchesPostBodyPropInputsType ] = UNSET, - ) -> Response: - ... + ) -> Response: ... def create_workflow_dispatch( self, @@ -9149,8 +9028,7 @@ async def async_create_workflow_dispatch( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoActionsWorkflowsWorkflowIdDispatchesPostBodyType, - ) -> Response: - ... + ) -> Response: ... @overload async def async_create_workflow_dispatch( @@ -9165,8 +9043,7 @@ async def async_create_workflow_dispatch( inputs: Missing[ ReposOwnerRepoActionsWorkflowsWorkflowIdDispatchesPostBodyPropInputsType ] = UNSET, - ) -> Response: - ... + ) -> Response: ... async def async_create_workflow_dispatch( self, @@ -9592,8 +9469,7 @@ def create_or_update_environment_secret( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoEnvironmentsEnvironmentNameSecretsSecretNamePutBodyType, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... @overload def create_or_update_environment_secret( @@ -9607,8 +9483,7 @@ def create_or_update_environment_secret( headers: Optional[Dict[str, str]] = None, encrypted_value: str, key_id: str, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... def create_or_update_environment_secret( self, @@ -9661,8 +9536,7 @@ async def async_create_or_update_environment_secret( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoEnvironmentsEnvironmentNameSecretsSecretNamePutBodyType, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... @overload async def async_create_or_update_environment_secret( @@ -9676,8 +9550,7 @@ async def async_create_or_update_environment_secret( headers: Optional[Dict[str, str]] = None, encrypted_value: str, key_id: str, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... async def async_create_or_update_environment_secret( self, @@ -9837,8 +9710,7 @@ def create_environment_variable( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoEnvironmentsEnvironmentNameVariablesPostBodyType, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... @overload def create_environment_variable( @@ -9851,8 +9723,7 @@ def create_environment_variable( headers: Optional[Dict[str, str]] = None, name: str, value: str, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... def create_environment_variable( self, @@ -9903,8 +9774,7 @@ async def async_create_environment_variable( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoEnvironmentsEnvironmentNameVariablesPostBodyType, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... @overload async def async_create_environment_variable( @@ -9917,8 +9787,7 @@ async def async_create_environment_variable( headers: Optional[Dict[str, str]] = None, name: str, value: str, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... async def async_create_environment_variable( self, @@ -10060,8 +9929,7 @@ def update_environment_variable( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoEnvironmentsEnvironmentNameVariablesNamePatchBodyType, - ) -> Response: - ... + ) -> Response: ... @overload def update_environment_variable( @@ -10074,8 +9942,7 @@ def update_environment_variable( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, value: Missing[str] = UNSET, - ) -> Response: - ... + ) -> Response: ... def update_environment_variable( self, @@ -10126,8 +9993,7 @@ async def async_update_environment_variable( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoEnvironmentsEnvironmentNameVariablesNamePatchBodyType, - ) -> Response: - ... + ) -> Response: ... @overload async def async_update_environment_variable( @@ -10140,8 +10006,7 @@ async def async_update_environment_variable( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, value: Missing[str] = UNSET, - ) -> Response: - ... + ) -> Response: ... async def async_update_environment_variable( self, diff --git a/githubkit/versions/ghec_v2022_11_28/rest/activity.py b/githubkit/versions/ghec_v2022_11_28/rest/activity.py index 605bea4ff..6bf572e5a 100644 --- a/githubkit/versions/ghec_v2022_11_28/rest/activity.py +++ b/githubkit/versions/ghec_v2022_11_28/rest/activity.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref @@ -345,8 +344,7 @@ def mark_notifications_as_read( *, headers: Optional[Dict[str, str]] = None, data: Missing[NotificationsPutBodyType] = UNSET, - ) -> Response[NotificationsPutResponse202]: - ... + ) -> Response[NotificationsPutResponse202]: ... @overload def mark_notifications_as_read( @@ -356,8 +354,7 @@ def mark_notifications_as_read( headers: Optional[Dict[str, str]] = None, last_read_at: Missing[datetime] = UNSET, read: Missing[bool] = UNSET, - ) -> Response[NotificationsPutResponse202]: - ... + ) -> Response[NotificationsPutResponse202]: ... def mark_notifications_as_read( self, @@ -403,8 +400,7 @@ async def async_mark_notifications_as_read( *, headers: Optional[Dict[str, str]] = None, data: Missing[NotificationsPutBodyType] = UNSET, - ) -> Response[NotificationsPutResponse202]: - ... + ) -> Response[NotificationsPutResponse202]: ... @overload async def async_mark_notifications_as_read( @@ -414,8 +410,7 @@ async def async_mark_notifications_as_read( headers: Optional[Dict[str, str]] = None, last_read_at: Missing[datetime] = UNSET, read: Missing[bool] = UNSET, - ) -> Response[NotificationsPutResponse202]: - ... + ) -> Response[NotificationsPutResponse202]: ... async def async_mark_notifications_as_read( self, @@ -644,8 +639,7 @@ def set_thread_subscription( *, headers: Optional[Dict[str, str]] = None, data: Missing[NotificationsThreadsThreadIdSubscriptionPutBodyType] = UNSET, - ) -> Response[ThreadSubscription]: - ... + ) -> Response[ThreadSubscription]: ... @overload def set_thread_subscription( @@ -655,8 +649,7 @@ def set_thread_subscription( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, ignored: Missing[bool] = UNSET, - ) -> Response[ThreadSubscription]: - ... + ) -> Response[ThreadSubscription]: ... def set_thread_subscription( self, @@ -706,8 +699,7 @@ async def async_set_thread_subscription( *, headers: Optional[Dict[str, str]] = None, data: Missing[NotificationsThreadsThreadIdSubscriptionPutBodyType] = UNSET, - ) -> Response[ThreadSubscription]: - ... + ) -> Response[ThreadSubscription]: ... @overload async def async_set_thread_subscription( @@ -717,8 +709,7 @@ async def async_set_thread_subscription( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, ignored: Missing[bool] = UNSET, - ) -> Response[ThreadSubscription]: - ... + ) -> Response[ThreadSubscription]: ... async def async_set_thread_subscription( self, @@ -1023,8 +1014,7 @@ def mark_repo_notifications_as_read( *, headers: Optional[Dict[str, str]] = None, data: Missing[ReposOwnerRepoNotificationsPutBodyType] = UNSET, - ) -> Response[ReposOwnerRepoNotificationsPutResponse202]: - ... + ) -> Response[ReposOwnerRepoNotificationsPutResponse202]: ... @overload def mark_repo_notifications_as_read( @@ -1035,8 +1025,7 @@ def mark_repo_notifications_as_read( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, last_read_at: Missing[datetime] = UNSET, - ) -> Response[ReposOwnerRepoNotificationsPutResponse202]: - ... + ) -> Response[ReposOwnerRepoNotificationsPutResponse202]: ... def mark_repo_notifications_as_read( self, @@ -1081,8 +1070,7 @@ async def async_mark_repo_notifications_as_read( *, headers: Optional[Dict[str, str]] = None, data: Missing[ReposOwnerRepoNotificationsPutBodyType] = UNSET, - ) -> Response[ReposOwnerRepoNotificationsPutResponse202]: - ... + ) -> Response[ReposOwnerRepoNotificationsPutResponse202]: ... @overload async def async_mark_repo_notifications_as_read( @@ -1093,8 +1081,7 @@ async def async_mark_repo_notifications_as_read( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, last_read_at: Missing[datetime] = UNSET, - ) -> Response[ReposOwnerRepoNotificationsPutResponse202]: - ... + ) -> Response[ReposOwnerRepoNotificationsPutResponse202]: ... async def async_mark_repo_notifications_as_read( self, @@ -1323,8 +1310,7 @@ def set_repo_subscription( *, headers: Optional[Dict[str, str]] = None, data: Missing[ReposOwnerRepoSubscriptionPutBodyType] = UNSET, - ) -> Response[RepositorySubscription]: - ... + ) -> Response[RepositorySubscription]: ... @overload def set_repo_subscription( @@ -1336,8 +1322,7 @@ def set_repo_subscription( headers: Optional[Dict[str, str]] = None, subscribed: Missing[bool] = UNSET, ignored: Missing[bool] = UNSET, - ) -> Response[RepositorySubscription]: - ... + ) -> Response[RepositorySubscription]: ... def set_repo_subscription( self, @@ -1379,8 +1364,7 @@ async def async_set_repo_subscription( *, headers: Optional[Dict[str, str]] = None, data: Missing[ReposOwnerRepoSubscriptionPutBodyType] = UNSET, - ) -> Response[RepositorySubscription]: - ... + ) -> Response[RepositorySubscription]: ... @overload async def async_set_repo_subscription( @@ -1392,8 +1376,7 @@ async def async_set_repo_subscription( headers: Optional[Dict[str, str]] = None, subscribed: Missing[bool] = UNSET, ignored: Missing[bool] = UNSET, - ) -> Response[RepositorySubscription]: - ... + ) -> Response[RepositorySubscription]: ... async def async_set_repo_subscription( self, diff --git a/githubkit/versions/ghec_v2022_11_28/rest/apps.py b/githubkit/versions/ghec_v2022_11_28/rest/apps.py index ef7883375..1c1ef0071 100644 --- a/githubkit/versions/ghec_v2022_11_28/rest/apps.py +++ b/githubkit/versions/ghec_v2022_11_28/rest/apps.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref @@ -217,8 +216,7 @@ def update_webhook_config_for_app( *, headers: Optional[Dict[str, str]] = None, data: AppHookConfigPatchBodyType, - ) -> Response[WebhookConfig]: - ... + ) -> Response[WebhookConfig]: ... @overload def update_webhook_config_for_app( @@ -230,8 +228,7 @@ def update_webhook_config_for_app( content_type: Missing[str] = UNSET, secret: Missing[str] = UNSET, insecure_ssl: Missing[Union[str, float]] = UNSET, - ) -> Response[WebhookConfig]: - ... + ) -> Response[WebhookConfig]: ... def update_webhook_config_for_app( self, @@ -269,8 +266,7 @@ async def async_update_webhook_config_for_app( *, headers: Optional[Dict[str, str]] = None, data: AppHookConfigPatchBodyType, - ) -> Response[WebhookConfig]: - ... + ) -> Response[WebhookConfig]: ... @overload async def async_update_webhook_config_for_app( @@ -282,8 +278,7 @@ async def async_update_webhook_config_for_app( content_type: Missing[str] = UNSET, secret: Missing[str] = UNSET, insecure_ssl: Missing[Union[str, float]] = UNSET, - ) -> Response[WebhookConfig]: - ... + ) -> Response[WebhookConfig]: ... async def async_update_webhook_config_for_app( self, @@ -730,8 +725,7 @@ def create_installation_access_token( *, headers: Optional[Dict[str, str]] = None, data: Missing[AppInstallationsInstallationIdAccessTokensPostBodyType] = UNSET, - ) -> Response[InstallationToken]: - ... + ) -> Response[InstallationToken]: ... @overload def create_installation_access_token( @@ -743,8 +737,7 @@ def create_installation_access_token( repositories: Missing[List[str]] = UNSET, repository_ids: Missing[List[int]] = UNSET, permissions: Missing[AppPermissionsType] = UNSET, - ) -> Response[InstallationToken]: - ... + ) -> Response[InstallationToken]: ... def create_installation_access_token( self, @@ -797,8 +790,7 @@ async def async_create_installation_access_token( *, headers: Optional[Dict[str, str]] = None, data: Missing[AppInstallationsInstallationIdAccessTokensPostBodyType] = UNSET, - ) -> Response[InstallationToken]: - ... + ) -> Response[InstallationToken]: ... @overload async def async_create_installation_access_token( @@ -810,8 +802,7 @@ async def async_create_installation_access_token( repositories: Missing[List[str]] = UNSET, repository_ids: Missing[List[int]] = UNSET, permissions: Missing[AppPermissionsType] = UNSET, - ) -> Response[InstallationToken]: - ... + ) -> Response[InstallationToken]: ... async def async_create_installation_access_token( self, @@ -956,8 +947,7 @@ def delete_authorization( *, headers: Optional[Dict[str, str]] = None, data: ApplicationsClientIdGrantDeleteBodyType, - ) -> Response: - ... + ) -> Response: ... @overload def delete_authorization( @@ -967,8 +957,7 @@ def delete_authorization( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, access_token: str, - ) -> Response: - ... + ) -> Response: ... def delete_authorization( self, @@ -1010,8 +999,7 @@ async def async_delete_authorization( *, headers: Optional[Dict[str, str]] = None, data: ApplicationsClientIdGrantDeleteBodyType, - ) -> Response: - ... + ) -> Response: ... @overload async def async_delete_authorization( @@ -1021,8 +1009,7 @@ async def async_delete_authorization( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, access_token: str, - ) -> Response: - ... + ) -> Response: ... async def async_delete_authorization( self, @@ -1064,8 +1051,7 @@ def check_token( *, headers: Optional[Dict[str, str]] = None, data: ApplicationsClientIdTokenPostBodyType, - ) -> Response[Authorization]: - ... + ) -> Response[Authorization]: ... @overload def check_token( @@ -1075,8 +1061,7 @@ def check_token( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, access_token: str, - ) -> Response[Authorization]: - ... + ) -> Response[Authorization]: ... def check_token( self, @@ -1125,8 +1110,7 @@ async def async_check_token( *, headers: Optional[Dict[str, str]] = None, data: ApplicationsClientIdTokenPostBodyType, - ) -> Response[Authorization]: - ... + ) -> Response[Authorization]: ... @overload async def async_check_token( @@ -1136,8 +1120,7 @@ async def async_check_token( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, access_token: str, - ) -> Response[Authorization]: - ... + ) -> Response[Authorization]: ... async def async_check_token( self, @@ -1186,8 +1169,7 @@ def delete_token( *, headers: Optional[Dict[str, str]] = None, data: ApplicationsClientIdTokenDeleteBodyType, - ) -> Response: - ... + ) -> Response: ... @overload def delete_token( @@ -1197,8 +1179,7 @@ def delete_token( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, access_token: str, - ) -> Response: - ... + ) -> Response: ... def delete_token( self, @@ -1240,8 +1221,7 @@ async def async_delete_token( *, headers: Optional[Dict[str, str]] = None, data: ApplicationsClientIdTokenDeleteBodyType, - ) -> Response: - ... + ) -> Response: ... @overload async def async_delete_token( @@ -1251,8 +1231,7 @@ async def async_delete_token( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, access_token: str, - ) -> Response: - ... + ) -> Response: ... async def async_delete_token( self, @@ -1294,8 +1273,7 @@ def reset_token( *, headers: Optional[Dict[str, str]] = None, data: ApplicationsClientIdTokenPatchBodyType, - ) -> Response[Authorization]: - ... + ) -> Response[Authorization]: ... @overload def reset_token( @@ -1305,8 +1283,7 @@ def reset_token( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, access_token: str, - ) -> Response[Authorization]: - ... + ) -> Response[Authorization]: ... def reset_token( self, @@ -1353,8 +1330,7 @@ async def async_reset_token( *, headers: Optional[Dict[str, str]] = None, data: ApplicationsClientIdTokenPatchBodyType, - ) -> Response[Authorization]: - ... + ) -> Response[Authorization]: ... @overload async def async_reset_token( @@ -1364,8 +1340,7 @@ async def async_reset_token( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, access_token: str, - ) -> Response[Authorization]: - ... + ) -> Response[Authorization]: ... async def async_reset_token( self, @@ -1412,8 +1387,7 @@ def scope_token( *, headers: Optional[Dict[str, str]] = None, data: ApplicationsClientIdTokenScopedPostBodyType, - ) -> Response[Authorization]: - ... + ) -> Response[Authorization]: ... @overload def scope_token( @@ -1428,8 +1402,7 @@ def scope_token( repositories: Missing[List[str]] = UNSET, repository_ids: Missing[List[int]] = UNSET, permissions: Missing[AppPermissionsType] = UNSET, - ) -> Response[Authorization]: - ... + ) -> Response[Authorization]: ... def scope_token( self, @@ -1480,8 +1453,7 @@ async def async_scope_token( *, headers: Optional[Dict[str, str]] = None, data: ApplicationsClientIdTokenScopedPostBodyType, - ) -> Response[Authorization]: - ... + ) -> Response[Authorization]: ... @overload async def async_scope_token( @@ -1496,8 +1468,7 @@ async def async_scope_token( repositories: Missing[List[str]] = UNSET, repository_ids: Missing[List[int]] = UNSET, permissions: Missing[AppPermissionsType] = UNSET, - ) -> Response[Authorization]: - ... + ) -> Response[Authorization]: ... async def async_scope_token( self, diff --git a/githubkit/versions/ghec_v2022_11_28/rest/billing.py b/githubkit/versions/ghec_v2022_11_28/rest/billing.py index 2705bfa3c..2609b021e 100644 --- a/githubkit/versions/ghec_v2022_11_28/rest/billing.py +++ b/githubkit/versions/ghec_v2022_11_28/rest/billing.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref diff --git a/githubkit/versions/ghec_v2022_11_28/rest/checks.py b/githubkit/versions/ghec_v2022_11_28/rest/checks.py index e9ab68cb7..726c8aa9b 100644 --- a/githubkit/versions/ghec_v2022_11_28/rest/checks.py +++ b/githubkit/versions/ghec_v2022_11_28/rest/checks.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref @@ -79,8 +78,7 @@ def create( ReposOwnerRepoCheckRunsPostBodyOneof0Type, ReposOwnerRepoCheckRunsPostBodyOneof1Type, ], - ) -> Response[CheckRun]: - ... + ) -> Response[CheckRun]: ... @overload def create( @@ -111,8 +109,7 @@ def create( actions: Missing[ List[ReposOwnerRepoCheckRunsPostBodyPropActionsItemsType] ] = UNSET, - ) -> Response[CheckRun]: - ... + ) -> Response[CheckRun]: ... @overload def create( @@ -145,8 +142,7 @@ def create( actions: Missing[ List[ReposOwnerRepoCheckRunsPostBodyPropActionsItemsType] ] = UNSET, - ) -> Response[CheckRun]: - ... + ) -> Response[CheckRun]: ... def create( self, @@ -208,8 +204,7 @@ async def async_create( ReposOwnerRepoCheckRunsPostBodyOneof0Type, ReposOwnerRepoCheckRunsPostBodyOneof1Type, ], - ) -> Response[CheckRun]: - ... + ) -> Response[CheckRun]: ... @overload async def async_create( @@ -240,8 +235,7 @@ async def async_create( actions: Missing[ List[ReposOwnerRepoCheckRunsPostBodyPropActionsItemsType] ] = UNSET, - ) -> Response[CheckRun]: - ... + ) -> Response[CheckRun]: ... @overload async def async_create( @@ -274,8 +268,7 @@ async def async_create( actions: Missing[ List[ReposOwnerRepoCheckRunsPostBodyPropActionsItemsType] ] = UNSET, - ) -> Response[CheckRun]: - ... + ) -> Response[CheckRun]: ... async def async_create( self, @@ -384,8 +377,7 @@ def update( ReposOwnerRepoCheckRunsCheckRunIdPatchBodyAnyof0Type, ReposOwnerRepoCheckRunsCheckRunIdPatchBodyAnyof1Type, ], - ) -> Response[CheckRun]: - ... + ) -> Response[CheckRun]: ... @overload def update( @@ -418,8 +410,7 @@ def update( actions: Missing[ List[ReposOwnerRepoCheckRunsCheckRunIdPatchBodyPropActionsItemsType] ] = UNSET, - ) -> Response[CheckRun]: - ... + ) -> Response[CheckRun]: ... @overload def update( @@ -454,8 +445,7 @@ def update( actions: Missing[ List[ReposOwnerRepoCheckRunsCheckRunIdPatchBodyPropActionsItemsType] ] = UNSET, - ) -> Response[CheckRun]: - ... + ) -> Response[CheckRun]: ... def update( self, @@ -519,8 +509,7 @@ async def async_update( ReposOwnerRepoCheckRunsCheckRunIdPatchBodyAnyof0Type, ReposOwnerRepoCheckRunsCheckRunIdPatchBodyAnyof1Type, ], - ) -> Response[CheckRun]: - ... + ) -> Response[CheckRun]: ... @overload async def async_update( @@ -553,8 +542,7 @@ async def async_update( actions: Missing[ List[ReposOwnerRepoCheckRunsCheckRunIdPatchBodyPropActionsItemsType] ] = UNSET, - ) -> Response[CheckRun]: - ... + ) -> Response[CheckRun]: ... @overload async def async_update( @@ -589,8 +577,7 @@ async def async_update( actions: Missing[ List[ReposOwnerRepoCheckRunsCheckRunIdPatchBodyPropActionsItemsType] ] = UNSET, - ) -> Response[CheckRun]: - ... + ) -> Response[CheckRun]: ... async def async_update( self, @@ -772,8 +759,7 @@ def create_suite( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoCheckSuitesPostBodyType, - ) -> Response[CheckSuite]: - ... + ) -> Response[CheckSuite]: ... @overload def create_suite( @@ -784,8 +770,7 @@ def create_suite( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, head_sha: str, - ) -> Response[CheckSuite]: - ... + ) -> Response[CheckSuite]: ... def create_suite( self, @@ -827,8 +812,7 @@ async def async_create_suite( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoCheckSuitesPostBodyType, - ) -> Response[CheckSuite]: - ... + ) -> Response[CheckSuite]: ... @overload async def async_create_suite( @@ -839,8 +823,7 @@ async def async_create_suite( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, head_sha: str, - ) -> Response[CheckSuite]: - ... + ) -> Response[CheckSuite]: ... async def async_create_suite( self, @@ -882,8 +865,7 @@ def set_suites_preferences( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoCheckSuitesPreferencesPatchBodyType, - ) -> Response[CheckSuitePreference]: - ... + ) -> Response[CheckSuitePreference]: ... @overload def set_suites_preferences( @@ -898,8 +880,7 @@ def set_suites_preferences( ReposOwnerRepoCheckSuitesPreferencesPatchBodyPropAutoTriggerChecksItemsType ] ] = UNSET, - ) -> Response[CheckSuitePreference]: - ... + ) -> Response[CheckSuitePreference]: ... def set_suites_preferences( self, @@ -944,8 +925,7 @@ async def async_set_suites_preferences( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoCheckSuitesPreferencesPatchBodyType, - ) -> Response[CheckSuitePreference]: - ... + ) -> Response[CheckSuitePreference]: ... @overload async def async_set_suites_preferences( @@ -960,8 +940,7 @@ async def async_set_suites_preferences( ReposOwnerRepoCheckSuitesPreferencesPatchBodyPropAutoTriggerChecksItemsType ] ] = UNSET, - ) -> Response[CheckSuitePreference]: - ... + ) -> Response[CheckSuitePreference]: ... async def async_set_suites_preferences( self, diff --git a/githubkit/versions/ghec_v2022_11_28/rest/classroom.py b/githubkit/versions/ghec_v2022_11_28/rest/classroom.py index a5469a80c..4622041eb 100644 --- a/githubkit/versions/ghec_v2022_11_28/rest/classroom.py +++ b/githubkit/versions/ghec_v2022_11_28/rest/classroom.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref diff --git a/githubkit/versions/ghec_v2022_11_28/rest/code_scanning.py b/githubkit/versions/ghec_v2022_11_28/rest/code_scanning.py index 5e8a65651..bf45577bc 100644 --- a/githubkit/versions/ghec_v2022_11_28/rest/code_scanning.py +++ b/githubkit/versions/ghec_v2022_11_28/rest/code_scanning.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref @@ -470,8 +469,7 @@ def update_alert( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoCodeScanningAlertsAlertNumberPatchBodyType, - ) -> Response[CodeScanningAlert]: - ... + ) -> Response[CodeScanningAlert]: ... @overload def update_alert( @@ -487,8 +485,7 @@ def update_alert( Union[None, Literal["false positive", "won't fix", "used in tests"]] ] = UNSET, dismissed_comment: Missing[Union[str, None]] = UNSET, - ) -> Response[CodeScanningAlert]: - ... + ) -> Response[CodeScanningAlert]: ... def update_alert( self, @@ -544,8 +541,7 @@ async def async_update_alert( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoCodeScanningAlertsAlertNumberPatchBodyType, - ) -> Response[CodeScanningAlert]: - ... + ) -> Response[CodeScanningAlert]: ... @overload async def async_update_alert( @@ -561,8 +557,7 @@ async def async_update_alert( Union[None, Literal["false positive", "won't fix", "used in tests"]] ] = UNSET, dismissed_comment: Missing[Union[str, None]] = UNSET, - ) -> Response[CodeScanningAlert]: - ... + ) -> Response[CodeScanningAlert]: ... async def async_update_alert( self, @@ -1145,8 +1140,7 @@ def update_default_setup( *, headers: Optional[Dict[str, str]] = None, data: CodeScanningDefaultSetupUpdateType, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... @overload def update_default_setup( @@ -1172,8 +1166,7 @@ def update_default_setup( ] ] ] = UNSET, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... def update_default_setup( self, @@ -1226,8 +1219,7 @@ async def async_update_default_setup( *, headers: Optional[Dict[str, str]] = None, data: CodeScanningDefaultSetupUpdateType, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... @overload async def async_update_default_setup( @@ -1253,8 +1245,7 @@ async def async_update_default_setup( ] ] ] = UNSET, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... async def async_update_default_setup( self, @@ -1307,8 +1298,7 @@ def upload_sarif( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoCodeScanningSarifsPostBodyType, - ) -> Response[CodeScanningSarifsReceipt]: - ... + ) -> Response[CodeScanningSarifsReceipt]: ... @overload def upload_sarif( @@ -1325,8 +1315,7 @@ def upload_sarif( started_at: Missing[datetime] = UNSET, tool_name: Missing[str] = UNSET, validate_: Missing[bool] = UNSET, - ) -> Response[CodeScanningSarifsReceipt]: - ... + ) -> Response[CodeScanningSarifsReceipt]: ... def upload_sarif( self, @@ -1378,8 +1367,7 @@ async def async_upload_sarif( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoCodeScanningSarifsPostBodyType, - ) -> Response[CodeScanningSarifsReceipt]: - ... + ) -> Response[CodeScanningSarifsReceipt]: ... @overload async def async_upload_sarif( @@ -1396,8 +1384,7 @@ async def async_upload_sarif( started_at: Missing[datetime] = UNSET, tool_name: Missing[str] = UNSET, validate_: Missing[bool] = UNSET, - ) -> Response[CodeScanningSarifsReceipt]: - ... + ) -> Response[CodeScanningSarifsReceipt]: ... async def async_upload_sarif( self, diff --git a/githubkit/versions/ghec_v2022_11_28/rest/codes_of_conduct.py b/githubkit/versions/ghec_v2022_11_28/rest/codes_of_conduct.py index 1f1811b0f..1af89c510 100644 --- a/githubkit/versions/ghec_v2022_11_28/rest/codes_of_conduct.py +++ b/githubkit/versions/ghec_v2022_11_28/rest/codes_of_conduct.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref diff --git a/githubkit/versions/ghec_v2022_11_28/rest/codespaces.py b/githubkit/versions/ghec_v2022_11_28/rest/codespaces.py index 9081e7ac8..ab01e1be5 100644 --- a/githubkit/versions/ghec_v2022_11_28/rest/codespaces.py +++ b/githubkit/versions/ghec_v2022_11_28/rest/codespaces.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref @@ -164,8 +163,7 @@ def set_codespaces_access( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgCodespacesAccessPutBodyType, - ) -> Response: - ... + ) -> Response: ... @overload def set_codespaces_access( @@ -181,8 +179,7 @@ def set_codespaces_access( "all_members_and_outside_collaborators", ], selected_usernames: Missing[List[str]] = UNSET, - ) -> Response: - ... + ) -> Response: ... def set_codespaces_access( self, @@ -226,8 +223,7 @@ async def async_set_codespaces_access( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgCodespacesAccessPutBodyType, - ) -> Response: - ... + ) -> Response: ... @overload async def async_set_codespaces_access( @@ -243,8 +239,7 @@ async def async_set_codespaces_access( "all_members_and_outside_collaborators", ], selected_usernames: Missing[List[str]] = UNSET, - ) -> Response: - ... + ) -> Response: ... async def async_set_codespaces_access( self, @@ -288,8 +283,7 @@ def set_codespaces_access_users( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgCodespacesAccessSelectedUsersPostBodyType, - ) -> Response: - ... + ) -> Response: ... @overload def set_codespaces_access_users( @@ -299,8 +293,7 @@ def set_codespaces_access_users( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, selected_usernames: List[str], - ) -> Response: - ... + ) -> Response: ... def set_codespaces_access_users( self, @@ -348,8 +341,7 @@ async def async_set_codespaces_access_users( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgCodespacesAccessSelectedUsersPostBodyType, - ) -> Response: - ... + ) -> Response: ... @overload async def async_set_codespaces_access_users( @@ -359,8 +351,7 @@ async def async_set_codespaces_access_users( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, selected_usernames: List[str], - ) -> Response: - ... + ) -> Response: ... async def async_set_codespaces_access_users( self, @@ -408,8 +399,7 @@ def delete_codespaces_access_users( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgCodespacesAccessSelectedUsersDeleteBodyType, - ) -> Response: - ... + ) -> Response: ... @overload def delete_codespaces_access_users( @@ -419,8 +409,7 @@ def delete_codespaces_access_users( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, selected_usernames: List[str], - ) -> Response: - ... + ) -> Response: ... def delete_codespaces_access_users( self, @@ -470,8 +459,7 @@ async def async_delete_codespaces_access_users( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgCodespacesAccessSelectedUsersDeleteBodyType, - ) -> Response: - ... + ) -> Response: ... @overload async def async_delete_codespaces_access_users( @@ -481,8 +469,7 @@ async def async_delete_codespaces_access_users( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, selected_usernames: List[str], - ) -> Response: - ... + ) -> Response: ... async def async_delete_codespaces_access_users( self, @@ -677,8 +664,7 @@ def create_or_update_org_secret( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgCodespacesSecretsSecretNamePutBodyType, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... @overload def create_or_update_org_secret( @@ -692,8 +678,7 @@ def create_or_update_org_secret( key_id: Missing[str] = UNSET, visibility: Literal["all", "private", "selected"], selected_repository_ids: Missing[List[int]] = UNSET, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... def create_or_update_org_secret( self, @@ -744,8 +729,7 @@ async def async_create_or_update_org_secret( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgCodespacesSecretsSecretNamePutBodyType, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... @overload async def async_create_or_update_org_secret( @@ -759,8 +743,7 @@ async def async_create_or_update_org_secret( key_id: Missing[str] = UNSET, visibility: Literal["all", "private", "selected"], selected_repository_ids: Missing[List[int]] = UNSET, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... async def async_create_or_update_org_secret( self, @@ -931,8 +914,7 @@ def set_selected_repos_for_org_secret( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgCodespacesSecretsSecretNameRepositoriesPutBodyType, - ) -> Response: - ... + ) -> Response: ... @overload def set_selected_repos_for_org_secret( @@ -943,8 +925,7 @@ def set_selected_repos_for_org_secret( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, selected_repository_ids: List[int], - ) -> Response: - ... + ) -> Response: ... def set_selected_repos_for_org_secret( self, @@ -995,8 +976,7 @@ async def async_set_selected_repos_for_org_secret( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgCodespacesSecretsSecretNameRepositoriesPutBodyType, - ) -> Response: - ... + ) -> Response: ... @overload async def async_set_selected_repos_for_org_secret( @@ -1007,8 +987,7 @@ async def async_set_selected_repos_for_org_secret( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, selected_repository_ids: List[int], - ) -> Response: - ... + ) -> Response: ... async def async_set_selected_repos_for_org_secret( self, @@ -1437,8 +1416,7 @@ def create_with_repo_for_authenticated_user( *, headers: Optional[Dict[str, str]] = None, data: Union[ReposOwnerRepoCodespacesPostBodyType, None], - ) -> Response[Codespace]: - ... + ) -> Response[Codespace]: ... @overload def create_with_repo_for_authenticated_user( @@ -1461,8 +1439,7 @@ def create_with_repo_for_authenticated_user( idle_timeout_minutes: Missing[int] = UNSET, display_name: Missing[str] = UNSET, retention_period_minutes: Missing[int] = UNSET, - ) -> Response[Codespace]: - ... + ) -> Response[Codespace]: ... def create_with_repo_for_authenticated_user( self, @@ -1518,8 +1495,7 @@ async def async_create_with_repo_for_authenticated_user( *, headers: Optional[Dict[str, str]] = None, data: Union[ReposOwnerRepoCodespacesPostBodyType, None], - ) -> Response[Codespace]: - ... + ) -> Response[Codespace]: ... @overload async def async_create_with_repo_for_authenticated_user( @@ -1542,8 +1518,7 @@ async def async_create_with_repo_for_authenticated_user( idle_timeout_minutes: Missing[int] = UNSET, display_name: Missing[str] = UNSET, retention_period_minutes: Missing[int] = UNSET, - ) -> Response[Codespace]: - ... + ) -> Response[Codespace]: ... async def async_create_with_repo_for_authenticated_user( self, @@ -2060,8 +2035,7 @@ def create_or_update_repo_secret( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoCodespacesSecretsSecretNamePutBodyType, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... @overload def create_or_update_repo_secret( @@ -2074,8 +2048,7 @@ def create_or_update_repo_secret( headers: Optional[Dict[str, str]] = None, encrypted_value: Missing[str] = UNSET, key_id: Missing[str] = UNSET, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... def create_or_update_repo_secret( self, @@ -2124,8 +2097,7 @@ async def async_create_or_update_repo_secret( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoCodespacesSecretsSecretNamePutBodyType, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... @overload async def async_create_or_update_repo_secret( @@ -2138,8 +2110,7 @@ async def async_create_or_update_repo_secret( headers: Optional[Dict[str, str]] = None, encrypted_value: Missing[str] = UNSET, key_id: Missing[str] = UNSET, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... async def async_create_or_update_repo_secret( self, @@ -2228,8 +2199,7 @@ def create_with_pr_for_authenticated_user( *, headers: Optional[Dict[str, str]] = None, data: Union[ReposOwnerRepoPullsPullNumberCodespacesPostBodyType, None], - ) -> Response[Codespace]: - ... + ) -> Response[Codespace]: ... @overload def create_with_pr_for_authenticated_user( @@ -2252,8 +2222,7 @@ def create_with_pr_for_authenticated_user( idle_timeout_minutes: Missing[int] = UNSET, display_name: Missing[str] = UNSET, retention_period_minutes: Missing[int] = UNSET, - ) -> Response[Codespace]: - ... + ) -> Response[Codespace]: ... def create_with_pr_for_authenticated_user( self, @@ -2314,8 +2283,7 @@ async def async_create_with_pr_for_authenticated_user( *, headers: Optional[Dict[str, str]] = None, data: Union[ReposOwnerRepoPullsPullNumberCodespacesPostBodyType, None], - ) -> Response[Codespace]: - ... + ) -> Response[Codespace]: ... @overload async def async_create_with_pr_for_authenticated_user( @@ -2338,8 +2306,7 @@ async def async_create_with_pr_for_authenticated_user( idle_timeout_minutes: Missing[int] = UNSET, display_name: Missing[str] = UNSET, retention_period_minutes: Missing[int] = UNSET, - ) -> Response[Codespace]: - ... + ) -> Response[Codespace]: ... async def async_create_with_pr_for_authenticated_user( self, @@ -2469,8 +2436,7 @@ def create_for_authenticated_user( *, headers: Optional[Dict[str, str]] = None, data: Union[UserCodespacesPostBodyOneof0Type, UserCodespacesPostBodyOneof1Type], - ) -> Response[Codespace]: - ... + ) -> Response[Codespace]: ... @overload def create_for_authenticated_user( @@ -2492,8 +2458,7 @@ def create_for_authenticated_user( idle_timeout_minutes: Missing[int] = UNSET, display_name: Missing[str] = UNSET, retention_period_minutes: Missing[int] = UNSET, - ) -> Response[Codespace]: - ... + ) -> Response[Codespace]: ... @overload def create_for_authenticated_user( @@ -2510,8 +2475,7 @@ def create_for_authenticated_user( devcontainer_path: Missing[str] = UNSET, working_directory: Missing[str] = UNSET, idle_timeout_minutes: Missing[int] = UNSET, - ) -> Response[Codespace]: - ... + ) -> Response[Codespace]: ... def create_for_authenticated_user( self, @@ -2567,8 +2531,7 @@ async def async_create_for_authenticated_user( *, headers: Optional[Dict[str, str]] = None, data: Union[UserCodespacesPostBodyOneof0Type, UserCodespacesPostBodyOneof1Type], - ) -> Response[Codespace]: - ... + ) -> Response[Codespace]: ... @overload async def async_create_for_authenticated_user( @@ -2590,8 +2553,7 @@ async def async_create_for_authenticated_user( idle_timeout_minutes: Missing[int] = UNSET, display_name: Missing[str] = UNSET, retention_period_minutes: Missing[int] = UNSET, - ) -> Response[Codespace]: - ... + ) -> Response[Codespace]: ... @overload async def async_create_for_authenticated_user( @@ -2608,8 +2570,7 @@ async def async_create_for_authenticated_user( devcontainer_path: Missing[str] = UNSET, working_directory: Missing[str] = UNSET, idle_timeout_minutes: Missing[int] = UNSET, - ) -> Response[Codespace]: - ... + ) -> Response[Codespace]: ... async def async_create_for_authenticated_user( self, @@ -2804,8 +2765,7 @@ def create_or_update_secret_for_authenticated_user( *, headers: Optional[Dict[str, str]] = None, data: UserCodespacesSecretsSecretNamePutBodyType, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... @overload def create_or_update_secret_for_authenticated_user( @@ -2817,8 +2777,7 @@ def create_or_update_secret_for_authenticated_user( encrypted_value: Missing[str] = UNSET, key_id: str, selected_repository_ids: Missing[List[Union[int, str]]] = UNSET, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... def create_or_update_secret_for_authenticated_user( self, @@ -2867,8 +2826,7 @@ async def async_create_or_update_secret_for_authenticated_user( *, headers: Optional[Dict[str, str]] = None, data: UserCodespacesSecretsSecretNamePutBodyType, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... @overload async def async_create_or_update_secret_for_authenticated_user( @@ -2880,8 +2838,7 @@ async def async_create_or_update_secret_for_authenticated_user( encrypted_value: Missing[str] = UNSET, key_id: str, selected_repository_ids: Missing[List[Union[int, str]]] = UNSET, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... async def async_create_or_update_secret_for_authenticated_user( self, @@ -3026,8 +2983,7 @@ def set_repositories_for_secret_for_authenticated_user( *, headers: Optional[Dict[str, str]] = None, data: UserCodespacesSecretsSecretNameRepositoriesPutBodyType, - ) -> Response: - ... + ) -> Response: ... @overload def set_repositories_for_secret_for_authenticated_user( @@ -3037,8 +2993,7 @@ def set_repositories_for_secret_for_authenticated_user( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, selected_repository_ids: List[int], - ) -> Response: - ... + ) -> Response: ... def set_repositories_for_secret_for_authenticated_user( self, @@ -3088,8 +3043,7 @@ async def async_set_repositories_for_secret_for_authenticated_user( *, headers: Optional[Dict[str, str]] = None, data: UserCodespacesSecretsSecretNameRepositoriesPutBodyType, - ) -> Response: - ... + ) -> Response: ... @overload async def async_set_repositories_for_secret_for_authenticated_user( @@ -3099,8 +3053,7 @@ async def async_set_repositories_for_secret_for_authenticated_user( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, selected_repository_ids: List[int], - ) -> Response: - ... + ) -> Response: ... async def async_set_repositories_for_secret_for_authenticated_user( self, @@ -3372,8 +3325,7 @@ def update_for_authenticated_user( *, headers: Optional[Dict[str, str]] = None, data: Missing[UserCodespacesCodespaceNamePatchBodyType] = UNSET, - ) -> Response[Codespace]: - ... + ) -> Response[Codespace]: ... @overload def update_for_authenticated_user( @@ -3385,8 +3337,7 @@ def update_for_authenticated_user( machine: Missing[str] = UNSET, display_name: Missing[str] = UNSET, recent_folders: Missing[List[str]] = UNSET, - ) -> Response[Codespace]: - ... + ) -> Response[Codespace]: ... def update_for_authenticated_user( self, @@ -3431,8 +3382,7 @@ async def async_update_for_authenticated_user( *, headers: Optional[Dict[str, str]] = None, data: Missing[UserCodespacesCodespaceNamePatchBodyType] = UNSET, - ) -> Response[Codespace]: - ... + ) -> Response[Codespace]: ... @overload async def async_update_for_authenticated_user( @@ -3444,8 +3394,7 @@ async def async_update_for_authenticated_user( machine: Missing[str] = UNSET, display_name: Missing[str] = UNSET, recent_folders: Missing[List[str]] = UNSET, - ) -> Response[Codespace]: - ... + ) -> Response[Codespace]: ... async def async_update_for_authenticated_user( self, @@ -3656,8 +3605,7 @@ def publish_for_authenticated_user( *, headers: Optional[Dict[str, str]] = None, data: UserCodespacesCodespaceNamePublishPostBodyType, - ) -> Response[CodespaceWithFullRepository]: - ... + ) -> Response[CodespaceWithFullRepository]: ... @overload def publish_for_authenticated_user( @@ -3668,8 +3616,7 @@ def publish_for_authenticated_user( headers: Optional[Dict[str, str]] = None, name: Missing[str] = UNSET, private: Missing[bool] = UNSET, - ) -> Response[CodespaceWithFullRepository]: - ... + ) -> Response[CodespaceWithFullRepository]: ... def publish_for_authenticated_user( self, @@ -3720,8 +3667,7 @@ async def async_publish_for_authenticated_user( *, headers: Optional[Dict[str, str]] = None, data: UserCodespacesCodespaceNamePublishPostBodyType, - ) -> Response[CodespaceWithFullRepository]: - ... + ) -> Response[CodespaceWithFullRepository]: ... @overload async def async_publish_for_authenticated_user( @@ -3732,8 +3678,7 @@ async def async_publish_for_authenticated_user( headers: Optional[Dict[str, str]] = None, name: Missing[str] = UNSET, private: Missing[bool] = UNSET, - ) -> Response[CodespaceWithFullRepository]: - ... + ) -> Response[CodespaceWithFullRepository]: ... async def async_publish_for_authenticated_user( self, diff --git a/githubkit/versions/ghec_v2022_11_28/rest/copilot.py b/githubkit/versions/ghec_v2022_11_28/rest/copilot.py index 8ce1906a1..1f649641a 100644 --- a/githubkit/versions/ghec_v2022_11_28/rest/copilot.py +++ b/githubkit/versions/ghec_v2022_11_28/rest/copilot.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref @@ -190,8 +189,7 @@ def add_copilot_seats_for_teams( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgCopilotBillingSelectedTeamsPostBodyType, - ) -> Response[OrgsOrgCopilotBillingSelectedTeamsPostResponse201]: - ... + ) -> Response[OrgsOrgCopilotBillingSelectedTeamsPostResponse201]: ... @overload def add_copilot_seats_for_teams( @@ -201,8 +199,7 @@ def add_copilot_seats_for_teams( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, selected_teams: List[str], - ) -> Response[OrgsOrgCopilotBillingSelectedTeamsPostResponse201]: - ... + ) -> Response[OrgsOrgCopilotBillingSelectedTeamsPostResponse201]: ... def add_copilot_seats_for_teams( self, @@ -252,8 +249,7 @@ async def async_add_copilot_seats_for_teams( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgCopilotBillingSelectedTeamsPostBodyType, - ) -> Response[OrgsOrgCopilotBillingSelectedTeamsPostResponse201]: - ... + ) -> Response[OrgsOrgCopilotBillingSelectedTeamsPostResponse201]: ... @overload async def async_add_copilot_seats_for_teams( @@ -263,8 +259,7 @@ async def async_add_copilot_seats_for_teams( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, selected_teams: List[str], - ) -> Response[OrgsOrgCopilotBillingSelectedTeamsPostResponse201]: - ... + ) -> Response[OrgsOrgCopilotBillingSelectedTeamsPostResponse201]: ... async def async_add_copilot_seats_for_teams( self, @@ -314,8 +309,7 @@ def cancel_copilot_seat_assignment_for_teams( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgCopilotBillingSelectedTeamsDeleteBodyType, - ) -> Response[OrgsOrgCopilotBillingSelectedTeamsDeleteResponse200]: - ... + ) -> Response[OrgsOrgCopilotBillingSelectedTeamsDeleteResponse200]: ... @overload def cancel_copilot_seat_assignment_for_teams( @@ -325,8 +319,7 @@ def cancel_copilot_seat_assignment_for_teams( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, selected_teams: List[str], - ) -> Response[OrgsOrgCopilotBillingSelectedTeamsDeleteResponse200]: - ... + ) -> Response[OrgsOrgCopilotBillingSelectedTeamsDeleteResponse200]: ... def cancel_copilot_seat_assignment_for_teams( self, @@ -376,8 +369,7 @@ async def async_cancel_copilot_seat_assignment_for_teams( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgCopilotBillingSelectedTeamsDeleteBodyType, - ) -> Response[OrgsOrgCopilotBillingSelectedTeamsDeleteResponse200]: - ... + ) -> Response[OrgsOrgCopilotBillingSelectedTeamsDeleteResponse200]: ... @overload async def async_cancel_copilot_seat_assignment_for_teams( @@ -387,8 +379,7 @@ async def async_cancel_copilot_seat_assignment_for_teams( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, selected_teams: List[str], - ) -> Response[OrgsOrgCopilotBillingSelectedTeamsDeleteResponse200]: - ... + ) -> Response[OrgsOrgCopilotBillingSelectedTeamsDeleteResponse200]: ... async def async_cancel_copilot_seat_assignment_for_teams( self, @@ -438,8 +429,7 @@ def add_copilot_seats_for_users( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgCopilotBillingSelectedUsersPostBodyType, - ) -> Response[OrgsOrgCopilotBillingSelectedUsersPostResponse201]: - ... + ) -> Response[OrgsOrgCopilotBillingSelectedUsersPostResponse201]: ... @overload def add_copilot_seats_for_users( @@ -449,8 +439,7 @@ def add_copilot_seats_for_users( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, selected_usernames: List[str], - ) -> Response[OrgsOrgCopilotBillingSelectedUsersPostResponse201]: - ... + ) -> Response[OrgsOrgCopilotBillingSelectedUsersPostResponse201]: ... def add_copilot_seats_for_users( self, @@ -500,8 +489,7 @@ async def async_add_copilot_seats_for_users( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgCopilotBillingSelectedUsersPostBodyType, - ) -> Response[OrgsOrgCopilotBillingSelectedUsersPostResponse201]: - ... + ) -> Response[OrgsOrgCopilotBillingSelectedUsersPostResponse201]: ... @overload async def async_add_copilot_seats_for_users( @@ -511,8 +499,7 @@ async def async_add_copilot_seats_for_users( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, selected_usernames: List[str], - ) -> Response[OrgsOrgCopilotBillingSelectedUsersPostResponse201]: - ... + ) -> Response[OrgsOrgCopilotBillingSelectedUsersPostResponse201]: ... async def async_add_copilot_seats_for_users( self, @@ -562,8 +549,7 @@ def cancel_copilot_seat_assignment_for_users( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgCopilotBillingSelectedUsersDeleteBodyType, - ) -> Response[OrgsOrgCopilotBillingSelectedUsersDeleteResponse200]: - ... + ) -> Response[OrgsOrgCopilotBillingSelectedUsersDeleteResponse200]: ... @overload def cancel_copilot_seat_assignment_for_users( @@ -573,8 +559,7 @@ def cancel_copilot_seat_assignment_for_users( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, selected_usernames: List[str], - ) -> Response[OrgsOrgCopilotBillingSelectedUsersDeleteResponse200]: - ... + ) -> Response[OrgsOrgCopilotBillingSelectedUsersDeleteResponse200]: ... def cancel_copilot_seat_assignment_for_users( self, @@ -624,8 +609,7 @@ async def async_cancel_copilot_seat_assignment_for_users( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgCopilotBillingSelectedUsersDeleteBodyType, - ) -> Response[OrgsOrgCopilotBillingSelectedUsersDeleteResponse200]: - ... + ) -> Response[OrgsOrgCopilotBillingSelectedUsersDeleteResponse200]: ... @overload async def async_cancel_copilot_seat_assignment_for_users( @@ -635,8 +619,7 @@ async def async_cancel_copilot_seat_assignment_for_users( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, selected_usernames: List[str], - ) -> Response[OrgsOrgCopilotBillingSelectedUsersDeleteResponse200]: - ... + ) -> Response[OrgsOrgCopilotBillingSelectedUsersDeleteResponse200]: ... async def async_cancel_copilot_seat_assignment_for_users( self, diff --git a/githubkit/versions/ghec_v2022_11_28/rest/dependabot.py b/githubkit/versions/ghec_v2022_11_28/rest/dependabot.py index d25b8f51c..86c7e7ab2 100644 --- a/githubkit/versions/ghec_v2022_11_28/rest/dependabot.py +++ b/githubkit/versions/ghec_v2022_11_28/rest/dependabot.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref @@ -455,8 +454,7 @@ def create_or_update_org_secret( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgDependabotSecretsSecretNamePutBodyType, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... @overload def create_or_update_org_secret( @@ -470,8 +468,7 @@ def create_or_update_org_secret( key_id: Missing[str] = UNSET, visibility: Literal["all", "private", "selected"], selected_repository_ids: Missing[List[str]] = UNSET, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... def create_or_update_org_secret( self, @@ -513,8 +510,7 @@ async def async_create_or_update_org_secret( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgDependabotSecretsSecretNamePutBodyType, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... @overload async def async_create_or_update_org_secret( @@ -528,8 +524,7 @@ async def async_create_or_update_org_secret( key_id: Missing[str] = UNSET, visibility: Literal["all", "private", "selected"], selected_repository_ids: Missing[List[str]] = UNSET, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... async def async_create_or_update_org_secret( self, @@ -673,8 +668,7 @@ def set_selected_repos_for_org_secret( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgDependabotSecretsSecretNameRepositoriesPutBodyType, - ) -> Response: - ... + ) -> Response: ... @overload def set_selected_repos_for_org_secret( @@ -685,8 +679,7 @@ def set_selected_repos_for_org_secret( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, selected_repository_ids: List[int], - ) -> Response: - ... + ) -> Response: ... def set_selected_repos_for_org_secret( self, @@ -731,8 +724,7 @@ async def async_set_selected_repos_for_org_secret( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgDependabotSecretsSecretNameRepositoriesPutBodyType, - ) -> Response: - ... + ) -> Response: ... @overload async def async_set_selected_repos_for_org_secret( @@ -743,8 +735,7 @@ async def async_set_selected_repos_for_org_secret( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, selected_repository_ids: List[int], - ) -> Response: - ... + ) -> Response: ... async def async_set_selected_repos_for_org_secret( self, @@ -1060,8 +1051,7 @@ def update_alert( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoDependabotAlertsAlertNumberPatchBodyType, - ) -> Response[DependabotAlert]: - ... + ) -> Response[DependabotAlert]: ... @overload def update_alert( @@ -1083,8 +1073,7 @@ def update_alert( ] ] = UNSET, dismissed_comment: Missing[str] = UNSET, - ) -> Response[DependabotAlert]: - ... + ) -> Response[DependabotAlert]: ... def update_alert( self, @@ -1142,8 +1131,7 @@ async def async_update_alert( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoDependabotAlertsAlertNumberPatchBodyType, - ) -> Response[DependabotAlert]: - ... + ) -> Response[DependabotAlert]: ... @overload async def async_update_alert( @@ -1165,8 +1153,7 @@ async def async_update_alert( ] ] = UNSET, dismissed_comment: Missing[str] = UNSET, - ) -> Response[DependabotAlert]: - ... + ) -> Response[DependabotAlert]: ... async def async_update_alert( self, @@ -1374,8 +1361,7 @@ def create_or_update_repo_secret( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoDependabotSecretsSecretNamePutBodyType, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... @overload def create_or_update_repo_secret( @@ -1388,8 +1374,7 @@ def create_or_update_repo_secret( headers: Optional[Dict[str, str]] = None, encrypted_value: Missing[str] = UNSET, key_id: Missing[str] = UNSET, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... def create_or_update_repo_secret( self, @@ -1438,8 +1423,7 @@ async def async_create_or_update_repo_secret( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoDependabotSecretsSecretNamePutBodyType, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... @overload async def async_create_or_update_repo_secret( @@ -1452,8 +1436,7 @@ async def async_create_or_update_repo_secret( headers: Optional[Dict[str, str]] = None, encrypted_value: Missing[str] = UNSET, key_id: Missing[str] = UNSET, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... async def async_create_or_update_repo_secret( self, diff --git a/githubkit/versions/ghec_v2022_11_28/rest/dependency_graph.py b/githubkit/versions/ghec_v2022_11_28/rest/dependency_graph.py index b770b96e9..7e7a2c896 100644 --- a/githubkit/versions/ghec_v2022_11_28/rest/dependency_graph.py +++ b/githubkit/versions/ghec_v2022_11_28/rest/dependency_graph.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref @@ -187,8 +186,7 @@ def create_repository_snapshot( *, headers: Optional[Dict[str, str]] = None, data: SnapshotType, - ) -> Response[ReposOwnerRepoDependencyGraphSnapshotsPostResponse201]: - ... + ) -> Response[ReposOwnerRepoDependencyGraphSnapshotsPostResponse201]: ... @overload def create_repository_snapshot( @@ -206,8 +204,7 @@ def create_repository_snapshot( metadata: Missing[MetadataType] = UNSET, manifests: Missing[SnapshotPropManifestsType] = UNSET, scanned: datetime, - ) -> Response[ReposOwnerRepoDependencyGraphSnapshotsPostResponse201]: - ... + ) -> Response[ReposOwnerRepoDependencyGraphSnapshotsPostResponse201]: ... def create_repository_snapshot( self, @@ -252,8 +249,7 @@ async def async_create_repository_snapshot( *, headers: Optional[Dict[str, str]] = None, data: SnapshotType, - ) -> Response[ReposOwnerRepoDependencyGraphSnapshotsPostResponse201]: - ... + ) -> Response[ReposOwnerRepoDependencyGraphSnapshotsPostResponse201]: ... @overload async def async_create_repository_snapshot( @@ -271,8 +267,7 @@ async def async_create_repository_snapshot( metadata: Missing[MetadataType] = UNSET, manifests: Missing[SnapshotPropManifestsType] = UNSET, scanned: datetime, - ) -> Response[ReposOwnerRepoDependencyGraphSnapshotsPostResponse201]: - ... + ) -> Response[ReposOwnerRepoDependencyGraphSnapshotsPostResponse201]: ... async def async_create_repository_snapshot( self, diff --git a/githubkit/versions/ghec_v2022_11_28/rest/emojis.py b/githubkit/versions/ghec_v2022_11_28/rest/emojis.py index 583467492..b6f85120c 100644 --- a/githubkit/versions/ghec_v2022_11_28/rest/emojis.py +++ b/githubkit/versions/ghec_v2022_11_28/rest/emojis.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref diff --git a/githubkit/versions/ghec_v2022_11_28/rest/enterprise_admin.py b/githubkit/versions/ghec_v2022_11_28/rest/enterprise_admin.py index acbd2504f..2528aeada 100644 --- a/githubkit/versions/ghec_v2022_11_28/rest/enterprise_admin.py +++ b/githubkit/versions/ghec_v2022_11_28/rest/enterprise_admin.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref @@ -139,8 +138,7 @@ def set_github_actions_permissions_enterprise( *, headers: Optional[Dict[str, str]] = None, data: EnterprisesEnterpriseActionsPermissionsPutBodyType, - ) -> Response: - ... + ) -> Response: ... @overload def set_github_actions_permissions_enterprise( @@ -151,8 +149,7 @@ def set_github_actions_permissions_enterprise( headers: Optional[Dict[str, str]] = None, enabled_organizations: Literal["all", "none", "selected"], allowed_actions: Missing[Literal["all", "local_only", "selected"]] = UNSET, - ) -> Response: - ... + ) -> Response: ... def set_github_actions_permissions_enterprise( self, @@ -193,8 +190,7 @@ async def async_set_github_actions_permissions_enterprise( *, headers: Optional[Dict[str, str]] = None, data: EnterprisesEnterpriseActionsPermissionsPutBodyType, - ) -> Response: - ... + ) -> Response: ... @overload async def async_set_github_actions_permissions_enterprise( @@ -205,8 +201,7 @@ async def async_set_github_actions_permissions_enterprise( headers: Optional[Dict[str, str]] = None, enabled_organizations: Literal["all", "none", "selected"], allowed_actions: Missing[Literal["all", "local_only", "selected"]] = UNSET, - ) -> Response: - ... + ) -> Response: ... async def async_set_github_actions_permissions_enterprise( self, @@ -309,8 +304,7 @@ def set_selected_organizations_enabled_github_actions_enterprise( *, headers: Optional[Dict[str, str]] = None, data: EnterprisesEnterpriseActionsPermissionsOrganizationsPutBodyType, - ) -> Response: - ... + ) -> Response: ... @overload def set_selected_organizations_enabled_github_actions_enterprise( @@ -320,8 +314,7 @@ def set_selected_organizations_enabled_github_actions_enterprise( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, selected_organization_ids: List[int], - ) -> Response: - ... + ) -> Response: ... def set_selected_organizations_enabled_github_actions_enterprise( self, @@ -364,8 +357,7 @@ async def async_set_selected_organizations_enabled_github_actions_enterprise( *, headers: Optional[Dict[str, str]] = None, data: EnterprisesEnterpriseActionsPermissionsOrganizationsPutBodyType, - ) -> Response: - ... + ) -> Response: ... @overload async def async_set_selected_organizations_enabled_github_actions_enterprise( @@ -375,8 +367,7 @@ async def async_set_selected_organizations_enabled_github_actions_enterprise( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, selected_organization_ids: List[int], - ) -> Response: - ... + ) -> Response: ... async def async_set_selected_organizations_enabled_github_actions_enterprise( self, @@ -537,8 +528,7 @@ def set_allowed_actions_enterprise( *, headers: Optional[Dict[str, str]] = None, data: SelectedActionsType, - ) -> Response: - ... + ) -> Response: ... @overload def set_allowed_actions_enterprise( @@ -550,8 +540,7 @@ def set_allowed_actions_enterprise( github_owned_allowed: Missing[bool] = UNSET, verified_allowed: Missing[bool] = UNSET, patterns_allowed: Missing[List[str]] = UNSET, - ) -> Response: - ... + ) -> Response: ... def set_allowed_actions_enterprise( self, @@ -590,8 +579,7 @@ async def async_set_allowed_actions_enterprise( *, headers: Optional[Dict[str, str]] = None, data: SelectedActionsType, - ) -> Response: - ... + ) -> Response: ... @overload async def async_set_allowed_actions_enterprise( @@ -603,8 +591,7 @@ async def async_set_allowed_actions_enterprise( github_owned_allowed: Missing[bool] = UNSET, verified_allowed: Missing[bool] = UNSET, patterns_allowed: Missing[List[str]] = UNSET, - ) -> Response: - ... + ) -> Response: ... async def async_set_allowed_actions_enterprise( self, @@ -705,8 +692,7 @@ def create_self_hosted_runner_group_for_enterprise( *, headers: Optional[Dict[str, str]] = None, data: EnterprisesEnterpriseActionsRunnerGroupsPostBodyType, - ) -> Response[RunnerGroupsEnterprise]: - ... + ) -> Response[RunnerGroupsEnterprise]: ... @overload def create_self_hosted_runner_group_for_enterprise( @@ -722,8 +708,7 @@ def create_self_hosted_runner_group_for_enterprise( allows_public_repositories: Missing[bool] = UNSET, restricted_to_workflows: Missing[bool] = UNSET, selected_workflows: Missing[List[str]] = UNSET, - ) -> Response[RunnerGroupsEnterprise]: - ... + ) -> Response[RunnerGroupsEnterprise]: ... def create_self_hosted_runner_group_for_enterprise( self, @@ -768,8 +753,7 @@ async def async_create_self_hosted_runner_group_for_enterprise( *, headers: Optional[Dict[str, str]] = None, data: EnterprisesEnterpriseActionsRunnerGroupsPostBodyType, - ) -> Response[RunnerGroupsEnterprise]: - ... + ) -> Response[RunnerGroupsEnterprise]: ... @overload async def async_create_self_hosted_runner_group_for_enterprise( @@ -785,8 +769,7 @@ async def async_create_self_hosted_runner_group_for_enterprise( allows_public_repositories: Missing[bool] = UNSET, restricted_to_workflows: Missing[bool] = UNSET, selected_workflows: Missing[List[str]] = UNSET, - ) -> Response[RunnerGroupsEnterprise]: - ... + ) -> Response[RunnerGroupsEnterprise]: ... async def async_create_self_hosted_runner_group_for_enterprise( self, @@ -916,8 +899,7 @@ def update_self_hosted_runner_group_for_enterprise( data: Missing[ EnterprisesEnterpriseActionsRunnerGroupsRunnerGroupIdPatchBodyType ] = UNSET, - ) -> Response[RunnerGroupsEnterprise]: - ... + ) -> Response[RunnerGroupsEnterprise]: ... @overload def update_self_hosted_runner_group_for_enterprise( @@ -932,8 +914,7 @@ def update_self_hosted_runner_group_for_enterprise( allows_public_repositories: Missing[bool] = UNSET, restricted_to_workflows: Missing[bool] = UNSET, selected_workflows: Missing[List[str]] = UNSET, - ) -> Response[RunnerGroupsEnterprise]: - ... + ) -> Response[RunnerGroupsEnterprise]: ... def update_self_hosted_runner_group_for_enterprise( self, @@ -984,8 +965,7 @@ async def async_update_self_hosted_runner_group_for_enterprise( data: Missing[ EnterprisesEnterpriseActionsRunnerGroupsRunnerGroupIdPatchBodyType ] = UNSET, - ) -> Response[RunnerGroupsEnterprise]: - ... + ) -> Response[RunnerGroupsEnterprise]: ... @overload async def async_update_self_hosted_runner_group_for_enterprise( @@ -1000,8 +980,7 @@ async def async_update_self_hosted_runner_group_for_enterprise( allows_public_repositories: Missing[bool] = UNSET, restricted_to_workflows: Missing[bool] = UNSET, selected_workflows: Missing[List[str]] = UNSET, - ) -> Response[RunnerGroupsEnterprise]: - ... + ) -> Response[RunnerGroupsEnterprise]: ... async def async_update_self_hosted_runner_group_for_enterprise( self, @@ -1118,8 +1097,7 @@ def set_org_access_to_self_hosted_runner_group_in_enterprise( *, headers: Optional[Dict[str, str]] = None, data: EnterprisesEnterpriseActionsRunnerGroupsRunnerGroupIdOrganizationsPutBodyType, - ) -> Response: - ... + ) -> Response: ... @overload def set_org_access_to_self_hosted_runner_group_in_enterprise( @@ -1130,8 +1108,7 @@ def set_org_access_to_self_hosted_runner_group_in_enterprise( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, selected_organization_ids: List[int], - ) -> Response: - ... + ) -> Response: ... def set_org_access_to_self_hosted_runner_group_in_enterprise( self, @@ -1179,8 +1156,7 @@ async def async_set_org_access_to_self_hosted_runner_group_in_enterprise( *, headers: Optional[Dict[str, str]] = None, data: EnterprisesEnterpriseActionsRunnerGroupsRunnerGroupIdOrganizationsPutBodyType, - ) -> Response: - ... + ) -> Response: ... @overload async def async_set_org_access_to_self_hosted_runner_group_in_enterprise( @@ -1191,8 +1167,7 @@ async def async_set_org_access_to_self_hosted_runner_group_in_enterprise( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, selected_organization_ids: List[int], - ) -> Response: - ... + ) -> Response: ... async def async_set_org_access_to_self_hosted_runner_group_in_enterprise( self, @@ -1392,8 +1367,7 @@ def set_self_hosted_runners_in_group_for_enterprise( *, headers: Optional[Dict[str, str]] = None, data: EnterprisesEnterpriseActionsRunnerGroupsRunnerGroupIdRunnersPutBodyType, - ) -> Response: - ... + ) -> Response: ... @overload def set_self_hosted_runners_in_group_for_enterprise( @@ -1404,8 +1378,7 @@ def set_self_hosted_runners_in_group_for_enterprise( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, runners: List[int], - ) -> Response: - ... + ) -> Response: ... def set_self_hosted_runners_in_group_for_enterprise( self, @@ -1454,8 +1427,7 @@ async def async_set_self_hosted_runners_in_group_for_enterprise( *, headers: Optional[Dict[str, str]] = None, data: EnterprisesEnterpriseActionsRunnerGroupsRunnerGroupIdRunnersPutBodyType, - ) -> Response: - ... + ) -> Response: ... @overload async def async_set_self_hosted_runners_in_group_for_enterprise( @@ -1466,8 +1438,7 @@ async def async_set_self_hosted_runners_in_group_for_enterprise( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, runners: List[int], - ) -> Response: - ... + ) -> Response: ... async def async_set_self_hosted_runners_in_group_for_enterprise( self, @@ -1926,8 +1897,7 @@ def set_custom_labels_for_self_hosted_runner_for_enterprise( *, headers: Optional[Dict[str, str]] = None, data: EnterprisesEnterpriseActionsRunnersRunnerIdLabelsPutBodyType, - ) -> Response[EnterprisesEnterpriseActionsRunnersRunnerIdLabelsGetResponse200]: - ... + ) -> Response[EnterprisesEnterpriseActionsRunnersRunnerIdLabelsGetResponse200]: ... @overload def set_custom_labels_for_self_hosted_runner_for_enterprise( @@ -1938,8 +1908,7 @@ def set_custom_labels_for_self_hosted_runner_for_enterprise( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, labels: List[str], - ) -> Response[EnterprisesEnterpriseActionsRunnersRunnerIdLabelsGetResponse200]: - ... + ) -> Response[EnterprisesEnterpriseActionsRunnersRunnerIdLabelsGetResponse200]: ... def set_custom_labels_for_self_hosted_runner_for_enterprise( self, @@ -1994,8 +1963,7 @@ async def async_set_custom_labels_for_self_hosted_runner_for_enterprise( *, headers: Optional[Dict[str, str]] = None, data: EnterprisesEnterpriseActionsRunnersRunnerIdLabelsPutBodyType, - ) -> Response[EnterprisesEnterpriseActionsRunnersRunnerIdLabelsGetResponse200]: - ... + ) -> Response[EnterprisesEnterpriseActionsRunnersRunnerIdLabelsGetResponse200]: ... @overload async def async_set_custom_labels_for_self_hosted_runner_for_enterprise( @@ -2006,8 +1974,7 @@ async def async_set_custom_labels_for_self_hosted_runner_for_enterprise( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, labels: List[str], - ) -> Response[EnterprisesEnterpriseActionsRunnersRunnerIdLabelsGetResponse200]: - ... + ) -> Response[EnterprisesEnterpriseActionsRunnersRunnerIdLabelsGetResponse200]: ... async def async_set_custom_labels_for_self_hosted_runner_for_enterprise( self, @@ -2062,8 +2029,7 @@ def add_custom_labels_to_self_hosted_runner_for_enterprise( *, headers: Optional[Dict[str, str]] = None, data: EnterprisesEnterpriseActionsRunnersRunnerIdLabelsPostBodyType, - ) -> Response[EnterprisesEnterpriseActionsRunnersRunnerIdLabelsGetResponse200]: - ... + ) -> Response[EnterprisesEnterpriseActionsRunnersRunnerIdLabelsGetResponse200]: ... @overload def add_custom_labels_to_self_hosted_runner_for_enterprise( @@ -2074,8 +2040,7 @@ def add_custom_labels_to_self_hosted_runner_for_enterprise( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, labels: List[str], - ) -> Response[EnterprisesEnterpriseActionsRunnersRunnerIdLabelsGetResponse200]: - ... + ) -> Response[EnterprisesEnterpriseActionsRunnersRunnerIdLabelsGetResponse200]: ... def add_custom_labels_to_self_hosted_runner_for_enterprise( self, @@ -2130,8 +2095,7 @@ async def async_add_custom_labels_to_self_hosted_runner_for_enterprise( *, headers: Optional[Dict[str, str]] = None, data: EnterprisesEnterpriseActionsRunnersRunnerIdLabelsPostBodyType, - ) -> Response[EnterprisesEnterpriseActionsRunnersRunnerIdLabelsGetResponse200]: - ... + ) -> Response[EnterprisesEnterpriseActionsRunnersRunnerIdLabelsGetResponse200]: ... @overload async def async_add_custom_labels_to_self_hosted_runner_for_enterprise( @@ -2142,8 +2106,7 @@ async def async_add_custom_labels_to_self_hosted_runner_for_enterprise( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, labels: List[str], - ) -> Response[EnterprisesEnterpriseActionsRunnersRunnerIdLabelsGetResponse200]: - ... + ) -> Response[EnterprisesEnterpriseActionsRunnersRunnerIdLabelsGetResponse200]: ... async def async_add_custom_labels_to_self_hosted_runner_for_enterprise( self, @@ -2397,8 +2360,7 @@ def set_announcement_banner_for_enterprise( *, headers: Optional[Dict[str, str]] = None, data: AnnouncementType, - ) -> Response[AnnouncementBanner]: - ... + ) -> Response[AnnouncementBanner]: ... @overload def set_announcement_banner_for_enterprise( @@ -2409,8 +2371,7 @@ def set_announcement_banner_for_enterprise( headers: Optional[Dict[str, str]] = None, announcement: Union[str, None], expires_at: Missing[Union[datetime, None]] = UNSET, - ) -> Response[AnnouncementBanner]: - ... + ) -> Response[AnnouncementBanner]: ... def set_announcement_banner_for_enterprise( self, @@ -2450,8 +2411,7 @@ async def async_set_announcement_banner_for_enterprise( *, headers: Optional[Dict[str, str]] = None, data: AnnouncementType, - ) -> Response[AnnouncementBanner]: - ... + ) -> Response[AnnouncementBanner]: ... @overload async def async_set_announcement_banner_for_enterprise( @@ -2462,8 +2422,7 @@ async def async_set_announcement_banner_for_enterprise( headers: Optional[Dict[str, str]] = None, announcement: Union[str, None], expires_at: Missing[Union[datetime, None]] = UNSET, - ) -> Response[AnnouncementBanner]: - ... + ) -> Response[AnnouncementBanner]: ... async def async_set_announcement_banner_for_enterprise( self, @@ -2635,8 +2594,7 @@ def patch_security_analysis_settings_for_enterprise( data: Missing[ EnterprisesEnterpriseCodeSecurityAndAnalysisPatchBodyType ] = UNSET, - ) -> Response: - ... + ) -> Response: ... @overload def patch_security_analysis_settings_for_enterprise( @@ -2654,8 +2612,7 @@ def patch_security_analysis_settings_for_enterprise( ] = UNSET, secret_scanning_push_protection_custom_link: Missing[Union[str, None]] = UNSET, secret_scanning_validity_checks_enabled: Missing[Union[bool, None]] = UNSET, - ) -> Response: - ... + ) -> Response: ... def patch_security_analysis_settings_for_enterprise( self, @@ -2706,8 +2663,7 @@ async def async_patch_security_analysis_settings_for_enterprise( data: Missing[ EnterprisesEnterpriseCodeSecurityAndAnalysisPatchBodyType ] = UNSET, - ) -> Response: - ... + ) -> Response: ... @overload async def async_patch_security_analysis_settings_for_enterprise( @@ -2725,8 +2681,7 @@ async def async_patch_security_analysis_settings_for_enterprise( ] = UNSET, secret_scanning_push_protection_custom_link: Missing[Union[str, None]] = UNSET, secret_scanning_validity_checks_enabled: Missing[Union[bool, None]] = UNSET, - ) -> Response: - ... + ) -> Response: ... async def async_patch_security_analysis_settings_for_enterprise( self, @@ -3013,8 +2968,7 @@ def provision_enterprise_group( *, headers: Optional[Dict[str, str]] = None, data: GroupType, - ) -> Response[ScimEnterpriseGroupResponse]: - ... + ) -> Response[ScimEnterpriseGroupResponse]: ... @overload def provision_enterprise_group( @@ -3027,8 +2981,7 @@ def provision_enterprise_group( external_id: str, display_name: str, members: List[GroupPropMembersItemsType], - ) -> Response[ScimEnterpriseGroupResponse]: - ... + ) -> Response[ScimEnterpriseGroupResponse]: ... def provision_enterprise_group( self, @@ -3073,8 +3026,7 @@ async def async_provision_enterprise_group( *, headers: Optional[Dict[str, str]] = None, data: GroupType, - ) -> Response[ScimEnterpriseGroupResponse]: - ... + ) -> Response[ScimEnterpriseGroupResponse]: ... @overload async def async_provision_enterprise_group( @@ -3087,8 +3039,7 @@ async def async_provision_enterprise_group( external_id: str, display_name: str, members: List[GroupPropMembersItemsType], - ) -> Response[ScimEnterpriseGroupResponse]: - ... + ) -> Response[ScimEnterpriseGroupResponse]: ... async def async_provision_enterprise_group( self, @@ -3202,8 +3153,7 @@ def set_information_for_provisioned_enterprise_group( *, headers: Optional[Dict[str, str]] = None, data: GroupType, - ) -> Response[ScimEnterpriseGroupResponse]: - ... + ) -> Response[ScimEnterpriseGroupResponse]: ... @overload def set_information_for_provisioned_enterprise_group( @@ -3217,8 +3167,7 @@ def set_information_for_provisioned_enterprise_group( external_id: str, display_name: str, members: List[GroupPropMembersItemsType], - ) -> Response[ScimEnterpriseGroupResponse]: - ... + ) -> Response[ScimEnterpriseGroupResponse]: ... def set_information_for_provisioned_enterprise_group( self, @@ -3266,8 +3215,7 @@ async def async_set_information_for_provisioned_enterprise_group( *, headers: Optional[Dict[str, str]] = None, data: GroupType, - ) -> Response[ScimEnterpriseGroupResponse]: - ... + ) -> Response[ScimEnterpriseGroupResponse]: ... @overload async def async_set_information_for_provisioned_enterprise_group( @@ -3281,8 +3229,7 @@ async def async_set_information_for_provisioned_enterprise_group( external_id: str, display_name: str, members: List[GroupPropMembersItemsType], - ) -> Response[ScimEnterpriseGroupResponse]: - ... + ) -> Response[ScimEnterpriseGroupResponse]: ... async def async_set_information_for_provisioned_enterprise_group( self, @@ -3384,8 +3331,7 @@ def update_attribute_for_enterprise_group( *, headers: Optional[Dict[str, str]] = None, data: PatchSchemaType, - ) -> Response: - ... + ) -> Response: ... @overload def update_attribute_for_enterprise_group( @@ -3397,8 +3343,7 @@ def update_attribute_for_enterprise_group( headers: Optional[Dict[str, str]] = None, operations: List[PatchSchemaPropOperationsItemsType], schemas: List[Literal["urn:ietf:params:scim:api:messages:2.0:PatchOp"]], - ) -> Response: - ... + ) -> Response: ... def update_attribute_for_enterprise_group( self, @@ -3445,8 +3390,7 @@ async def async_update_attribute_for_enterprise_group( *, headers: Optional[Dict[str, str]] = None, data: PatchSchemaType, - ) -> Response: - ... + ) -> Response: ... @overload async def async_update_attribute_for_enterprise_group( @@ -3458,8 +3402,7 @@ async def async_update_attribute_for_enterprise_group( headers: Optional[Dict[str, str]] = None, operations: List[PatchSchemaPropOperationsItemsType], schemas: List[Literal["urn:ietf:params:scim:api:messages:2.0:PatchOp"]], - ) -> Response: - ... + ) -> Response: ... async def async_update_attribute_for_enterprise_group( self, @@ -3577,8 +3520,7 @@ def provision_enterprise_user( *, headers: Optional[Dict[str, str]] = None, data: UserType, - ) -> Response[ScimEnterpriseUserResponse]: - ... + ) -> Response[ScimEnterpriseUserResponse]: ... @overload def provision_enterprise_user( @@ -3595,8 +3537,7 @@ def provision_enterprise_user( display_name: str, emails: List[UserEmailsItemsType], roles: Missing[List[UserRoleItemsType]] = UNSET, - ) -> Response[ScimEnterpriseUserResponse]: - ... + ) -> Response[ScimEnterpriseUserResponse]: ... def provision_enterprise_user( self, @@ -3641,8 +3582,7 @@ async def async_provision_enterprise_user( *, headers: Optional[Dict[str, str]] = None, data: UserType, - ) -> Response[ScimEnterpriseUserResponse]: - ... + ) -> Response[ScimEnterpriseUserResponse]: ... @overload async def async_provision_enterprise_user( @@ -3659,8 +3599,7 @@ async def async_provision_enterprise_user( display_name: str, emails: List[UserEmailsItemsType], roles: Missing[List[UserRoleItemsType]] = UNSET, - ) -> Response[ScimEnterpriseUserResponse]: - ... + ) -> Response[ScimEnterpriseUserResponse]: ... async def async_provision_enterprise_user( self, @@ -3762,8 +3701,7 @@ def set_information_for_provisioned_enterprise_user( *, headers: Optional[Dict[str, str]] = None, data: UserType, - ) -> Response[ScimEnterpriseUserResponse]: - ... + ) -> Response[ScimEnterpriseUserResponse]: ... @overload def set_information_for_provisioned_enterprise_user( @@ -3781,8 +3719,7 @@ def set_information_for_provisioned_enterprise_user( display_name: str, emails: List[UserEmailsItemsType], roles: Missing[List[UserRoleItemsType]] = UNSET, - ) -> Response[ScimEnterpriseUserResponse]: - ... + ) -> Response[ScimEnterpriseUserResponse]: ... def set_information_for_provisioned_enterprise_user( self, @@ -3830,8 +3767,7 @@ async def async_set_information_for_provisioned_enterprise_user( *, headers: Optional[Dict[str, str]] = None, data: UserType, - ) -> Response[ScimEnterpriseUserResponse]: - ... + ) -> Response[ScimEnterpriseUserResponse]: ... @overload async def async_set_information_for_provisioned_enterprise_user( @@ -3849,8 +3785,7 @@ async def async_set_information_for_provisioned_enterprise_user( display_name: str, emails: List[UserEmailsItemsType], roles: Missing[List[UserRoleItemsType]] = UNSET, - ) -> Response[ScimEnterpriseUserResponse]: - ... + ) -> Response[ScimEnterpriseUserResponse]: ... async def async_set_information_for_provisioned_enterprise_user( self, @@ -3952,8 +3887,7 @@ def update_attribute_for_enterprise_user( *, headers: Optional[Dict[str, str]] = None, data: PatchSchemaType, - ) -> Response[ScimEnterpriseUserResponse]: - ... + ) -> Response[ScimEnterpriseUserResponse]: ... @overload def update_attribute_for_enterprise_user( @@ -3965,8 +3899,7 @@ def update_attribute_for_enterprise_user( headers: Optional[Dict[str, str]] = None, operations: List[PatchSchemaPropOperationsItemsType], schemas: List[Literal["urn:ietf:params:scim:api:messages:2.0:PatchOp"]], - ) -> Response[ScimEnterpriseUserResponse]: - ... + ) -> Response[ScimEnterpriseUserResponse]: ... def update_attribute_for_enterprise_user( self, @@ -4019,8 +3952,7 @@ async def async_update_attribute_for_enterprise_user( *, headers: Optional[Dict[str, str]] = None, data: PatchSchemaType, - ) -> Response[ScimEnterpriseUserResponse]: - ... + ) -> Response[ScimEnterpriseUserResponse]: ... @overload async def async_update_attribute_for_enterprise_user( @@ -4032,8 +3964,7 @@ async def async_update_attribute_for_enterprise_user( headers: Optional[Dict[str, str]] = None, operations: List[PatchSchemaPropOperationsItemsType], schemas: List[Literal["urn:ietf:params:scim:api:messages:2.0:PatchOp"]], - ) -> Response[ScimEnterpriseUserResponse]: - ... + ) -> Response[ScimEnterpriseUserResponse]: ... async def async_update_attribute_for_enterprise_user( self, diff --git a/githubkit/versions/ghec_v2022_11_28/rest/gists.py b/githubkit/versions/ghec_v2022_11_28/rest/gists.py index 7f9e2e1eb..50a0e6ef0 100644 --- a/githubkit/versions/ghec_v2022_11_28/rest/gists.py +++ b/githubkit/versions/ghec_v2022_11_28/rest/gists.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref @@ -127,8 +126,7 @@ async def async_list( @overload def create( self, *, headers: Optional[Dict[str, str]] = None, data: GistsPostBodyType - ) -> Response[GistSimple]: - ... + ) -> Response[GistSimple]: ... @overload def create( @@ -139,8 +137,7 @@ def create( description: Missing[str] = UNSET, files: GistsPostBodyPropFilesType, public: Missing[Union[bool, Literal["true", "false"]]] = UNSET, - ) -> Response[GistSimple]: - ... + ) -> Response[GistSimple]: ... def create( self, @@ -180,8 +177,7 @@ def create( @overload async def async_create( self, *, headers: Optional[Dict[str, str]] = None, data: GistsPostBodyType - ) -> Response[GistSimple]: - ... + ) -> Response[GistSimple]: ... @overload async def async_create( @@ -192,8 +188,7 @@ async def async_create( description: Missing[str] = UNSET, files: GistsPostBodyPropFilesType, public: Missing[Union[bool, Literal["true", "false"]]] = UNSET, - ) -> Response[GistSimple]: - ... + ) -> Response[GistSimple]: ... async def async_create( self, @@ -479,8 +474,7 @@ def update( *, headers: Optional[Dict[str, str]] = None, data: Union[GistsGistIdPatchBodyType, None], - ) -> Response[GistSimple]: - ... + ) -> Response[GistSimple]: ... @overload def update( @@ -491,8 +485,7 @@ def update( headers: Optional[Dict[str, str]] = None, description: Missing[str] = UNSET, files: Missing[GistsGistIdPatchBodyPropFilesType] = UNSET, - ) -> Response[GistSimple]: - ... + ) -> Response[GistSimple]: ... def update( self, @@ -543,8 +536,7 @@ async def async_update( *, headers: Optional[Dict[str, str]] = None, data: Union[GistsGistIdPatchBodyType, None], - ) -> Response[GistSimple]: - ... + ) -> Response[GistSimple]: ... @overload async def async_update( @@ -555,8 +547,7 @@ async def async_update( headers: Optional[Dict[str, str]] = None, description: Missing[str] = UNSET, files: Missing[GistsGistIdPatchBodyPropFilesType] = UNSET, - ) -> Response[GistSimple]: - ... + ) -> Response[GistSimple]: ... async def async_update( self, @@ -677,8 +668,7 @@ def create_comment( *, headers: Optional[Dict[str, str]] = None, data: GistsGistIdCommentsPostBodyType, - ) -> Response[GistComment]: - ... + ) -> Response[GistComment]: ... @overload def create_comment( @@ -688,8 +678,7 @@ def create_comment( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, body: str, - ) -> Response[GistComment]: - ... + ) -> Response[GistComment]: ... def create_comment( self, @@ -733,8 +722,7 @@ async def async_create_comment( *, headers: Optional[Dict[str, str]] = None, data: GistsGistIdCommentsPostBodyType, - ) -> Response[GistComment]: - ... + ) -> Response[GistComment]: ... @overload async def async_create_comment( @@ -744,8 +732,7 @@ async def async_create_comment( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, body: str, - ) -> Response[GistComment]: - ... + ) -> Response[GistComment]: ... async def async_create_comment( self, @@ -892,8 +879,7 @@ def update_comment( *, headers: Optional[Dict[str, str]] = None, data: GistsGistIdCommentsCommentIdPatchBodyType, - ) -> Response[GistComment]: - ... + ) -> Response[GistComment]: ... @overload def update_comment( @@ -904,8 +890,7 @@ def update_comment( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, body: str, - ) -> Response[GistComment]: - ... + ) -> Response[GistComment]: ... def update_comment( self, @@ -954,8 +939,7 @@ async def async_update_comment( *, headers: Optional[Dict[str, str]] = None, data: GistsGistIdCommentsCommentIdPatchBodyType, - ) -> Response[GistComment]: - ... + ) -> Response[GistComment]: ... @overload async def async_update_comment( @@ -966,8 +950,7 @@ async def async_update_comment( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, body: str, - ) -> Response[GistComment]: - ... + ) -> Response[GistComment]: ... async def async_update_comment( self, diff --git a/githubkit/versions/ghec_v2022_11_28/rest/git.py b/githubkit/versions/ghec_v2022_11_28/rest/git.py index 6624109ae..33706d4ec 100644 --- a/githubkit/versions/ghec_v2022_11_28/rest/git.py +++ b/githubkit/versions/ghec_v2022_11_28/rest/git.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref @@ -65,8 +64,7 @@ def create_blob( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoGitBlobsPostBodyType, - ) -> Response[ShortBlob]: - ... + ) -> Response[ShortBlob]: ... @overload def create_blob( @@ -78,8 +76,7 @@ def create_blob( headers: Optional[Dict[str, str]] = None, content: str, encoding: Missing[str] = UNSET, - ) -> Response[ShortBlob]: - ... + ) -> Response[ShortBlob]: ... def create_blob( self, @@ -132,8 +129,7 @@ async def async_create_blob( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoGitBlobsPostBodyType, - ) -> Response[ShortBlob]: - ... + ) -> Response[ShortBlob]: ... @overload async def async_create_blob( @@ -145,8 +141,7 @@ async def async_create_blob( headers: Optional[Dict[str, str]] = None, content: str, encoding: Missing[str] = UNSET, - ) -> Response[ShortBlob]: - ... + ) -> Response[ShortBlob]: ... async def async_create_blob( self, @@ -257,8 +252,7 @@ def create_commit( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoGitCommitsPostBodyType, - ) -> Response[GitCommit]: - ... + ) -> Response[GitCommit]: ... @overload def create_commit( @@ -274,8 +268,7 @@ def create_commit( author: Missing[ReposOwnerRepoGitCommitsPostBodyPropAuthorType] = UNSET, committer: Missing[ReposOwnerRepoGitCommitsPostBodyPropCommitterType] = UNSET, signature: Missing[str] = UNSET, - ) -> Response[GitCommit]: - ... + ) -> Response[GitCommit]: ... def create_commit( self, @@ -327,8 +320,7 @@ async def async_create_commit( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoGitCommitsPostBodyType, - ) -> Response[GitCommit]: - ... + ) -> Response[GitCommit]: ... @overload async def async_create_commit( @@ -344,8 +336,7 @@ async def async_create_commit( author: Missing[ReposOwnerRepoGitCommitsPostBodyPropAuthorType] = UNSET, committer: Missing[ReposOwnerRepoGitCommitsPostBodyPropCommitterType] = UNSET, signature: Missing[str] = UNSET, - ) -> Response[GitCommit]: - ... + ) -> Response[GitCommit]: ... async def async_create_commit( self, @@ -561,8 +552,7 @@ def create_ref( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoGitRefsPostBodyType, - ) -> Response[GitRef]: - ... + ) -> Response[GitRef]: ... @overload def create_ref( @@ -574,8 +564,7 @@ def create_ref( headers: Optional[Dict[str, str]] = None, ref: str, sha: str, - ) -> Response[GitRef]: - ... + ) -> Response[GitRef]: ... def create_ref( self, @@ -626,8 +615,7 @@ async def async_create_ref( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoGitRefsPostBodyType, - ) -> Response[GitRef]: - ... + ) -> Response[GitRef]: ... @overload async def async_create_ref( @@ -639,8 +627,7 @@ async def async_create_ref( headers: Optional[Dict[str, str]] = None, ref: str, sha: str, - ) -> Response[GitRef]: - ... + ) -> Response[GitRef]: ... async def async_create_ref( self, @@ -744,8 +731,7 @@ def update_ref( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoGitRefsRefPatchBodyType, - ) -> Response[GitRef]: - ... + ) -> Response[GitRef]: ... @overload def update_ref( @@ -758,8 +744,7 @@ def update_ref( headers: Optional[Dict[str, str]] = None, sha: str, force: Missing[bool] = UNSET, - ) -> Response[GitRef]: - ... + ) -> Response[GitRef]: ... def update_ref( self, @@ -812,8 +797,7 @@ async def async_update_ref( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoGitRefsRefPatchBodyType, - ) -> Response[GitRef]: - ... + ) -> Response[GitRef]: ... @overload async def async_update_ref( @@ -826,8 +810,7 @@ async def async_update_ref( headers: Optional[Dict[str, str]] = None, sha: str, force: Missing[bool] = UNSET, - ) -> Response[GitRef]: - ... + ) -> Response[GitRef]: ... async def async_update_ref( self, @@ -879,8 +862,7 @@ def create_tag( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoGitTagsPostBodyType, - ) -> Response[GitTag]: - ... + ) -> Response[GitTag]: ... @overload def create_tag( @@ -895,8 +877,7 @@ def create_tag( object_: str, type: Literal["commit", "tree", "blob"], tagger: Missing[ReposOwnerRepoGitTagsPostBodyPropTaggerType] = UNSET, - ) -> Response[GitTag]: - ... + ) -> Response[GitTag]: ... def create_tag( self, @@ -947,8 +928,7 @@ async def async_create_tag( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoGitTagsPostBodyType, - ) -> Response[GitTag]: - ... + ) -> Response[GitTag]: ... @overload async def async_create_tag( @@ -963,8 +943,7 @@ async def async_create_tag( object_: str, type: Literal["commit", "tree", "blob"], tagger: Missing[ReposOwnerRepoGitTagsPostBodyPropTaggerType] = UNSET, - ) -> Response[GitTag]: - ... + ) -> Response[GitTag]: ... async def async_create_tag( self, @@ -1069,8 +1048,7 @@ def create_tree( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoGitTreesPostBodyType, - ) -> Response[GitTree]: - ... + ) -> Response[GitTree]: ... @overload def create_tree( @@ -1082,8 +1060,7 @@ def create_tree( headers: Optional[Dict[str, str]] = None, tree: List[ReposOwnerRepoGitTreesPostBodyPropTreeItemsType], base_tree: Missing[str] = UNSET, - ) -> Response[GitTree]: - ... + ) -> Response[GitTree]: ... def create_tree( self, @@ -1136,8 +1113,7 @@ async def async_create_tree( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoGitTreesPostBodyType, - ) -> Response[GitTree]: - ... + ) -> Response[GitTree]: ... @overload async def async_create_tree( @@ -1149,8 +1125,7 @@ async def async_create_tree( headers: Optional[Dict[str, str]] = None, tree: List[ReposOwnerRepoGitTreesPostBodyPropTreeItemsType], base_tree: Missing[str] = UNSET, - ) -> Response[GitTree]: - ... + ) -> Response[GitTree]: ... async def async_create_tree( self, diff --git a/githubkit/versions/ghec_v2022_11_28/rest/gitignore.py b/githubkit/versions/ghec_v2022_11_28/rest/gitignore.py index 8252ed02e..951342351 100644 --- a/githubkit/versions/ghec_v2022_11_28/rest/gitignore.py +++ b/githubkit/versions/ghec_v2022_11_28/rest/gitignore.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref diff --git a/githubkit/versions/ghec_v2022_11_28/rest/interactions.py b/githubkit/versions/ghec_v2022_11_28/rest/interactions.py index ed29f21f7..bd99b9e3b 100644 --- a/githubkit/versions/ghec_v2022_11_28/rest/interactions.py +++ b/githubkit/versions/ghec_v2022_11_28/rest/interactions.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref @@ -118,8 +117,7 @@ def set_restrictions_for_org( *, headers: Optional[Dict[str, str]] = None, data: InteractionLimitType, - ) -> Response[InteractionLimitResponse]: - ... + ) -> Response[InteractionLimitResponse]: ... @overload def set_restrictions_for_org( @@ -132,8 +130,7 @@ def set_restrictions_for_org( expiry: Missing[ Literal["one_day", "three_days", "one_week", "one_month", "six_months"] ] = UNSET, - ) -> Response[InteractionLimitResponse]: - ... + ) -> Response[InteractionLimitResponse]: ... def set_restrictions_for_org( self, @@ -176,8 +173,7 @@ async def async_set_restrictions_for_org( *, headers: Optional[Dict[str, str]] = None, data: InteractionLimitType, - ) -> Response[InteractionLimitResponse]: - ... + ) -> Response[InteractionLimitResponse]: ... @overload async def async_set_restrictions_for_org( @@ -190,8 +186,7 @@ async def async_set_restrictions_for_org( expiry: Missing[ Literal["one_day", "three_days", "one_week", "one_month", "six_months"] ] = UNSET, - ) -> Response[InteractionLimitResponse]: - ... + ) -> Response[InteractionLimitResponse]: ... async def async_set_restrictions_for_org( self, @@ -341,8 +336,7 @@ def set_restrictions_for_repo( *, headers: Optional[Dict[str, str]] = None, data: InteractionLimitType, - ) -> Response[InteractionLimitResponse]: - ... + ) -> Response[InteractionLimitResponse]: ... @overload def set_restrictions_for_repo( @@ -356,8 +350,7 @@ def set_restrictions_for_repo( expiry: Missing[ Literal["one_day", "three_days", "one_week", "one_month", "six_months"] ] = UNSET, - ) -> Response[InteractionLimitResponse]: - ... + ) -> Response[InteractionLimitResponse]: ... def set_restrictions_for_repo( self, @@ -400,8 +393,7 @@ async def async_set_restrictions_for_repo( *, headers: Optional[Dict[str, str]] = None, data: InteractionLimitType, - ) -> Response[InteractionLimitResponse]: - ... + ) -> Response[InteractionLimitResponse]: ... @overload async def async_set_restrictions_for_repo( @@ -415,8 +407,7 @@ async def async_set_restrictions_for_repo( expiry: Missing[ Literal["one_day", "three_days", "one_week", "one_month", "six_months"] ] = UNSET, - ) -> Response[InteractionLimitResponse]: - ... + ) -> Response[InteractionLimitResponse]: ... async def async_set_restrictions_for_repo( self, @@ -552,8 +543,7 @@ async def async_get_restrictions_for_authenticated_user( @overload def set_restrictions_for_authenticated_user( self, *, headers: Optional[Dict[str, str]] = None, data: InteractionLimitType - ) -> Response[InteractionLimitResponse]: - ... + ) -> Response[InteractionLimitResponse]: ... @overload def set_restrictions_for_authenticated_user( @@ -565,8 +555,7 @@ def set_restrictions_for_authenticated_user( expiry: Missing[ Literal["one_day", "three_days", "one_week", "one_month", "six_months"] ] = UNSET, - ) -> Response[InteractionLimitResponse]: - ... + ) -> Response[InteractionLimitResponse]: ... def set_restrictions_for_authenticated_user( self, @@ -604,8 +593,7 @@ def set_restrictions_for_authenticated_user( @overload async def async_set_restrictions_for_authenticated_user( self, *, headers: Optional[Dict[str, str]] = None, data: InteractionLimitType - ) -> Response[InteractionLimitResponse]: - ... + ) -> Response[InteractionLimitResponse]: ... @overload async def async_set_restrictions_for_authenticated_user( @@ -617,8 +605,7 @@ async def async_set_restrictions_for_authenticated_user( expiry: Missing[ Literal["one_day", "three_days", "one_week", "one_month", "six_months"] ] = UNSET, - ) -> Response[InteractionLimitResponse]: - ... + ) -> Response[InteractionLimitResponse]: ... async def async_set_restrictions_for_authenticated_user( self, diff --git a/githubkit/versions/ghec_v2022_11_28/rest/issues.py b/githubkit/versions/ghec_v2022_11_28/rest/issues.py index b52e07454..120aa52e0 100644 --- a/githubkit/versions/ghec_v2022_11_28/rest/issues.py +++ b/githubkit/versions/ghec_v2022_11_28/rest/issues.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref @@ -545,8 +544,7 @@ def create( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoIssuesPostBodyType, - ) -> Response[Issue]: - ... + ) -> Response[Issue]: ... @overload def create( @@ -564,8 +562,7 @@ def create( List[Union[str, ReposOwnerRepoIssuesPostBodyPropLabelsItemsOneof1Type]] ] = UNSET, assignees: Missing[List[str]] = UNSET, - ) -> Response[Issue]: - ... + ) -> Response[Issue]: ... def create( self, @@ -621,8 +618,7 @@ async def async_create( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoIssuesPostBodyType, - ) -> Response[Issue]: - ... + ) -> Response[Issue]: ... @overload async def async_create( @@ -640,8 +636,7 @@ async def async_create( List[Union[str, ReposOwnerRepoIssuesPostBodyPropLabelsItemsOneof1Type]] ] = UNSET, assignees: Missing[List[str]] = UNSET, - ) -> Response[Issue]: - ... + ) -> Response[Issue]: ... async def async_create( self, @@ -874,8 +869,7 @@ def update_comment( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoIssuesCommentsCommentIdPatchBodyType, - ) -> Response[IssueComment]: - ... + ) -> Response[IssueComment]: ... @overload def update_comment( @@ -887,8 +881,7 @@ def update_comment( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, body: str, - ) -> Response[IssueComment]: - ... + ) -> Response[IssueComment]: ... def update_comment( self, @@ -941,8 +934,7 @@ async def async_update_comment( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoIssuesCommentsCommentIdPatchBodyType, - ) -> Response[IssueComment]: - ... + ) -> Response[IssueComment]: ... @overload async def async_update_comment( @@ -954,8 +946,7 @@ async def async_update_comment( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, body: str, - ) -> Response[IssueComment]: - ... + ) -> Response[IssueComment]: ... async def async_update_comment( self, @@ -1188,8 +1179,7 @@ def update( *, headers: Optional[Dict[str, str]] = None, data: Missing[ReposOwnerRepoIssuesIssueNumberPatchBodyType] = UNSET, - ) -> Response[Issue]: - ... + ) -> Response[Issue]: ... @overload def update( @@ -1217,8 +1207,7 @@ def update( ] ] = UNSET, assignees: Missing[List[str]] = UNSET, - ) -> Response[Issue]: - ... + ) -> Response[Issue]: ... def update( self, @@ -1275,8 +1264,7 @@ async def async_update( *, headers: Optional[Dict[str, str]] = None, data: Missing[ReposOwnerRepoIssuesIssueNumberPatchBodyType] = UNSET, - ) -> Response[Issue]: - ... + ) -> Response[Issue]: ... @overload async def async_update( @@ -1304,8 +1292,7 @@ async def async_update( ] ] = UNSET, assignees: Missing[List[str]] = UNSET, - ) -> Response[Issue]: - ... + ) -> Response[Issue]: ... async def async_update( self, @@ -1362,8 +1349,7 @@ def add_assignees( *, headers: Optional[Dict[str, str]] = None, data: Missing[ReposOwnerRepoIssuesIssueNumberAssigneesPostBodyType] = UNSET, - ) -> Response[Issue]: - ... + ) -> Response[Issue]: ... @overload def add_assignees( @@ -1375,8 +1361,7 @@ def add_assignees( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, assignees: Missing[List[str]] = UNSET, - ) -> Response[Issue]: - ... + ) -> Response[Issue]: ... def add_assignees( self, @@ -1422,8 +1407,7 @@ async def async_add_assignees( *, headers: Optional[Dict[str, str]] = None, data: Missing[ReposOwnerRepoIssuesIssueNumberAssigneesPostBodyType] = UNSET, - ) -> Response[Issue]: - ... + ) -> Response[Issue]: ... @overload async def async_add_assignees( @@ -1435,8 +1419,7 @@ async def async_add_assignees( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, assignees: Missing[List[str]] = UNSET, - ) -> Response[Issue]: - ... + ) -> Response[Issue]: ... async def async_add_assignees( self, @@ -1482,8 +1465,7 @@ def remove_assignees( *, headers: Optional[Dict[str, str]] = None, data: Missing[ReposOwnerRepoIssuesIssueNumberAssigneesDeleteBodyType] = UNSET, - ) -> Response[Issue]: - ... + ) -> Response[Issue]: ... @overload def remove_assignees( @@ -1495,8 +1477,7 @@ def remove_assignees( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, assignees: Missing[List[str]] = UNSET, - ) -> Response[Issue]: - ... + ) -> Response[Issue]: ... def remove_assignees( self, @@ -1542,8 +1523,7 @@ async def async_remove_assignees( *, headers: Optional[Dict[str, str]] = None, data: Missing[ReposOwnerRepoIssuesIssueNumberAssigneesDeleteBodyType] = UNSET, - ) -> Response[Issue]: - ... + ) -> Response[Issue]: ... @overload async def async_remove_assignees( @@ -1555,8 +1535,7 @@ async def async_remove_assignees( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, assignees: Missing[List[str]] = UNSET, - ) -> Response[Issue]: - ... + ) -> Response[Issue]: ... async def async_remove_assignees( self, @@ -1732,8 +1711,7 @@ def create_comment( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoIssuesIssueNumberCommentsPostBodyType, - ) -> Response[IssueComment]: - ... + ) -> Response[IssueComment]: ... @overload def create_comment( @@ -1745,8 +1723,7 @@ def create_comment( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, body: str, - ) -> Response[IssueComment]: - ... + ) -> Response[IssueComment]: ... def create_comment( self, @@ -1803,8 +1780,7 @@ async def async_create_comment( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoIssuesIssueNumberCommentsPostBodyType, - ) -> Response[IssueComment]: - ... + ) -> Response[IssueComment]: ... @overload async def async_create_comment( @@ -1816,8 +1792,7 @@ async def async_create_comment( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, body: str, - ) -> Response[IssueComment]: - ... + ) -> Response[IssueComment]: ... async def async_create_comment( self, @@ -2138,8 +2113,7 @@ def set_labels( str, ] ] = UNSET, - ) -> Response[List[Label]]: - ... + ) -> Response[List[Label]]: ... @overload def set_labels( @@ -2151,8 +2125,7 @@ def set_labels( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, labels: Missing[List[str]] = UNSET, - ) -> Response[List[Label]]: - ... + ) -> Response[List[Label]]: ... @overload def set_labels( @@ -2166,8 +2139,7 @@ def set_labels( labels: Missing[ List[ReposOwnerRepoIssuesIssueNumberLabelsPutBodyOneof2PropLabelsItemsType] ] = UNSET, - ) -> Response[List[Label]]: - ... + ) -> Response[List[Label]]: ... def set_labels( self, @@ -2253,8 +2225,7 @@ async def async_set_labels( str, ] ] = UNSET, - ) -> Response[List[Label]]: - ... + ) -> Response[List[Label]]: ... @overload async def async_set_labels( @@ -2266,8 +2237,7 @@ async def async_set_labels( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, labels: Missing[List[str]] = UNSET, - ) -> Response[List[Label]]: - ... + ) -> Response[List[Label]]: ... @overload async def async_set_labels( @@ -2281,8 +2251,7 @@ async def async_set_labels( labels: Missing[ List[ReposOwnerRepoIssuesIssueNumberLabelsPutBodyOneof2PropLabelsItemsType] ] = UNSET, - ) -> Response[List[Label]]: - ... + ) -> Response[List[Label]]: ... async def async_set_labels( self, @@ -2368,8 +2337,7 @@ def add_labels( str, ] ] = UNSET, - ) -> Response[List[Label]]: - ... + ) -> Response[List[Label]]: ... @overload def add_labels( @@ -2381,8 +2349,7 @@ def add_labels( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, labels: Missing[List[str]] = UNSET, - ) -> Response[List[Label]]: - ... + ) -> Response[List[Label]]: ... @overload def add_labels( @@ -2396,8 +2363,7 @@ def add_labels( labels: Missing[ List[ReposOwnerRepoIssuesIssueNumberLabelsPostBodyOneof2PropLabelsItemsType] ] = UNSET, - ) -> Response[List[Label]]: - ... + ) -> Response[List[Label]]: ... def add_labels( self, @@ -2483,8 +2449,7 @@ async def async_add_labels( str, ] ] = UNSET, - ) -> Response[List[Label]]: - ... + ) -> Response[List[Label]]: ... @overload async def async_add_labels( @@ -2496,8 +2461,7 @@ async def async_add_labels( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, labels: Missing[List[str]] = UNSET, - ) -> Response[List[Label]]: - ... + ) -> Response[List[Label]]: ... @overload async def async_add_labels( @@ -2511,8 +2475,7 @@ async def async_add_labels( labels: Missing[ List[ReposOwnerRepoIssuesIssueNumberLabelsPostBodyOneof2PropLabelsItemsType] ] = UNSET, - ) -> Response[List[Label]]: - ... + ) -> Response[List[Label]]: ... async def async_add_labels( self, @@ -2704,8 +2667,7 @@ def lock( data: Missing[ Union[ReposOwnerRepoIssuesIssueNumberLockPutBodyType, None] ] = UNSET, - ) -> Response: - ... + ) -> Response: ... @overload def lock( @@ -2719,8 +2681,7 @@ def lock( lock_reason: Missing[ Literal["off-topic", "too heated", "resolved", "spam"] ] = UNSET, - ) -> Response: - ... + ) -> Response: ... def lock( self, @@ -2781,8 +2742,7 @@ async def async_lock( data: Missing[ Union[ReposOwnerRepoIssuesIssueNumberLockPutBodyType, None] ] = UNSET, - ) -> Response: - ... + ) -> Response: ... @overload async def async_lock( @@ -2796,8 +2756,7 @@ async def async_lock( lock_reason: Missing[ Literal["off-topic", "too heated", "resolved", "spam"] ] = UNSET, - ) -> Response: - ... + ) -> Response: ... async def async_lock( self, @@ -3203,8 +3162,7 @@ def create_label( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoLabelsPostBodyType, - ) -> Response[Label]: - ... + ) -> Response[Label]: ... @overload def create_label( @@ -3217,8 +3175,7 @@ def create_label( name: str, color: Missing[str] = UNSET, description: Missing[str] = UNSET, - ) -> Response[Label]: - ... + ) -> Response[Label]: ... def create_label( self, @@ -3269,8 +3226,7 @@ async def async_create_label( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoLabelsPostBodyType, - ) -> Response[Label]: - ... + ) -> Response[Label]: ... @overload async def async_create_label( @@ -3283,8 +3239,7 @@ async def async_create_label( name: str, color: Missing[str] = UNSET, description: Missing[str] = UNSET, - ) -> Response[Label]: - ... + ) -> Response[Label]: ... async def async_create_label( self, @@ -3428,8 +3383,7 @@ def update_label( *, headers: Optional[Dict[str, str]] = None, data: Missing[ReposOwnerRepoLabelsNamePatchBodyType] = UNSET, - ) -> Response[Label]: - ... + ) -> Response[Label]: ... @overload def update_label( @@ -3443,8 +3397,7 @@ def update_label( new_name: Missing[str] = UNSET, color: Missing[str] = UNSET, description: Missing[str] = UNSET, - ) -> Response[Label]: - ... + ) -> Response[Label]: ... def update_label( self, @@ -3488,8 +3441,7 @@ async def async_update_label( *, headers: Optional[Dict[str, str]] = None, data: Missing[ReposOwnerRepoLabelsNamePatchBodyType] = UNSET, - ) -> Response[Label]: - ... + ) -> Response[Label]: ... @overload async def async_update_label( @@ -3503,8 +3455,7 @@ async def async_update_label( new_name: Missing[str] = UNSET, color: Missing[str] = UNSET, description: Missing[str] = UNSET, - ) -> Response[Label]: - ... + ) -> Response[Label]: ... async def async_update_label( self, @@ -3629,8 +3580,7 @@ def create_milestone( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoMilestonesPostBodyType, - ) -> Response[Milestone]: - ... + ) -> Response[Milestone]: ... @overload def create_milestone( @@ -3644,8 +3594,7 @@ def create_milestone( state: Missing[Literal["open", "closed"]] = UNSET, description: Missing[str] = UNSET, due_on: Missing[datetime] = UNSET, - ) -> Response[Milestone]: - ... + ) -> Response[Milestone]: ... def create_milestone( self, @@ -3696,8 +3645,7 @@ async def async_create_milestone( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoMilestonesPostBodyType, - ) -> Response[Milestone]: - ... + ) -> Response[Milestone]: ... @overload async def async_create_milestone( @@ -3711,8 +3659,7 @@ async def async_create_milestone( state: Missing[Literal["open", "closed"]] = UNSET, description: Missing[str] = UNSET, due_on: Missing[datetime] = UNSET, - ) -> Response[Milestone]: - ... + ) -> Response[Milestone]: ... async def async_create_milestone( self, @@ -3866,8 +3813,7 @@ def update_milestone( *, headers: Optional[Dict[str, str]] = None, data: Missing[ReposOwnerRepoMilestonesMilestoneNumberPatchBodyType] = UNSET, - ) -> Response[Milestone]: - ... + ) -> Response[Milestone]: ... @overload def update_milestone( @@ -3882,8 +3828,7 @@ def update_milestone( state: Missing[Literal["open", "closed"]] = UNSET, description: Missing[str] = UNSET, due_on: Missing[datetime] = UNSET, - ) -> Response[Milestone]: - ... + ) -> Response[Milestone]: ... def update_milestone( self, @@ -3929,8 +3874,7 @@ async def async_update_milestone( *, headers: Optional[Dict[str, str]] = None, data: Missing[ReposOwnerRepoMilestonesMilestoneNumberPatchBodyType] = UNSET, - ) -> Response[Milestone]: - ... + ) -> Response[Milestone]: ... @overload async def async_update_milestone( @@ -3945,8 +3889,7 @@ async def async_update_milestone( state: Missing[Literal["open", "closed"]] = UNSET, description: Missing[str] = UNSET, due_on: Missing[datetime] = UNSET, - ) -> Response[Milestone]: - ... + ) -> Response[Milestone]: ... async def async_update_milestone( self, diff --git a/githubkit/versions/ghec_v2022_11_28/rest/licenses.py b/githubkit/versions/ghec_v2022_11_28/rest/licenses.py index 91793aa42..2c91c6316 100644 --- a/githubkit/versions/ghec_v2022_11_28/rest/licenses.py +++ b/githubkit/versions/ghec_v2022_11_28/rest/licenses.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref diff --git a/githubkit/versions/ghec_v2022_11_28/rest/markdown.py b/githubkit/versions/ghec_v2022_11_28/rest/markdown.py index e12efa780..15684cf02 100644 --- a/githubkit/versions/ghec_v2022_11_28/rest/markdown.py +++ b/githubkit/versions/ghec_v2022_11_28/rest/markdown.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref @@ -48,8 +47,7 @@ def _github(self) -> GitHubCore: @overload def render( self, *, headers: Optional[Dict[str, str]] = None, data: MarkdownPostBodyType - ) -> Response[str]: - ... + ) -> Response[str]: ... @overload def render( @@ -60,8 +58,7 @@ def render( text: str, mode: Missing[Literal["markdown", "gfm"]] = UNSET, context: Missing[str] = UNSET, - ) -> Response[str]: - ... + ) -> Response[str]: ... def render( self, @@ -96,8 +93,7 @@ def render( @overload async def async_render( self, *, headers: Optional[Dict[str, str]] = None, data: MarkdownPostBodyType - ) -> Response[str]: - ... + ) -> Response[str]: ... @overload async def async_render( @@ -108,8 +104,7 @@ async def async_render( text: str, mode: Missing[Literal["markdown", "gfm"]] = UNSET, context: Missing[str] = UNSET, - ) -> Response[str]: - ... + ) -> Response[str]: ... async def async_render( self, diff --git a/githubkit/versions/ghec_v2022_11_28/rest/meta.py b/githubkit/versions/ghec_v2022_11_28/rest/meta.py index 76c3d4f88..a61eddb1d 100644 --- a/githubkit/versions/ghec_v2022_11_28/rest/meta.py +++ b/githubkit/versions/ghec_v2022_11_28/rest/meta.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref diff --git a/githubkit/versions/ghec_v2022_11_28/rest/migrations.py b/githubkit/versions/ghec_v2022_11_28/rest/migrations.py index 1d7488dec..d7b1f9654 100644 --- a/githubkit/versions/ghec_v2022_11_28/rest/migrations.py +++ b/githubkit/versions/ghec_v2022_11_28/rest/migrations.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref @@ -132,8 +131,7 @@ def start_for_org( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgMigrationsPostBodyType, - ) -> Response[Migration]: - ... + ) -> Response[Migration]: ... @overload def start_for_org( @@ -151,8 +149,7 @@ def start_for_org( exclude_owner_projects: Missing[bool] = UNSET, org_metadata_only: Missing[bool] = UNSET, exclude: Missing[List[Literal["repositories"]]] = UNSET, - ) -> Response[Migration]: - ... + ) -> Response[Migration]: ... def start_for_org( self, @@ -201,8 +198,7 @@ async def async_start_for_org( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgMigrationsPostBodyType, - ) -> Response[Migration]: - ... + ) -> Response[Migration]: ... @overload async def async_start_for_org( @@ -220,8 +216,7 @@ async def async_start_for_org( exclude_owner_projects: Missing[bool] = UNSET, org_metadata_only: Missing[bool] = UNSET, exclude: Missing[List[Literal["repositories"]]] = UNSET, - ) -> Response[Migration]: - ... + ) -> Response[Migration]: ... async def async_start_for_org( self, @@ -601,8 +596,7 @@ def start_import( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoImportPutBodyType, - ) -> Response[Import]: - ... + ) -> Response[Import]: ... @overload def start_import( @@ -617,8 +611,7 @@ def start_import( vcs_username: Missing[str] = UNSET, vcs_password: Missing[str] = UNSET, tfvc_project: Missing[str] = UNSET, - ) -> Response[Import]: - ... + ) -> Response[Import]: ... def start_import( self, @@ -670,8 +663,7 @@ async def async_start_import( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoImportPutBodyType, - ) -> Response[Import]: - ... + ) -> Response[Import]: ... @overload async def async_start_import( @@ -686,8 +678,7 @@ async def async_start_import( vcs_username: Missing[str] = UNSET, vcs_password: Missing[str] = UNSET, tfvc_project: Missing[str] = UNSET, - ) -> Response[Import]: - ... + ) -> Response[Import]: ... async def async_start_import( self, @@ -787,8 +778,7 @@ def update_import( *, headers: Optional[Dict[str, str]] = None, data: Missing[Union[ReposOwnerRepoImportPatchBodyType, None]] = UNSET, - ) -> Response[Import]: - ... + ) -> Response[Import]: ... @overload def update_import( @@ -802,8 +792,7 @@ def update_import( vcs_password: Missing[str] = UNSET, vcs: Missing[Literal["subversion", "tfvc", "git", "mercurial"]] = UNSET, tfvc_project: Missing[str] = UNSET, - ) -> Response[Import]: - ... + ) -> Response[Import]: ... def update_import( self, @@ -850,8 +839,7 @@ async def async_update_import( *, headers: Optional[Dict[str, str]] = None, data: Missing[Union[ReposOwnerRepoImportPatchBodyType, None]] = UNSET, - ) -> Response[Import]: - ... + ) -> Response[Import]: ... @overload async def async_update_import( @@ -865,8 +853,7 @@ async def async_update_import( vcs_password: Missing[str] = UNSET, vcs: Missing[Literal["subversion", "tfvc", "git", "mercurial"]] = UNSET, tfvc_project: Missing[str] = UNSET, - ) -> Response[Import]: - ... + ) -> Response[Import]: ... async def async_update_import( self, @@ -982,8 +969,7 @@ def map_commit_author( *, headers: Optional[Dict[str, str]] = None, data: Missing[ReposOwnerRepoImportAuthorsAuthorIdPatchBodyType] = UNSET, - ) -> Response[PorterAuthor]: - ... + ) -> Response[PorterAuthor]: ... @overload def map_commit_author( @@ -996,8 +982,7 @@ def map_commit_author( headers: Optional[Dict[str, str]] = None, email: Missing[str] = UNSET, name: Missing[str] = UNSET, - ) -> Response[PorterAuthor]: - ... + ) -> Response[PorterAuthor]: ... def map_commit_author( self, @@ -1051,8 +1036,7 @@ async def async_map_commit_author( *, headers: Optional[Dict[str, str]] = None, data: Missing[ReposOwnerRepoImportAuthorsAuthorIdPatchBodyType] = UNSET, - ) -> Response[PorterAuthor]: - ... + ) -> Response[PorterAuthor]: ... @overload async def async_map_commit_author( @@ -1065,8 +1049,7 @@ async def async_map_commit_author( headers: Optional[Dict[str, str]] = None, email: Missing[str] = UNSET, name: Missing[str] = UNSET, - ) -> Response[PorterAuthor]: - ... + ) -> Response[PorterAuthor]: ... async def async_map_commit_author( self, @@ -1173,8 +1156,7 @@ def set_lfs_preference( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoImportLfsPatchBodyType, - ) -> Response[Import]: - ... + ) -> Response[Import]: ... @overload def set_lfs_preference( @@ -1185,8 +1167,7 @@ def set_lfs_preference( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, use_lfs: Literal["opt_in", "opt_out"], - ) -> Response[Import]: - ... + ) -> Response[Import]: ... def set_lfs_preference( self, @@ -1237,8 +1218,7 @@ async def async_set_lfs_preference( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoImportLfsPatchBodyType, - ) -> Response[Import]: - ... + ) -> Response[Import]: ... @overload async def async_set_lfs_preference( @@ -1249,8 +1229,7 @@ async def async_set_lfs_preference( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, use_lfs: Literal["opt_in", "opt_out"], - ) -> Response[Import]: - ... + ) -> Response[Import]: ... async def async_set_lfs_preference( self, @@ -1367,8 +1346,7 @@ def start_for_authenticated_user( *, headers: Optional[Dict[str, str]] = None, data: UserMigrationsPostBodyType, - ) -> Response[Migration]: - ... + ) -> Response[Migration]: ... @overload def start_for_authenticated_user( @@ -1385,8 +1363,7 @@ def start_for_authenticated_user( org_metadata_only: Missing[bool] = UNSET, exclude: Missing[List[Literal["repositories"]]] = UNSET, repositories: List[str], - ) -> Response[Migration]: - ... + ) -> Response[Migration]: ... def start_for_authenticated_user( self, @@ -1434,8 +1411,7 @@ async def async_start_for_authenticated_user( *, headers: Optional[Dict[str, str]] = None, data: UserMigrationsPostBodyType, - ) -> Response[Migration]: - ... + ) -> Response[Migration]: ... @overload async def async_start_for_authenticated_user( @@ -1452,8 +1428,7 @@ async def async_start_for_authenticated_user( org_metadata_only: Missing[bool] = UNSET, exclude: Missing[List[Literal["repositories"]]] = UNSET, repositories: List[str], - ) -> Response[Migration]: - ... + ) -> Response[Migration]: ... async def async_start_for_authenticated_user( self, diff --git a/githubkit/versions/ghec_v2022_11_28/rest/oidc.py b/githubkit/versions/ghec_v2022_11_28/rest/oidc.py index 5719800c2..a549fa807 100644 --- a/githubkit/versions/ghec_v2022_11_28/rest/oidc.py +++ b/githubkit/versions/ghec_v2022_11_28/rest/oidc.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref @@ -93,8 +92,7 @@ def update_oidc_custom_sub_template_for_org( *, headers: Optional[Dict[str, str]] = None, data: OidcCustomSubType, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... @overload def update_oidc_custom_sub_template_for_org( @@ -104,8 +102,7 @@ def update_oidc_custom_sub_template_for_org( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, include_claim_keys: List[str], - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... def update_oidc_custom_sub_template_for_org( self, @@ -149,8 +146,7 @@ async def async_update_oidc_custom_sub_template_for_org( *, headers: Optional[Dict[str, str]] = None, data: OidcCustomSubType, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... @overload async def async_update_oidc_custom_sub_template_for_org( @@ -160,8 +156,7 @@ async def async_update_oidc_custom_sub_template_for_org( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, include_claim_keys: List[str], - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... async def async_update_oidc_custom_sub_template_for_org( self, diff --git a/githubkit/versions/ghec_v2022_11_28/rest/orgs.py b/githubkit/versions/ghec_v2022_11_28/rest/orgs.py index 02e064004..867d10855 100644 --- a/githubkit/versions/ghec_v2022_11_28/rest/orgs.py +++ b/githubkit/versions/ghec_v2022_11_28/rest/orgs.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref @@ -316,8 +315,7 @@ def update( *, headers: Optional[Dict[str, str]] = None, data: Missing[OrgsOrgPatchBodyType] = UNSET, - ) -> Response[OrganizationFull]: - ... + ) -> Response[OrganizationFull]: ... @overload def update( @@ -362,8 +360,7 @@ def update( secret_scanning_push_protection_custom_link_enabled: Missing[bool] = UNSET, secret_scanning_push_protection_custom_link: Missing[str] = UNSET, secret_scanning_validity_checks_enabled: Missing[bool] = UNSET, - ) -> Response[OrganizationFull]: - ... + ) -> Response[OrganizationFull]: ... def update( self, @@ -415,8 +412,7 @@ async def async_update( *, headers: Optional[Dict[str, str]] = None, data: Missing[OrgsOrgPatchBodyType] = UNSET, - ) -> Response[OrganizationFull]: - ... + ) -> Response[OrganizationFull]: ... @overload async def async_update( @@ -461,8 +457,7 @@ async def async_update( secret_scanning_push_protection_custom_link_enabled: Missing[bool] = UNSET, secret_scanning_push_protection_custom_link: Missing[str] = UNSET, secret_scanning_validity_checks_enabled: Missing[bool] = UNSET, - ) -> Response[OrganizationFull]: - ... + ) -> Response[OrganizationFull]: ... async def async_update( self, @@ -592,8 +587,7 @@ def set_announcement_banner_for_org( *, headers: Optional[Dict[str, str]] = None, data: AnnouncementType, - ) -> Response[AnnouncementBanner]: - ... + ) -> Response[AnnouncementBanner]: ... @overload def set_announcement_banner_for_org( @@ -604,8 +598,7 @@ def set_announcement_banner_for_org( headers: Optional[Dict[str, str]] = None, announcement: Union[str, None], expires_at: Missing[Union[datetime, None]] = UNSET, - ) -> Response[AnnouncementBanner]: - ... + ) -> Response[AnnouncementBanner]: ... def set_announcement_banner_for_org( self, @@ -645,8 +638,7 @@ async def async_set_announcement_banner_for_org( *, headers: Optional[Dict[str, str]] = None, data: AnnouncementType, - ) -> Response[AnnouncementBanner]: - ... + ) -> Response[AnnouncementBanner]: ... @overload async def async_set_announcement_banner_for_org( @@ -657,8 +649,7 @@ async def async_set_announcement_banner_for_org( headers: Optional[Dict[str, str]] = None, announcement: Union[str, None], expires_at: Missing[Union[datetime, None]] = UNSET, - ) -> Response[AnnouncementBanner]: - ... + ) -> Response[AnnouncementBanner]: ... async def async_set_announcement_banner_for_org( self, @@ -1128,8 +1119,7 @@ def create_custom_repo_role( *, headers: Optional[Dict[str, str]] = None, data: OrganizationCustomRepositoryRoleCreateSchemaType, - ) -> Response[OrganizationCustomRepositoryRole]: - ... + ) -> Response[OrganizationCustomRepositoryRole]: ... @overload def create_custom_repo_role( @@ -1142,8 +1132,7 @@ def create_custom_repo_role( description: Missing[Union[str, None]] = UNSET, base_role: Literal["read", "triage", "write", "maintain"], permissions: List[str], - ) -> Response[OrganizationCustomRepositoryRole]: - ... + ) -> Response[OrganizationCustomRepositoryRole]: ... def create_custom_repo_role( self, @@ -1192,8 +1181,7 @@ async def async_create_custom_repo_role( *, headers: Optional[Dict[str, str]] = None, data: OrganizationCustomRepositoryRoleCreateSchemaType, - ) -> Response[OrganizationCustomRepositoryRole]: - ... + ) -> Response[OrganizationCustomRepositoryRole]: ... @overload async def async_create_custom_repo_role( @@ -1206,8 +1194,7 @@ async def async_create_custom_repo_role( description: Missing[Union[str, None]] = UNSET, base_role: Literal["read", "triage", "write", "maintain"], permissions: List[str], - ) -> Response[OrganizationCustomRepositoryRole]: - ... + ) -> Response[OrganizationCustomRepositoryRole]: ... async def async_create_custom_repo_role( self, @@ -1345,8 +1332,7 @@ def update_custom_repo_role( *, headers: Optional[Dict[str, str]] = None, data: OrganizationCustomRepositoryRoleUpdateSchemaType, - ) -> Response[OrganizationCustomRepositoryRole]: - ... + ) -> Response[OrganizationCustomRepositoryRole]: ... @overload def update_custom_repo_role( @@ -1360,8 +1346,7 @@ def update_custom_repo_role( description: Missing[Union[str, None]] = UNSET, base_role: Missing[Literal["read", "triage", "write", "maintain"]] = UNSET, permissions: Missing[List[str]] = UNSET, - ) -> Response[OrganizationCustomRepositoryRole]: - ... + ) -> Response[OrganizationCustomRepositoryRole]: ... def update_custom_repo_role( self, @@ -1412,8 +1397,7 @@ async def async_update_custom_repo_role( *, headers: Optional[Dict[str, str]] = None, data: OrganizationCustomRepositoryRoleUpdateSchemaType, - ) -> Response[OrganizationCustomRepositoryRole]: - ... + ) -> Response[OrganizationCustomRepositoryRole]: ... @overload async def async_update_custom_repo_role( @@ -1427,8 +1411,7 @@ async def async_update_custom_repo_role( description: Missing[Union[str, None]] = UNSET, base_role: Missing[Literal["read", "triage", "write", "maintain"]] = UNSET, permissions: Missing[List[str]] = UNSET, - ) -> Response[OrganizationCustomRepositoryRole]: - ... + ) -> Response[OrganizationCustomRepositoryRole]: ... async def async_update_custom_repo_role( self, @@ -1478,8 +1461,7 @@ def create_custom_role( *, headers: Optional[Dict[str, str]] = None, data: OrganizationCustomRepositoryRoleCreateSchemaType, - ) -> Response[OrganizationCustomRepositoryRole]: - ... + ) -> Response[OrganizationCustomRepositoryRole]: ... @overload def create_custom_role( @@ -1492,8 +1474,7 @@ def create_custom_role( description: Missing[Union[str, None]] = UNSET, base_role: Literal["read", "triage", "write", "maintain"], permissions: List[str], - ) -> Response[OrganizationCustomRepositoryRole]: - ... + ) -> Response[OrganizationCustomRepositoryRole]: ... def create_custom_role( self, @@ -1542,8 +1523,7 @@ async def async_create_custom_role( *, headers: Optional[Dict[str, str]] = None, data: OrganizationCustomRepositoryRoleCreateSchemaType, - ) -> Response[OrganizationCustomRepositoryRole]: - ... + ) -> Response[OrganizationCustomRepositoryRole]: ... @overload async def async_create_custom_role( @@ -1556,8 +1536,7 @@ async def async_create_custom_role( description: Missing[Union[str, None]] = UNSET, base_role: Literal["read", "triage", "write", "maintain"], permissions: List[str], - ) -> Response[OrganizationCustomRepositoryRole]: - ... + ) -> Response[OrganizationCustomRepositoryRole]: ... async def async_create_custom_role( self, @@ -1695,8 +1674,7 @@ def update_custom_role( *, headers: Optional[Dict[str, str]] = None, data: OrganizationCustomRepositoryRoleUpdateSchemaType, - ) -> Response[OrganizationCustomRepositoryRole]: - ... + ) -> Response[OrganizationCustomRepositoryRole]: ... @overload def update_custom_role( @@ -1710,8 +1688,7 @@ def update_custom_role( description: Missing[Union[str, None]] = UNSET, base_role: Missing[Literal["read", "triage", "write", "maintain"]] = UNSET, permissions: Missing[List[str]] = UNSET, - ) -> Response[OrganizationCustomRepositoryRole]: - ... + ) -> Response[OrganizationCustomRepositoryRole]: ... def update_custom_role( self, @@ -1762,8 +1739,7 @@ async def async_update_custom_role( *, headers: Optional[Dict[str, str]] = None, data: OrganizationCustomRepositoryRoleUpdateSchemaType, - ) -> Response[OrganizationCustomRepositoryRole]: - ... + ) -> Response[OrganizationCustomRepositoryRole]: ... @overload async def async_update_custom_role( @@ -1777,8 +1753,7 @@ async def async_update_custom_role( description: Missing[Union[str, None]] = UNSET, base_role: Missing[Literal["read", "triage", "write", "maintain"]] = UNSET, permissions: Missing[List[str]] = UNSET, - ) -> Response[OrganizationCustomRepositoryRole]: - ... + ) -> Response[OrganizationCustomRepositoryRole]: ... async def async_update_custom_role( self, @@ -2010,8 +1985,7 @@ def create_webhook( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgHooksPostBodyType, - ) -> Response[OrgHook]: - ... + ) -> Response[OrgHook]: ... @overload def create_webhook( @@ -2024,8 +1998,7 @@ def create_webhook( config: OrgsOrgHooksPostBodyPropConfigType, events: Missing[List[str]] = UNSET, active: Missing[bool] = UNSET, - ) -> Response[OrgHook]: - ... + ) -> Response[OrgHook]: ... def create_webhook( self, @@ -2069,8 +2042,7 @@ async def async_create_webhook( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgHooksPostBodyType, - ) -> Response[OrgHook]: - ... + ) -> Response[OrgHook]: ... @overload async def async_create_webhook( @@ -2083,8 +2055,7 @@ async def async_create_webhook( config: OrgsOrgHooksPostBodyPropConfigType, events: Missing[List[str]] = UNSET, active: Missing[bool] = UNSET, - ) -> Response[OrgHook]: - ... + ) -> Response[OrgHook]: ... async def async_create_webhook( self, @@ -2227,8 +2198,7 @@ def update_webhook( *, headers: Optional[Dict[str, str]] = None, data: Missing[OrgsOrgHooksHookIdPatchBodyType] = UNSET, - ) -> Response[OrgHook]: - ... + ) -> Response[OrgHook]: ... @overload def update_webhook( @@ -2242,8 +2212,7 @@ def update_webhook( events: Missing[List[str]] = UNSET, active: Missing[bool] = UNSET, name: Missing[str] = UNSET, - ) -> Response[OrgHook]: - ... + ) -> Response[OrgHook]: ... def update_webhook( self, @@ -2294,8 +2263,7 @@ async def async_update_webhook( *, headers: Optional[Dict[str, str]] = None, data: Missing[OrgsOrgHooksHookIdPatchBodyType] = UNSET, - ) -> Response[OrgHook]: - ... + ) -> Response[OrgHook]: ... @overload async def async_update_webhook( @@ -2309,8 +2277,7 @@ async def async_update_webhook( events: Missing[List[str]] = UNSET, active: Missing[bool] = UNSET, name: Missing[str] = UNSET, - ) -> Response[OrgHook]: - ... + ) -> Response[OrgHook]: ... async def async_update_webhook( self, @@ -2405,8 +2372,7 @@ def update_webhook_config_for_org( *, headers: Optional[Dict[str, str]] = None, data: Missing[OrgsOrgHooksHookIdConfigPatchBodyType] = UNSET, - ) -> Response[WebhookConfig]: - ... + ) -> Response[WebhookConfig]: ... @overload def update_webhook_config_for_org( @@ -2420,8 +2386,7 @@ def update_webhook_config_for_org( content_type: Missing[str] = UNSET, secret: Missing[str] = UNSET, insecure_ssl: Missing[Union[str, float]] = UNSET, - ) -> Response[WebhookConfig]: - ... + ) -> Response[WebhookConfig]: ... def update_webhook_config_for_org( self, @@ -2463,8 +2428,7 @@ async def async_update_webhook_config_for_org( *, headers: Optional[Dict[str, str]] = None, data: Missing[OrgsOrgHooksHookIdConfigPatchBodyType] = UNSET, - ) -> Response[WebhookConfig]: - ... + ) -> Response[WebhookConfig]: ... @overload async def async_update_webhook_config_for_org( @@ -2478,8 +2442,7 @@ async def async_update_webhook_config_for_org( content_type: Missing[str] = UNSET, secret: Missing[str] = UNSET, insecure_ssl: Missing[Union[str, float]] = UNSET, - ) -> Response[WebhookConfig]: - ... + ) -> Response[WebhookConfig]: ... async def async_update_webhook_config_for_org( self, @@ -2902,8 +2865,7 @@ def create_invitation( *, headers: Optional[Dict[str, str]] = None, data: Missing[OrgsOrgInvitationsPostBodyType] = UNSET, - ) -> Response[OrganizationInvitation]: - ... + ) -> Response[OrganizationInvitation]: ... @overload def create_invitation( @@ -2918,8 +2880,7 @@ def create_invitation( Literal["admin", "direct_member", "billing_manager", "reinstate"] ] = UNSET, team_ids: Missing[List[int]] = UNSET, - ) -> Response[OrganizationInvitation]: - ... + ) -> Response[OrganizationInvitation]: ... def create_invitation( self, @@ -2968,8 +2929,7 @@ async def async_create_invitation( *, headers: Optional[Dict[str, str]] = None, data: Missing[OrgsOrgInvitationsPostBodyType] = UNSET, - ) -> Response[OrganizationInvitation]: - ... + ) -> Response[OrganizationInvitation]: ... @overload async def async_create_invitation( @@ -2984,8 +2944,7 @@ async def async_create_invitation( Literal["admin", "direct_member", "billing_manager", "reinstate"] ] = UNSET, team_ids: Missing[List[int]] = UNSET, - ) -> Response[OrganizationInvitation]: - ... + ) -> Response[OrganizationInvitation]: ... async def async_create_invitation( self, @@ -3371,8 +3330,7 @@ def set_membership_for_user( *, headers: Optional[Dict[str, str]] = None, data: Missing[OrgsOrgMembershipsUsernamePutBodyType] = UNSET, - ) -> Response[OrgMembership]: - ... + ) -> Response[OrgMembership]: ... @overload def set_membership_for_user( @@ -3383,8 +3341,7 @@ def set_membership_for_user( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, role: Missing[Literal["admin", "member"]] = UNSET, - ) -> Response[OrgMembership]: - ... + ) -> Response[OrgMembership]: ... def set_membership_for_user( self, @@ -3435,8 +3392,7 @@ async def async_set_membership_for_user( *, headers: Optional[Dict[str, str]] = None, data: Missing[OrgsOrgMembershipsUsernamePutBodyType] = UNSET, - ) -> Response[OrgMembership]: - ... + ) -> Response[OrgMembership]: ... @overload async def async_set_membership_for_user( @@ -3447,8 +3403,7 @@ async def async_set_membership_for_user( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, role: Missing[Literal["admin", "member"]] = UNSET, - ) -> Response[OrgMembership]: - ... + ) -> Response[OrgMembership]: ... async def async_set_membership_for_user( self, @@ -3668,8 +3623,7 @@ def create_custom_organization_role( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgOrganizationRolesPostBodyType, - ) -> Response[OrganizationRole]: - ... + ) -> Response[OrganizationRole]: ... @overload def create_custom_organization_role( @@ -3681,8 +3635,7 @@ def create_custom_organization_role( name: str, description: Missing[str] = UNSET, permissions: List[str], - ) -> Response[OrganizationRole]: - ... + ) -> Response[OrganizationRole]: ... def create_custom_organization_role( self, @@ -3732,8 +3685,7 @@ async def async_create_custom_organization_role( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgOrganizationRolesPostBodyType, - ) -> Response[OrganizationRole]: - ... + ) -> Response[OrganizationRole]: ... @overload async def async_create_custom_organization_role( @@ -3745,8 +3697,7 @@ async def async_create_custom_organization_role( name: str, description: Missing[str] = UNSET, permissions: List[str], - ) -> Response[OrganizationRole]: - ... + ) -> Response[OrganizationRole]: ... async def async_create_custom_organization_role( self, @@ -4127,8 +4078,7 @@ def patch_custom_organization_role( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgOrganizationRolesRoleIdPatchBodyType, - ) -> Response[OrganizationRole]: - ... + ) -> Response[OrganizationRole]: ... @overload def patch_custom_organization_role( @@ -4141,8 +4091,7 @@ def patch_custom_organization_role( name: Missing[str] = UNSET, description: Missing[str] = UNSET, permissions: Missing[List[str]] = UNSET, - ) -> Response[OrganizationRole]: - ... + ) -> Response[OrganizationRole]: ... def patch_custom_organization_role( self, @@ -4194,8 +4143,7 @@ async def async_patch_custom_organization_role( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgOrganizationRolesRoleIdPatchBodyType, - ) -> Response[OrganizationRole]: - ... + ) -> Response[OrganizationRole]: ... @overload async def async_patch_custom_organization_role( @@ -4208,8 +4156,7 @@ async def async_patch_custom_organization_role( name: Missing[str] = UNSET, description: Missing[str] = UNSET, permissions: Missing[List[str]] = UNSET, - ) -> Response[OrganizationRole]: - ... + ) -> Response[OrganizationRole]: ... async def async_patch_custom_organization_role( self, @@ -4459,8 +4406,7 @@ def convert_member_to_outside_collaborator( *, headers: Optional[Dict[str, str]] = None, data: Missing[OrgsOrgOutsideCollaboratorsUsernamePutBodyType] = UNSET, - ) -> Response[OrgsOrgOutsideCollaboratorsUsernamePutResponse202]: - ... + ) -> Response[OrgsOrgOutsideCollaboratorsUsernamePutResponse202]: ... @overload def convert_member_to_outside_collaborator( @@ -4471,8 +4417,7 @@ def convert_member_to_outside_collaborator( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, async_: Missing[bool] = UNSET, - ) -> Response[OrgsOrgOutsideCollaboratorsUsernamePutResponse202]: - ... + ) -> Response[OrgsOrgOutsideCollaboratorsUsernamePutResponse202]: ... def convert_member_to_outside_collaborator( self, @@ -4521,8 +4466,7 @@ async def async_convert_member_to_outside_collaborator( *, headers: Optional[Dict[str, str]] = None, data: Missing[OrgsOrgOutsideCollaboratorsUsernamePutBodyType] = UNSET, - ) -> Response[OrgsOrgOutsideCollaboratorsUsernamePutResponse202]: - ... + ) -> Response[OrgsOrgOutsideCollaboratorsUsernamePutResponse202]: ... @overload async def async_convert_member_to_outside_collaborator( @@ -4533,8 +4477,7 @@ async def async_convert_member_to_outside_collaborator( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, async_: Missing[bool] = UNSET, - ) -> Response[OrgsOrgOutsideCollaboratorsUsernamePutResponse202]: - ... + ) -> Response[OrgsOrgOutsideCollaboratorsUsernamePutResponse202]: ... async def async_convert_member_to_outside_collaborator( self, @@ -4740,8 +4683,7 @@ def review_pat_grant_requests_in_bulk( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgPersonalAccessTokenRequestsPostBodyType, - ) -> Response[AppHookDeliveriesDeliveryIdAttemptsPostResponse202]: - ... + ) -> Response[AppHookDeliveriesDeliveryIdAttemptsPostResponse202]: ... @overload def review_pat_grant_requests_in_bulk( @@ -4753,8 +4695,7 @@ def review_pat_grant_requests_in_bulk( pat_request_ids: Missing[List[int]] = UNSET, action: Literal["approve", "deny"], reason: Missing[Union[str, None]] = UNSET, - ) -> Response[AppHookDeliveriesDeliveryIdAttemptsPostResponse202]: - ... + ) -> Response[AppHookDeliveriesDeliveryIdAttemptsPostResponse202]: ... def review_pat_grant_requests_in_bulk( self, @@ -4805,8 +4746,7 @@ async def async_review_pat_grant_requests_in_bulk( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgPersonalAccessTokenRequestsPostBodyType, - ) -> Response[AppHookDeliveriesDeliveryIdAttemptsPostResponse202]: - ... + ) -> Response[AppHookDeliveriesDeliveryIdAttemptsPostResponse202]: ... @overload async def async_review_pat_grant_requests_in_bulk( @@ -4818,8 +4758,7 @@ async def async_review_pat_grant_requests_in_bulk( pat_request_ids: Missing[List[int]] = UNSET, action: Literal["approve", "deny"], reason: Missing[Union[str, None]] = UNSET, - ) -> Response[AppHookDeliveriesDeliveryIdAttemptsPostResponse202]: - ... + ) -> Response[AppHookDeliveriesDeliveryIdAttemptsPostResponse202]: ... async def async_review_pat_grant_requests_in_bulk( self, @@ -4871,8 +4810,7 @@ def review_pat_grant_request( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgPersonalAccessTokenRequestsPatRequestIdPostBodyType, - ) -> Response: - ... + ) -> Response: ... @overload def review_pat_grant_request( @@ -4884,8 +4822,7 @@ def review_pat_grant_request( headers: Optional[Dict[str, str]] = None, action: Literal["approve", "deny"], reason: Missing[Union[str, None]] = UNSET, - ) -> Response: - ... + ) -> Response: ... def review_pat_grant_request( self, @@ -4940,8 +4877,7 @@ async def async_review_pat_grant_request( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgPersonalAccessTokenRequestsPatRequestIdPostBodyType, - ) -> Response: - ... + ) -> Response: ... @overload async def async_review_pat_grant_request( @@ -4953,8 +4889,7 @@ async def async_review_pat_grant_request( headers: Optional[Dict[str, str]] = None, action: Literal["approve", "deny"], reason: Missing[Union[str, None]] = UNSET, - ) -> Response: - ... + ) -> Response: ... async def async_review_pat_grant_request( self, @@ -5196,8 +5131,7 @@ def update_pat_accesses( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgPersonalAccessTokensPostBodyType, - ) -> Response[AppHookDeliveriesDeliveryIdAttemptsPostResponse202]: - ... + ) -> Response[AppHookDeliveriesDeliveryIdAttemptsPostResponse202]: ... @overload def update_pat_accesses( @@ -5208,8 +5142,7 @@ def update_pat_accesses( headers: Optional[Dict[str, str]] = None, action: Literal["revoke"], pat_ids: List[int], - ) -> Response[AppHookDeliveriesDeliveryIdAttemptsPostResponse202]: - ... + ) -> Response[AppHookDeliveriesDeliveryIdAttemptsPostResponse202]: ... def update_pat_accesses( self, @@ -5260,8 +5193,7 @@ async def async_update_pat_accesses( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgPersonalAccessTokensPostBodyType, - ) -> Response[AppHookDeliveriesDeliveryIdAttemptsPostResponse202]: - ... + ) -> Response[AppHookDeliveriesDeliveryIdAttemptsPostResponse202]: ... @overload async def async_update_pat_accesses( @@ -5272,8 +5204,7 @@ async def async_update_pat_accesses( headers: Optional[Dict[str, str]] = None, action: Literal["revoke"], pat_ids: List[int], - ) -> Response[AppHookDeliveriesDeliveryIdAttemptsPostResponse202]: - ... + ) -> Response[AppHookDeliveriesDeliveryIdAttemptsPostResponse202]: ... async def async_update_pat_accesses( self, @@ -5325,8 +5256,7 @@ def update_pat_access( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgPersonalAccessTokensPatIdPostBodyType, - ) -> Response: - ... + ) -> Response: ... @overload def update_pat_access( @@ -5337,8 +5267,7 @@ def update_pat_access( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, action: Literal["revoke"], - ) -> Response: - ... + ) -> Response: ... def update_pat_access( self, @@ -5389,8 +5318,7 @@ async def async_update_pat_access( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgPersonalAccessTokensPatIdPostBodyType, - ) -> Response: - ... + ) -> Response: ... @overload async def async_update_pat_access( @@ -5401,8 +5329,7 @@ async def async_update_pat_access( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, action: Literal["revoke"], - ) -> Response: - ... + ) -> Response: ... async def async_update_pat_access( self, @@ -5580,8 +5507,7 @@ def create_or_update_custom_properties( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgPropertiesSchemaPatchBodyType, - ) -> Response[List[OrgCustomProperty]]: - ... + ) -> Response[List[OrgCustomProperty]]: ... @overload def create_or_update_custom_properties( @@ -5591,8 +5517,7 @@ def create_or_update_custom_properties( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, properties: List[OrgCustomPropertyType], - ) -> Response[List[OrgCustomProperty]]: - ... + ) -> Response[List[OrgCustomProperty]]: ... def create_or_update_custom_properties( self, @@ -5642,8 +5567,7 @@ async def async_create_or_update_custom_properties( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgPropertiesSchemaPatchBodyType, - ) -> Response[List[OrgCustomProperty]]: - ... + ) -> Response[List[OrgCustomProperty]]: ... @overload async def async_create_or_update_custom_properties( @@ -5653,8 +5577,7 @@ async def async_create_or_update_custom_properties( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, properties: List[OrgCustomPropertyType], - ) -> Response[List[OrgCustomProperty]]: - ... + ) -> Response[List[OrgCustomProperty]]: ... async def async_create_or_update_custom_properties( self, @@ -5757,8 +5680,7 @@ def create_or_update_custom_property( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgPropertiesSchemaCustomPropertyNamePutBodyType, - ) -> Response[OrgCustomProperty]: - ... + ) -> Response[OrgCustomProperty]: ... @overload def create_or_update_custom_property( @@ -5773,8 +5695,7 @@ def create_or_update_custom_property( default_value: Missing[Union[str, None]] = UNSET, description: Missing[Union[str, None]] = UNSET, allowed_values: Missing[Union[List[str], None]] = UNSET, - ) -> Response[OrgCustomProperty]: - ... + ) -> Response[OrgCustomProperty]: ... def create_or_update_custom_property( self, @@ -5826,8 +5747,7 @@ async def async_create_or_update_custom_property( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgPropertiesSchemaCustomPropertyNamePutBodyType, - ) -> Response[OrgCustomProperty]: - ... + ) -> Response[OrgCustomProperty]: ... @overload async def async_create_or_update_custom_property( @@ -5842,8 +5762,7 @@ async def async_create_or_update_custom_property( default_value: Missing[Union[str, None]] = UNSET, description: Missing[Union[str, None]] = UNSET, allowed_values: Missing[Union[List[str], None]] = UNSET, - ) -> Response[OrgCustomProperty]: - ... + ) -> Response[OrgCustomProperty]: ... async def async_create_or_update_custom_property( self, @@ -6018,8 +5937,7 @@ def create_or_update_custom_properties_values_for_repos( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgPropertiesValuesPatchBodyType, - ) -> Response: - ... + ) -> Response: ... @overload def create_or_update_custom_properties_values_for_repos( @@ -6030,8 +5948,7 @@ def create_or_update_custom_properties_values_for_repos( headers: Optional[Dict[str, str]] = None, repository_names: List[str], properties: List[CustomPropertyValueType], - ) -> Response: - ... + ) -> Response: ... def create_or_update_custom_properties_values_for_repos( self, @@ -6079,8 +5996,7 @@ async def async_create_or_update_custom_properties_values_for_repos( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgPropertiesValuesPatchBodyType, - ) -> Response: - ... + ) -> Response: ... @overload async def async_create_or_update_custom_properties_values_for_repos( @@ -6091,8 +6007,7 @@ async def async_create_or_update_custom_properties_values_for_repos( headers: Optional[Dict[str, str]] = None, repository_names: List[str], properties: List[CustomPropertyValueType], - ) -> Response: - ... + ) -> Response: ... async def async_create_or_update_custom_properties_values_for_repos( self, @@ -6508,8 +6423,7 @@ def enable_or_disable_security_product_on_all_org_repos( *, headers: Optional[Dict[str, str]] = None, data: Missing[OrgsOrgSecurityProductEnablementPostBodyType] = UNSET, - ) -> Response: - ... + ) -> Response: ... @overload def enable_or_disable_security_product_on_all_org_repos( @@ -6529,8 +6443,7 @@ def enable_or_disable_security_product_on_all_org_repos( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, query_suite: Missing[Literal["default", "extended"]] = UNSET, - ) -> Response: - ... + ) -> Response: ... def enable_or_disable_security_product_on_all_org_repos( self, @@ -6590,8 +6503,7 @@ async def async_enable_or_disable_security_product_on_all_org_repos( *, headers: Optional[Dict[str, str]] = None, data: Missing[OrgsOrgSecurityProductEnablementPostBodyType] = UNSET, - ) -> Response: - ... + ) -> Response: ... @overload async def async_enable_or_disable_security_product_on_all_org_repos( @@ -6611,8 +6523,7 @@ async def async_enable_or_disable_security_product_on_all_org_repos( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, query_suite: Missing[Literal["default", "extended"]] = UNSET, - ) -> Response: - ... + ) -> Response: ... async def async_enable_or_disable_security_product_on_all_org_repos( self, @@ -6786,8 +6697,7 @@ def update_membership_for_authenticated_user( *, headers: Optional[Dict[str, str]] = None, data: UserMembershipsOrgsOrgPatchBodyType, - ) -> Response[OrgMembership]: - ... + ) -> Response[OrgMembership]: ... @overload def update_membership_for_authenticated_user( @@ -6797,8 +6707,7 @@ def update_membership_for_authenticated_user( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, state: Literal["active"], - ) -> Response[OrgMembership]: - ... + ) -> Response[OrgMembership]: ... def update_membership_for_authenticated_user( self, @@ -6848,8 +6757,7 @@ async def async_update_membership_for_authenticated_user( *, headers: Optional[Dict[str, str]] = None, data: UserMembershipsOrgsOrgPatchBodyType, - ) -> Response[OrgMembership]: - ... + ) -> Response[OrgMembership]: ... @overload async def async_update_membership_for_authenticated_user( @@ -6859,8 +6767,7 @@ async def async_update_membership_for_authenticated_user( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, state: Literal["active"], - ) -> Response[OrgMembership]: - ... + ) -> Response[OrgMembership]: ... async def async_update_membership_for_authenticated_user( self, diff --git a/githubkit/versions/ghec_v2022_11_28/rest/packages.py b/githubkit/versions/ghec_v2022_11_28/rest/packages.py index 8571396ce..b55514355 100644 --- a/githubkit/versions/ghec_v2022_11_28/rest/packages.py +++ b/githubkit/versions/ghec_v2022_11_28/rest/packages.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref diff --git a/githubkit/versions/ghec_v2022_11_28/rest/projects.py b/githubkit/versions/ghec_v2022_11_28/rest/projects.py index c26b2b5cc..db8fad2d0 100644 --- a/githubkit/versions/ghec_v2022_11_28/rest/projects.py +++ b/githubkit/versions/ghec_v2022_11_28/rest/projects.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref @@ -146,8 +145,7 @@ def create_for_org( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgProjectsPostBodyType, - ) -> Response[Project]: - ... + ) -> Response[Project]: ... @overload def create_for_org( @@ -158,8 +156,7 @@ def create_for_org( headers: Optional[Dict[str, str]] = None, name: str, body: Missing[str] = UNSET, - ) -> Response[Project]: - ... + ) -> Response[Project]: ... def create_for_org( self, @@ -211,8 +208,7 @@ async def async_create_for_org( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgProjectsPostBodyType, - ) -> Response[Project]: - ... + ) -> Response[Project]: ... @overload async def async_create_for_org( @@ -223,8 +219,7 @@ async def async_create_for_org( headers: Optional[Dict[str, str]] = None, name: str, body: Missing[str] = UNSET, - ) -> Response[Project]: - ... + ) -> Response[Project]: ... async def async_create_for_org( self, @@ -378,8 +373,7 @@ def update_card( *, headers: Optional[Dict[str, str]] = None, data: Missing[ProjectsColumnsCardsCardIdPatchBodyType] = UNSET, - ) -> Response[ProjectCard]: - ... + ) -> Response[ProjectCard]: ... @overload def update_card( @@ -390,8 +384,7 @@ def update_card( headers: Optional[Dict[str, str]] = None, note: Missing[Union[str, None]] = UNSET, archived: Missing[bool] = UNSET, - ) -> Response[ProjectCard]: - ... + ) -> Response[ProjectCard]: ... def update_card( self, @@ -442,8 +435,7 @@ async def async_update_card( *, headers: Optional[Dict[str, str]] = None, data: Missing[ProjectsColumnsCardsCardIdPatchBodyType] = UNSET, - ) -> Response[ProjectCard]: - ... + ) -> Response[ProjectCard]: ... @overload async def async_update_card( @@ -454,8 +446,7 @@ async def async_update_card( headers: Optional[Dict[str, str]] = None, note: Missing[Union[str, None]] = UNSET, archived: Missing[bool] = UNSET, - ) -> Response[ProjectCard]: - ... + ) -> Response[ProjectCard]: ... async def async_update_card( self, @@ -506,8 +497,7 @@ def move_card( *, headers: Optional[Dict[str, str]] = None, data: ProjectsColumnsCardsCardIdMovesPostBodyType, - ) -> Response[ProjectsColumnsCardsCardIdMovesPostResponse201]: - ... + ) -> Response[ProjectsColumnsCardsCardIdMovesPostResponse201]: ... @overload def move_card( @@ -518,8 +508,7 @@ def move_card( headers: Optional[Dict[str, str]] = None, position: str, column_id: Missing[int] = UNSET, - ) -> Response[ProjectsColumnsCardsCardIdMovesPostResponse201]: - ... + ) -> Response[ProjectsColumnsCardsCardIdMovesPostResponse201]: ... def move_card( self, @@ -572,8 +561,7 @@ async def async_move_card( *, headers: Optional[Dict[str, str]] = None, data: ProjectsColumnsCardsCardIdMovesPostBodyType, - ) -> Response[ProjectsColumnsCardsCardIdMovesPostResponse201]: - ... + ) -> Response[ProjectsColumnsCardsCardIdMovesPostResponse201]: ... @overload async def async_move_card( @@ -584,8 +572,7 @@ async def async_move_card( headers: Optional[Dict[str, str]] = None, position: str, column_id: Missing[int] = UNSET, - ) -> Response[ProjectsColumnsCardsCardIdMovesPostResponse201]: - ... + ) -> Response[ProjectsColumnsCardsCardIdMovesPostResponse201]: ... async def async_move_card( self, @@ -738,8 +725,7 @@ def update_column( *, headers: Optional[Dict[str, str]] = None, data: ProjectsColumnsColumnIdPatchBodyType, - ) -> Response[ProjectColumn]: - ... + ) -> Response[ProjectColumn]: ... @overload def update_column( @@ -749,8 +735,7 @@ def update_column( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, name: str, - ) -> Response[ProjectColumn]: - ... + ) -> Response[ProjectColumn]: ... def update_column( self, @@ -794,8 +779,7 @@ async def async_update_column( *, headers: Optional[Dict[str, str]] = None, data: ProjectsColumnsColumnIdPatchBodyType, - ) -> Response[ProjectColumn]: - ... + ) -> Response[ProjectColumn]: ... @overload async def async_update_column( @@ -805,8 +789,7 @@ async def async_update_column( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, name: str, - ) -> Response[ProjectColumn]: - ... + ) -> Response[ProjectColumn]: ... async def async_update_column( self, @@ -927,8 +910,7 @@ def create_card( ProjectsColumnsColumnIdCardsPostBodyOneof0Type, ProjectsColumnsColumnIdCardsPostBodyOneof1Type, ], - ) -> Response[ProjectCard]: - ... + ) -> Response[ProjectCard]: ... @overload def create_card( @@ -938,8 +920,7 @@ def create_card( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, note: Union[str, None], - ) -> Response[ProjectCard]: - ... + ) -> Response[ProjectCard]: ... @overload def create_card( @@ -950,8 +931,7 @@ def create_card( headers: Optional[Dict[str, str]] = None, content_id: int, content_type: str, - ) -> Response[ProjectCard]: - ... + ) -> Response[ProjectCard]: ... def create_card( self, @@ -1021,8 +1001,7 @@ async def async_create_card( ProjectsColumnsColumnIdCardsPostBodyOneof0Type, ProjectsColumnsColumnIdCardsPostBodyOneof1Type, ], - ) -> Response[ProjectCard]: - ... + ) -> Response[ProjectCard]: ... @overload async def async_create_card( @@ -1032,8 +1011,7 @@ async def async_create_card( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, note: Union[str, None], - ) -> Response[ProjectCard]: - ... + ) -> Response[ProjectCard]: ... @overload async def async_create_card( @@ -1044,8 +1022,7 @@ async def async_create_card( headers: Optional[Dict[str, str]] = None, content_id: int, content_type: str, - ) -> Response[ProjectCard]: - ... + ) -> Response[ProjectCard]: ... async def async_create_card( self, @@ -1112,8 +1089,7 @@ def move_column( *, headers: Optional[Dict[str, str]] = None, data: ProjectsColumnsColumnIdMovesPostBodyType, - ) -> Response[ProjectsColumnsColumnIdMovesPostResponse201]: - ... + ) -> Response[ProjectsColumnsColumnIdMovesPostResponse201]: ... @overload def move_column( @@ -1123,8 +1099,7 @@ def move_column( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, position: str, - ) -> Response[ProjectsColumnsColumnIdMovesPostResponse201]: - ... + ) -> Response[ProjectsColumnsColumnIdMovesPostResponse201]: ... def move_column( self, @@ -1174,8 +1149,7 @@ async def async_move_column( *, headers: Optional[Dict[str, str]] = None, data: ProjectsColumnsColumnIdMovesPostBodyType, - ) -> Response[ProjectsColumnsColumnIdMovesPostResponse201]: - ... + ) -> Response[ProjectsColumnsColumnIdMovesPostResponse201]: ... @overload async def async_move_column( @@ -1185,8 +1159,7 @@ async def async_move_column( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, position: str, - ) -> Response[ProjectsColumnsColumnIdMovesPostResponse201]: - ... + ) -> Response[ProjectsColumnsColumnIdMovesPostResponse201]: ... async def async_move_column( self, @@ -1338,8 +1311,7 @@ def update( *, headers: Optional[Dict[str, str]] = None, data: Missing[ProjectsProjectIdPatchBodyType] = UNSET, - ) -> Response[Project]: - ... + ) -> Response[Project]: ... @overload def update( @@ -1355,8 +1327,7 @@ def update( Literal["read", "write", "admin", "none"] ] = UNSET, private: Missing[bool] = UNSET, - ) -> Response[Project]: - ... + ) -> Response[Project]: ... def update( self, @@ -1408,8 +1379,7 @@ async def async_update( *, headers: Optional[Dict[str, str]] = None, data: Missing[ProjectsProjectIdPatchBodyType] = UNSET, - ) -> Response[Project]: - ... + ) -> Response[Project]: ... @overload async def async_update( @@ -1425,8 +1395,7 @@ async def async_update( Literal["read", "write", "admin", "none"] ] = UNSET, private: Missing[bool] = UNSET, - ) -> Response[Project]: - ... + ) -> Response[Project]: ... async def async_update( self, @@ -1559,8 +1528,7 @@ def add_collaborator( data: Missing[ Union[ProjectsProjectIdCollaboratorsUsernamePutBodyType, None] ] = UNSET, - ) -> Response: - ... + ) -> Response: ... @overload def add_collaborator( @@ -1571,8 +1539,7 @@ def add_collaborator( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, permission: Missing[Literal["read", "write", "admin"]] = UNSET, - ) -> Response: - ... + ) -> Response: ... def add_collaborator( self, @@ -1631,8 +1598,7 @@ async def async_add_collaborator( data: Missing[ Union[ProjectsProjectIdCollaboratorsUsernamePutBodyType, None] ] = UNSET, - ) -> Response: - ... + ) -> Response: ... @overload async def async_add_collaborator( @@ -1643,8 +1609,7 @@ async def async_add_collaborator( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, permission: Missing[Literal["read", "write", "admin"]] = UNSET, - ) -> Response: - ... + ) -> Response: ... async def async_add_collaborator( self, @@ -1880,8 +1845,7 @@ def create_column( *, headers: Optional[Dict[str, str]] = None, data: ProjectsProjectIdColumnsPostBodyType, - ) -> Response[ProjectColumn]: - ... + ) -> Response[ProjectColumn]: ... @overload def create_column( @@ -1891,8 +1855,7 @@ def create_column( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, name: str, - ) -> Response[ProjectColumn]: - ... + ) -> Response[ProjectColumn]: ... def create_column( self, @@ -1942,8 +1905,7 @@ async def async_create_column( *, headers: Optional[Dict[str, str]] = None, data: ProjectsProjectIdColumnsPostBodyType, - ) -> Response[ProjectColumn]: - ... + ) -> Response[ProjectColumn]: ... @overload async def async_create_column( @@ -1953,8 +1915,7 @@ async def async_create_column( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, name: str, - ) -> Response[ProjectColumn]: - ... + ) -> Response[ProjectColumn]: ... async def async_create_column( self, @@ -2087,8 +2048,7 @@ def create_for_repo( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoProjectsPostBodyType, - ) -> Response[Project]: - ... + ) -> Response[Project]: ... @overload def create_for_repo( @@ -2100,8 +2060,7 @@ def create_for_repo( headers: Optional[Dict[str, str]] = None, name: str, body: Missing[str] = UNSET, - ) -> Response[Project]: - ... + ) -> Response[Project]: ... def create_for_repo( self, @@ -2155,8 +2114,7 @@ async def async_create_for_repo( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoProjectsPostBodyType, - ) -> Response[Project]: - ... + ) -> Response[Project]: ... @overload async def async_create_for_repo( @@ -2168,8 +2126,7 @@ async def async_create_for_repo( headers: Optional[Dict[str, str]] = None, name: str, body: Missing[str] = UNSET, - ) -> Response[Project]: - ... + ) -> Response[Project]: ... async def async_create_for_repo( self, @@ -2221,8 +2178,7 @@ def create_for_authenticated_user( *, headers: Optional[Dict[str, str]] = None, data: UserProjectsPostBodyType, - ) -> Response[Project]: - ... + ) -> Response[Project]: ... @overload def create_for_authenticated_user( @@ -2232,8 +2188,7 @@ def create_for_authenticated_user( headers: Optional[Dict[str, str]] = None, name: str, body: Missing[Union[str, None]] = UNSET, - ) -> Response[Project]: - ... + ) -> Response[Project]: ... def create_for_authenticated_user( self, @@ -2281,8 +2236,7 @@ async def async_create_for_authenticated_user( *, headers: Optional[Dict[str, str]] = None, data: UserProjectsPostBodyType, - ) -> Response[Project]: - ... + ) -> Response[Project]: ... @overload async def async_create_for_authenticated_user( @@ -2292,8 +2246,7 @@ async def async_create_for_authenticated_user( headers: Optional[Dict[str, str]] = None, name: str, body: Missing[Union[str, None]] = UNSET, - ) -> Response[Project]: - ... + ) -> Response[Project]: ... async def async_create_for_authenticated_user( self, diff --git a/githubkit/versions/ghec_v2022_11_28/rest/pulls.py b/githubkit/versions/ghec_v2022_11_28/rest/pulls.py index bb2287d47..87d4a53dc 100644 --- a/githubkit/versions/ghec_v2022_11_28/rest/pulls.py +++ b/githubkit/versions/ghec_v2022_11_28/rest/pulls.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref @@ -176,8 +175,7 @@ def create( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoPullsPostBodyType, - ) -> Response[PullRequest]: - ... + ) -> Response[PullRequest]: ... @overload def create( @@ -195,8 +193,7 @@ def create( maintainer_can_modify: Missing[bool] = UNSET, draft: Missing[bool] = UNSET, issue: Missing[int] = UNSET, - ) -> Response[PullRequest]: - ... + ) -> Response[PullRequest]: ... def create( self, @@ -247,8 +244,7 @@ async def async_create( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoPullsPostBodyType, - ) -> Response[PullRequest]: - ... + ) -> Response[PullRequest]: ... @overload async def async_create( @@ -266,8 +262,7 @@ async def async_create( maintainer_can_modify: Missing[bool] = UNSET, draft: Missing[bool] = UNSET, issue: Missing[int] = UNSET, - ) -> Response[PullRequest]: - ... + ) -> Response[PullRequest]: ... async def async_create( self, @@ -497,8 +492,7 @@ def update_review_comment( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoPullsCommentsCommentIdPatchBodyType, - ) -> Response[PullRequestReviewComment]: - ... + ) -> Response[PullRequestReviewComment]: ... @overload def update_review_comment( @@ -510,8 +504,7 @@ def update_review_comment( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, body: str, - ) -> Response[PullRequestReviewComment]: - ... + ) -> Response[PullRequestReviewComment]: ... def update_review_comment( self, @@ -558,8 +551,7 @@ async def async_update_review_comment( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoPullsCommentsCommentIdPatchBodyType, - ) -> Response[PullRequestReviewComment]: - ... + ) -> Response[PullRequestReviewComment]: ... @overload async def async_update_review_comment( @@ -571,8 +563,7 @@ async def async_update_review_comment( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, body: str, - ) -> Response[PullRequestReviewComment]: - ... + ) -> Response[PullRequestReviewComment]: ... async def async_update_review_comment( self, @@ -683,8 +674,7 @@ def update( *, headers: Optional[Dict[str, str]] = None, data: Missing[ReposOwnerRepoPullsPullNumberPatchBodyType] = UNSET, - ) -> Response[PullRequest]: - ... + ) -> Response[PullRequest]: ... @overload def update( @@ -700,8 +690,7 @@ def update( state: Missing[Literal["open", "closed"]] = UNSET, base: Missing[str] = UNSET, maintainer_can_modify: Missing[bool] = UNSET, - ) -> Response[PullRequest]: - ... + ) -> Response[PullRequest]: ... def update( self, @@ -754,8 +743,7 @@ async def async_update( *, headers: Optional[Dict[str, str]] = None, data: Missing[ReposOwnerRepoPullsPullNumberPatchBodyType] = UNSET, - ) -> Response[PullRequest]: - ... + ) -> Response[PullRequest]: ... @overload async def async_update( @@ -771,8 +759,7 @@ async def async_update( state: Missing[Literal["open", "closed"]] = UNSET, base: Missing[str] = UNSET, maintainer_can_modify: Missing[bool] = UNSET, - ) -> Response[PullRequest]: - ... + ) -> Response[PullRequest]: ... async def async_update( self, @@ -903,8 +890,7 @@ def create_review_comment( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoPullsPullNumberCommentsPostBodyType, - ) -> Response[PullRequestReviewComment]: - ... + ) -> Response[PullRequestReviewComment]: ... @overload def create_review_comment( @@ -925,8 +911,7 @@ def create_review_comment( start_side: Missing[Literal["LEFT", "RIGHT", "side"]] = UNSET, in_reply_to: Missing[int] = UNSET, subject_type: Missing[Literal["line", "file"]] = UNSET, - ) -> Response[PullRequestReviewComment]: - ... + ) -> Response[PullRequestReviewComment]: ... def create_review_comment( self, @@ -979,8 +964,7 @@ async def async_create_review_comment( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoPullsPullNumberCommentsPostBodyType, - ) -> Response[PullRequestReviewComment]: - ... + ) -> Response[PullRequestReviewComment]: ... @overload async def async_create_review_comment( @@ -1001,8 +985,7 @@ async def async_create_review_comment( start_side: Missing[Literal["LEFT", "RIGHT", "side"]] = UNSET, in_reply_to: Missing[int] = UNSET, subject_type: Missing[Literal["line", "file"]] = UNSET, - ) -> Response[PullRequestReviewComment]: - ... + ) -> Response[PullRequestReviewComment]: ... async def async_create_review_comment( self, @@ -1056,8 +1039,7 @@ def create_reply_for_review_comment( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoPullsPullNumberCommentsCommentIdRepliesPostBodyType, - ) -> Response[PullRequestReviewComment]: - ... + ) -> Response[PullRequestReviewComment]: ... @overload def create_reply_for_review_comment( @@ -1070,8 +1052,7 @@ def create_reply_for_review_comment( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, body: str, - ) -> Response[PullRequestReviewComment]: - ... + ) -> Response[PullRequestReviewComment]: ... def create_reply_for_review_comment( self, @@ -1128,8 +1109,7 @@ async def async_create_reply_for_review_comment( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoPullsPullNumberCommentsCommentIdRepliesPostBodyType, - ) -> Response[PullRequestReviewComment]: - ... + ) -> Response[PullRequestReviewComment]: ... @overload async def async_create_reply_for_review_comment( @@ -1142,8 +1122,7 @@ async def async_create_reply_for_review_comment( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, body: str, - ) -> Response[PullRequestReviewComment]: - ... + ) -> Response[PullRequestReviewComment]: ... async def async_create_reply_for_review_comment( self, @@ -1395,8 +1374,7 @@ def merge( data: Missing[ Union[ReposOwnerRepoPullsPullNumberMergePutBodyType, None] ] = UNSET, - ) -> Response[PullRequestMergeResult]: - ... + ) -> Response[PullRequestMergeResult]: ... @overload def merge( @@ -1411,8 +1389,7 @@ def merge( commit_message: Missing[str] = UNSET, sha: Missing[str] = UNSET, merge_method: Missing[Literal["merge", "squash", "rebase"]] = UNSET, - ) -> Response[PullRequestMergeResult]: - ... + ) -> Response[PullRequestMergeResult]: ... def merge( self, @@ -1478,8 +1455,7 @@ async def async_merge( data: Missing[ Union[ReposOwnerRepoPullsPullNumberMergePutBodyType, None] ] = UNSET, - ) -> Response[PullRequestMergeResult]: - ... + ) -> Response[PullRequestMergeResult]: ... @overload async def async_merge( @@ -1494,8 +1470,7 @@ async def async_merge( commit_message: Missing[str] = UNSET, sha: Missing[str] = UNSET, merge_method: Missing[Literal["merge", "squash", "rebase"]] = UNSET, - ) -> Response[PullRequestMergeResult]: - ... + ) -> Response[PullRequestMergeResult]: ... async def async_merge( self, @@ -1610,8 +1585,7 @@ def request_reviewers( ReposOwnerRepoPullsPullNumberRequestedReviewersPostBodyAnyof1Type, ] ] = UNSET, - ) -> Response[PullRequestSimple]: - ... + ) -> Response[PullRequestSimple]: ... @overload def request_reviewers( @@ -1624,8 +1598,7 @@ def request_reviewers( headers: Optional[Dict[str, str]] = None, reviewers: List[str], team_reviewers: Missing[List[str]] = UNSET, - ) -> Response[PullRequestSimple]: - ... + ) -> Response[PullRequestSimple]: ... @overload def request_reviewers( @@ -1638,8 +1611,7 @@ def request_reviewers( headers: Optional[Dict[str, str]] = None, reviewers: Missing[List[str]] = UNSET, team_reviewers: List[str], - ) -> Response[PullRequestSimple]: - ... + ) -> Response[PullRequestSimple]: ... def request_reviewers( self, @@ -1709,8 +1681,7 @@ async def async_request_reviewers( ReposOwnerRepoPullsPullNumberRequestedReviewersPostBodyAnyof1Type, ] ] = UNSET, - ) -> Response[PullRequestSimple]: - ... + ) -> Response[PullRequestSimple]: ... @overload async def async_request_reviewers( @@ -1723,8 +1694,7 @@ async def async_request_reviewers( headers: Optional[Dict[str, str]] = None, reviewers: List[str], team_reviewers: Missing[List[str]] = UNSET, - ) -> Response[PullRequestSimple]: - ... + ) -> Response[PullRequestSimple]: ... @overload async def async_request_reviewers( @@ -1737,8 +1707,7 @@ async def async_request_reviewers( headers: Optional[Dict[str, str]] = None, reviewers: Missing[List[str]] = UNSET, team_reviewers: List[str], - ) -> Response[PullRequestSimple]: - ... + ) -> Response[PullRequestSimple]: ... async def async_request_reviewers( self, @@ -1803,8 +1772,7 @@ def remove_requested_reviewers( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoPullsPullNumberRequestedReviewersDeleteBodyType, - ) -> Response[PullRequestSimple]: - ... + ) -> Response[PullRequestSimple]: ... @overload def remove_requested_reviewers( @@ -1817,8 +1785,7 @@ def remove_requested_reviewers( headers: Optional[Dict[str, str]] = None, reviewers: List[str], team_reviewers: Missing[List[str]] = UNSET, - ) -> Response[PullRequestSimple]: - ... + ) -> Response[PullRequestSimple]: ... def remove_requested_reviewers( self, @@ -1873,8 +1840,7 @@ async def async_remove_requested_reviewers( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoPullsPullNumberRequestedReviewersDeleteBodyType, - ) -> Response[PullRequestSimple]: - ... + ) -> Response[PullRequestSimple]: ... @overload async def async_remove_requested_reviewers( @@ -1887,8 +1853,7 @@ async def async_remove_requested_reviewers( headers: Optional[Dict[str, str]] = None, reviewers: List[str], team_reviewers: Missing[List[str]] = UNSET, - ) -> Response[PullRequestSimple]: - ... + ) -> Response[PullRequestSimple]: ... async def async_remove_requested_reviewers( self, @@ -2009,8 +1974,7 @@ def create_review( *, headers: Optional[Dict[str, str]] = None, data: Missing[ReposOwnerRepoPullsPullNumberReviewsPostBodyType] = UNSET, - ) -> Response[PullRequestReview]: - ... + ) -> Response[PullRequestReview]: ... @overload def create_review( @@ -2027,8 +1991,7 @@ def create_review( comments: Missing[ List[ReposOwnerRepoPullsPullNumberReviewsPostBodyPropCommentsItemsType] ] = UNSET, - ) -> Response[PullRequestReview]: - ... + ) -> Response[PullRequestReview]: ... def create_review( self, @@ -2081,8 +2044,7 @@ async def async_create_review( *, headers: Optional[Dict[str, str]] = None, data: Missing[ReposOwnerRepoPullsPullNumberReviewsPostBodyType] = UNSET, - ) -> Response[PullRequestReview]: - ... + ) -> Response[PullRequestReview]: ... @overload async def async_create_review( @@ -2099,8 +2061,7 @@ async def async_create_review( comments: Missing[ List[ReposOwnerRepoPullsPullNumberReviewsPostBodyPropCommentsItemsType] ] = UNSET, - ) -> Response[PullRequestReview]: - ... + ) -> Response[PullRequestReview]: ... async def async_create_review( self, @@ -2208,8 +2169,7 @@ def update_review( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoPullsPullNumberReviewsReviewIdPutBodyType, - ) -> Response[PullRequestReview]: - ... + ) -> Response[PullRequestReview]: ... @overload def update_review( @@ -2222,8 +2182,7 @@ def update_review( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, body: str, - ) -> Response[PullRequestReview]: - ... + ) -> Response[PullRequestReview]: ... def update_review( self, @@ -2278,8 +2237,7 @@ async def async_update_review( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoPullsPullNumberReviewsReviewIdPutBodyType, - ) -> Response[PullRequestReview]: - ... + ) -> Response[PullRequestReview]: ... @overload async def async_update_review( @@ -2292,8 +2250,7 @@ async def async_update_review( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, body: str, - ) -> Response[PullRequestReview]: - ... + ) -> Response[PullRequestReview]: ... async def async_update_review( self, @@ -2478,8 +2435,7 @@ def dismiss_review( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoPullsPullNumberReviewsReviewIdDismissalsPutBodyType, - ) -> Response[PullRequestReview]: - ... + ) -> Response[PullRequestReview]: ... @overload def dismiss_review( @@ -2493,8 +2449,7 @@ def dismiss_review( headers: Optional[Dict[str, str]] = None, message: str, event: Missing[Literal["DISMISS"]] = UNSET, - ) -> Response[PullRequestReview]: - ... + ) -> Response[PullRequestReview]: ... def dismiss_review( self, @@ -2555,8 +2510,7 @@ async def async_dismiss_review( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoPullsPullNumberReviewsReviewIdDismissalsPutBodyType, - ) -> Response[PullRequestReview]: - ... + ) -> Response[PullRequestReview]: ... @overload async def async_dismiss_review( @@ -2570,8 +2524,7 @@ async def async_dismiss_review( headers: Optional[Dict[str, str]] = None, message: str, event: Missing[Literal["DISMISS"]] = UNSET, - ) -> Response[PullRequestReview]: - ... + ) -> Response[PullRequestReview]: ... async def async_dismiss_review( self, @@ -2632,8 +2585,7 @@ def submit_review( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoPullsPullNumberReviewsReviewIdEventsPostBodyType, - ) -> Response[PullRequestReview]: - ... + ) -> Response[PullRequestReview]: ... @overload def submit_review( @@ -2647,8 +2599,7 @@ def submit_review( headers: Optional[Dict[str, str]] = None, body: Missing[str] = UNSET, event: Literal["APPROVE", "REQUEST_CHANGES", "COMMENT"], - ) -> Response[PullRequestReview]: - ... + ) -> Response[PullRequestReview]: ... def submit_review( self, @@ -2708,8 +2659,7 @@ async def async_submit_review( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoPullsPullNumberReviewsReviewIdEventsPostBodyType, - ) -> Response[PullRequestReview]: - ... + ) -> Response[PullRequestReview]: ... @overload async def async_submit_review( @@ -2723,8 +2673,7 @@ async def async_submit_review( headers: Optional[Dict[str, str]] = None, body: Missing[str] = UNSET, event: Literal["APPROVE", "REQUEST_CHANGES", "COMMENT"], - ) -> Response[PullRequestReview]: - ... + ) -> Response[PullRequestReview]: ... async def async_submit_review( self, @@ -2785,8 +2734,7 @@ def update_branch( data: Missing[ Union[ReposOwnerRepoPullsPullNumberUpdateBranchPutBodyType, None] ] = UNSET, - ) -> Response[ReposOwnerRepoPullsPullNumberUpdateBranchPutResponse202]: - ... + ) -> Response[ReposOwnerRepoPullsPullNumberUpdateBranchPutResponse202]: ... @overload def update_branch( @@ -2798,8 +2746,7 @@ def update_branch( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, expected_head_sha: Missing[str] = UNSET, - ) -> Response[ReposOwnerRepoPullsPullNumberUpdateBranchPutResponse202]: - ... + ) -> Response[ReposOwnerRepoPullsPullNumberUpdateBranchPutResponse202]: ... def update_branch( self, @@ -2860,8 +2807,7 @@ async def async_update_branch( data: Missing[ Union[ReposOwnerRepoPullsPullNumberUpdateBranchPutBodyType, None] ] = UNSET, - ) -> Response[ReposOwnerRepoPullsPullNumberUpdateBranchPutResponse202]: - ... + ) -> Response[ReposOwnerRepoPullsPullNumberUpdateBranchPutResponse202]: ... @overload async def async_update_branch( @@ -2873,8 +2819,7 @@ async def async_update_branch( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, expected_head_sha: Missing[str] = UNSET, - ) -> Response[ReposOwnerRepoPullsPullNumberUpdateBranchPutResponse202]: - ... + ) -> Response[ReposOwnerRepoPullsPullNumberUpdateBranchPutResponse202]: ... async def async_update_branch( self, diff --git a/githubkit/versions/ghec_v2022_11_28/rest/rate_limit.py b/githubkit/versions/ghec_v2022_11_28/rest/rate_limit.py index 475f76ca4..8257747d5 100644 --- a/githubkit/versions/ghec_v2022_11_28/rest/rate_limit.py +++ b/githubkit/versions/ghec_v2022_11_28/rest/rate_limit.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref diff --git a/githubkit/versions/ghec_v2022_11_28/rest/reactions.py b/githubkit/versions/ghec_v2022_11_28/rest/reactions.py index 7c40de128..57751ca9a 100644 --- a/githubkit/versions/ghec_v2022_11_28/rest/reactions.py +++ b/githubkit/versions/ghec_v2022_11_28/rest/reactions.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref @@ -146,8 +145,7 @@ def create_for_team_discussion_comment_in_org( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgTeamsTeamSlugDiscussionsDiscussionNumberCommentsCommentNumberReactionsPostBodyType, - ) -> Response[Reaction]: - ... + ) -> Response[Reaction]: ... @overload def create_for_team_discussion_comment_in_org( @@ -162,8 +160,7 @@ def create_for_team_discussion_comment_in_org( content: Literal[ "+1", "-1", "laugh", "confused", "heart", "hooray", "rocket", "eyes" ], - ) -> Response[Reaction]: - ... + ) -> Response[Reaction]: ... def create_for_team_discussion_comment_in_org( self, @@ -217,8 +214,7 @@ async def async_create_for_team_discussion_comment_in_org( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgTeamsTeamSlugDiscussionsDiscussionNumberCommentsCommentNumberReactionsPostBodyType, - ) -> Response[Reaction]: - ... + ) -> Response[Reaction]: ... @overload async def async_create_for_team_discussion_comment_in_org( @@ -233,8 +229,7 @@ async def async_create_for_team_discussion_comment_in_org( content: Literal[ "+1", "-1", "laugh", "confused", "heart", "hooray", "rocket", "eyes" ], - ) -> Response[Reaction]: - ... + ) -> Response[Reaction]: ... async def async_create_for_team_discussion_comment_in_org( self, @@ -409,8 +404,7 @@ def create_for_team_discussion_in_org( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgTeamsTeamSlugDiscussionsDiscussionNumberReactionsPostBodyType, - ) -> Response[Reaction]: - ... + ) -> Response[Reaction]: ... @overload def create_for_team_discussion_in_org( @@ -424,8 +418,7 @@ def create_for_team_discussion_in_org( content: Literal[ "+1", "-1", "laugh", "confused", "heart", "hooray", "rocket", "eyes" ], - ) -> Response[Reaction]: - ... + ) -> Response[Reaction]: ... def create_for_team_discussion_in_org( self, @@ -476,8 +469,7 @@ async def async_create_for_team_discussion_in_org( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgTeamsTeamSlugDiscussionsDiscussionNumberReactionsPostBodyType, - ) -> Response[Reaction]: - ... + ) -> Response[Reaction]: ... @overload async def async_create_for_team_discussion_in_org( @@ -491,8 +483,7 @@ async def async_create_for_team_discussion_in_org( content: Literal[ "+1", "-1", "laugh", "confused", "heart", "hooray", "rocket", "eyes" ], - ) -> Response[Reaction]: - ... + ) -> Response[Reaction]: ... async def async_create_for_team_discussion_in_org( self, @@ -669,8 +660,7 @@ def create_for_commit_comment( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoCommentsCommentIdReactionsPostBodyType, - ) -> Response[Reaction]: - ... + ) -> Response[Reaction]: ... @overload def create_for_commit_comment( @@ -684,8 +674,7 @@ def create_for_commit_comment( content: Literal[ "+1", "-1", "laugh", "confused", "heart", "hooray", "rocket", "eyes" ], - ) -> Response[Reaction]: - ... + ) -> Response[Reaction]: ... def create_for_commit_comment( self, @@ -738,8 +727,7 @@ async def async_create_for_commit_comment( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoCommentsCommentIdReactionsPostBodyType, - ) -> Response[Reaction]: - ... + ) -> Response[Reaction]: ... @overload async def async_create_for_commit_comment( @@ -753,8 +741,7 @@ async def async_create_for_commit_comment( content: Literal[ "+1", "-1", "laugh", "confused", "heart", "hooray", "rocket", "eyes" ], - ) -> Response[Reaction]: - ... + ) -> Response[Reaction]: ... async def async_create_for_commit_comment( self, @@ -933,8 +920,7 @@ def create_for_issue_comment( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoIssuesCommentsCommentIdReactionsPostBodyType, - ) -> Response[Reaction]: - ... + ) -> Response[Reaction]: ... @overload def create_for_issue_comment( @@ -948,8 +934,7 @@ def create_for_issue_comment( content: Literal[ "+1", "-1", "laugh", "confused", "heart", "hooray", "rocket", "eyes" ], - ) -> Response[Reaction]: - ... + ) -> Response[Reaction]: ... def create_for_issue_comment( self, @@ -1004,8 +989,7 @@ async def async_create_for_issue_comment( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoIssuesCommentsCommentIdReactionsPostBodyType, - ) -> Response[Reaction]: - ... + ) -> Response[Reaction]: ... @overload async def async_create_for_issue_comment( @@ -1019,8 +1003,7 @@ async def async_create_for_issue_comment( content: Literal[ "+1", "-1", "laugh", "confused", "heart", "hooray", "rocket", "eyes" ], - ) -> Response[Reaction]: - ... + ) -> Response[Reaction]: ... async def async_create_for_issue_comment( self, @@ -1203,8 +1186,7 @@ def create_for_issue( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoIssuesIssueNumberReactionsPostBodyType, - ) -> Response[Reaction]: - ... + ) -> Response[Reaction]: ... @overload def create_for_issue( @@ -1218,8 +1200,7 @@ def create_for_issue( content: Literal[ "+1", "-1", "laugh", "confused", "heart", "hooray", "rocket", "eyes" ], - ) -> Response[Reaction]: - ... + ) -> Response[Reaction]: ... def create_for_issue( self, @@ -1272,8 +1253,7 @@ async def async_create_for_issue( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoIssuesIssueNumberReactionsPostBodyType, - ) -> Response[Reaction]: - ... + ) -> Response[Reaction]: ... @overload async def async_create_for_issue( @@ -1287,8 +1267,7 @@ async def async_create_for_issue( content: Literal[ "+1", "-1", "laugh", "confused", "heart", "hooray", "rocket", "eyes" ], - ) -> Response[Reaction]: - ... + ) -> Response[Reaction]: ... async def async_create_for_issue( self, @@ -1467,8 +1446,7 @@ def create_for_pull_request_review_comment( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoPullsCommentsCommentIdReactionsPostBodyType, - ) -> Response[Reaction]: - ... + ) -> Response[Reaction]: ... @overload def create_for_pull_request_review_comment( @@ -1482,8 +1460,7 @@ def create_for_pull_request_review_comment( content: Literal[ "+1", "-1", "laugh", "confused", "heart", "hooray", "rocket", "eyes" ], - ) -> Response[Reaction]: - ... + ) -> Response[Reaction]: ... def create_for_pull_request_review_comment( self, @@ -1538,8 +1515,7 @@ async def async_create_for_pull_request_review_comment( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoPullsCommentsCommentIdReactionsPostBodyType, - ) -> Response[Reaction]: - ... + ) -> Response[Reaction]: ... @overload async def async_create_for_pull_request_review_comment( @@ -1553,8 +1529,7 @@ async def async_create_for_pull_request_review_comment( content: Literal[ "+1", "-1", "laugh", "confused", "heart", "hooray", "rocket", "eyes" ], - ) -> Response[Reaction]: - ... + ) -> Response[Reaction]: ... async def async_create_for_pull_request_review_comment( self, @@ -1735,8 +1710,7 @@ def create_for_release( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoReleasesReleaseIdReactionsPostBodyType, - ) -> Response[Reaction]: - ... + ) -> Response[Reaction]: ... @overload def create_for_release( @@ -1748,8 +1722,7 @@ def create_for_release( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, content: Literal["+1", "laugh", "heart", "hooray", "rocket", "eyes"], - ) -> Response[Reaction]: - ... + ) -> Response[Reaction]: ... def create_for_release( self, @@ -1802,8 +1775,7 @@ async def async_create_for_release( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoReleasesReleaseIdReactionsPostBodyType, - ) -> Response[Reaction]: - ... + ) -> Response[Reaction]: ... @overload async def async_create_for_release( @@ -1815,8 +1787,7 @@ async def async_create_for_release( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, content: Literal["+1", "laugh", "heart", "hooray", "rocket", "eyes"], - ) -> Response[Reaction]: - ... + ) -> Response[Reaction]: ... async def async_create_for_release( self, @@ -1989,8 +1960,7 @@ def create_for_team_discussion_comment_legacy( *, headers: Optional[Dict[str, str]] = None, data: TeamsTeamIdDiscussionsDiscussionNumberCommentsCommentNumberReactionsPostBodyType, - ) -> Response[Reaction]: - ... + ) -> Response[Reaction]: ... @overload def create_for_team_discussion_comment_legacy( @@ -2004,8 +1974,7 @@ def create_for_team_discussion_comment_legacy( content: Literal[ "+1", "-1", "laugh", "confused", "heart", "hooray", "rocket", "eyes" ], - ) -> Response[Reaction]: - ... + ) -> Response[Reaction]: ... def create_for_team_discussion_comment_legacy( self, @@ -2057,8 +2026,7 @@ async def async_create_for_team_discussion_comment_legacy( *, headers: Optional[Dict[str, str]] = None, data: TeamsTeamIdDiscussionsDiscussionNumberCommentsCommentNumberReactionsPostBodyType, - ) -> Response[Reaction]: - ... + ) -> Response[Reaction]: ... @overload async def async_create_for_team_discussion_comment_legacy( @@ -2072,8 +2040,7 @@ async def async_create_for_team_discussion_comment_legacy( content: Literal[ "+1", "-1", "laugh", "confused", "heart", "hooray", "rocket", "eyes" ], - ) -> Response[Reaction]: - ... + ) -> Response[Reaction]: ... async def async_create_for_team_discussion_comment_legacy( self, @@ -2200,8 +2167,7 @@ def create_for_team_discussion_legacy( *, headers: Optional[Dict[str, str]] = None, data: TeamsTeamIdDiscussionsDiscussionNumberReactionsPostBodyType, - ) -> Response[Reaction]: - ... + ) -> Response[Reaction]: ... @overload def create_for_team_discussion_legacy( @@ -2214,8 +2180,7 @@ def create_for_team_discussion_legacy( content: Literal[ "+1", "-1", "laugh", "confused", "heart", "hooray", "rocket", "eyes" ], - ) -> Response[Reaction]: - ... + ) -> Response[Reaction]: ... def create_for_team_discussion_legacy( self, @@ -2264,8 +2229,7 @@ async def async_create_for_team_discussion_legacy( *, headers: Optional[Dict[str, str]] = None, data: TeamsTeamIdDiscussionsDiscussionNumberReactionsPostBodyType, - ) -> Response[Reaction]: - ... + ) -> Response[Reaction]: ... @overload async def async_create_for_team_discussion_legacy( @@ -2278,8 +2242,7 @@ async def async_create_for_team_discussion_legacy( content: Literal[ "+1", "-1", "laugh", "confused", "heart", "hooray", "rocket", "eyes" ], - ) -> Response[Reaction]: - ... + ) -> Response[Reaction]: ... async def async_create_for_team_discussion_legacy( self, diff --git a/githubkit/versions/ghec_v2022_11_28/rest/repos.py b/githubkit/versions/ghec_v2022_11_28/rest/repos.py index 5c59db17b..ff50348ca 100644 --- a/githubkit/versions/ghec_v2022_11_28/rest/repos.py +++ b/githubkit/versions/ghec_v2022_11_28/rest/repos.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref @@ -328,8 +327,7 @@ def create_in_org( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgReposPostBodyType, - ) -> Response[FullRepository]: - ... + ) -> Response[FullRepository]: ... @overload def create_in_org( @@ -369,8 +367,7 @@ def create_in_org( custom_properties: Missing[ OrgsOrgReposPostBodyPropCustomPropertiesType ] = UNSET, - ) -> Response[FullRepository]: - ... + ) -> Response[FullRepository]: ... def create_in_org( self, @@ -419,8 +416,7 @@ async def async_create_in_org( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgReposPostBodyType, - ) -> Response[FullRepository]: - ... + ) -> Response[FullRepository]: ... @overload async def async_create_in_org( @@ -460,8 +456,7 @@ async def async_create_in_org( custom_properties: Missing[ OrgsOrgReposPostBodyPropCustomPropertiesType ] = UNSET, - ) -> Response[FullRepository]: - ... + ) -> Response[FullRepository]: ... async def async_create_in_org( self, @@ -580,8 +575,7 @@ def create_org_ruleset( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgRulesetsPostBodyType, - ) -> Response[RepositoryRuleset]: - ... + ) -> Response[RepositoryRuleset]: ... @overload def create_org_ruleset( @@ -622,8 +616,7 @@ def create_org_ruleset( ] ] ] = UNSET, - ) -> Response[RepositoryRuleset]: - ... + ) -> Response[RepositoryRuleset]: ... def create_org_ruleset( self, @@ -667,8 +660,7 @@ async def async_create_org_ruleset( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgRulesetsPostBodyType, - ) -> Response[RepositoryRuleset]: - ... + ) -> Response[RepositoryRuleset]: ... @overload async def async_create_org_ruleset( @@ -709,8 +701,7 @@ async def async_create_org_ruleset( ] ] ] = UNSET, - ) -> Response[RepositoryRuleset]: - ... + ) -> Response[RepositoryRuleset]: ... async def async_create_org_ruleset( self, @@ -945,8 +936,7 @@ def update_org_ruleset( *, headers: Optional[Dict[str, str]] = None, data: Missing[OrgsOrgRulesetsRulesetIdPutBodyType] = UNSET, - ) -> Response[RepositoryRuleset]: - ... + ) -> Response[RepositoryRuleset]: ... @overload def update_org_ruleset( @@ -988,8 +978,7 @@ def update_org_ruleset( ] ] ] = UNSET, - ) -> Response[RepositoryRuleset]: - ... + ) -> Response[RepositoryRuleset]: ... def update_org_ruleset( self, @@ -1039,8 +1028,7 @@ async def async_update_org_ruleset( *, headers: Optional[Dict[str, str]] = None, data: Missing[OrgsOrgRulesetsRulesetIdPutBodyType] = UNSET, - ) -> Response[RepositoryRuleset]: - ... + ) -> Response[RepositoryRuleset]: ... @overload async def async_update_org_ruleset( @@ -1082,8 +1070,7 @@ async def async_update_org_ruleset( ] ] ] = UNSET, - ) -> Response[RepositoryRuleset]: - ... + ) -> Response[RepositoryRuleset]: ... async def async_update_org_ruleset( self, @@ -1285,8 +1272,7 @@ def update( *, headers: Optional[Dict[str, str]] = None, data: Missing[ReposOwnerRepoPatchBodyType] = UNSET, - ) -> Response[FullRepository]: - ... + ) -> Response[FullRepository]: ... @overload def update( @@ -1327,8 +1313,7 @@ def update( archived: Missing[bool] = UNSET, allow_forking: Missing[bool] = UNSET, web_commit_signoff_required: Missing[bool] = UNSET, - ) -> Response[FullRepository]: - ... + ) -> Response[FullRepository]: ... def update( self, @@ -1380,8 +1365,7 @@ async def async_update( *, headers: Optional[Dict[str, str]] = None, data: Missing[ReposOwnerRepoPatchBodyType] = UNSET, - ) -> Response[FullRepository]: - ... + ) -> Response[FullRepository]: ... @overload async def async_update( @@ -1422,8 +1406,7 @@ async def async_update( archived: Missing[bool] = UNSET, allow_forking: Missing[bool] = UNSET, web_commit_signoff_required: Missing[bool] = UNSET, - ) -> Response[FullRepository]: - ... + ) -> Response[FullRepository]: ... async def async_update( self, @@ -1639,8 +1622,7 @@ def create_autolink( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoAutolinksPostBodyType, - ) -> Response[Autolink]: - ... + ) -> Response[Autolink]: ... @overload def create_autolink( @@ -1653,8 +1635,7 @@ def create_autolink( key_prefix: str, url_template: str, is_alphanumeric: Missing[bool] = UNSET, - ) -> Response[Autolink]: - ... + ) -> Response[Autolink]: ... def create_autolink( self, @@ -1699,8 +1680,7 @@ async def async_create_autolink( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoAutolinksPostBodyType, - ) -> Response[Autolink]: - ... + ) -> Response[Autolink]: ... @overload async def async_create_autolink( @@ -1713,8 +1693,7 @@ async def async_create_autolink( key_prefix: str, url_template: str, is_alphanumeric: Missing[bool] = UNSET, - ) -> Response[Autolink]: - ... + ) -> Response[Autolink]: ... async def async_create_autolink( self, @@ -2162,8 +2141,7 @@ def update_branch_protection( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoBranchesBranchProtectionPutBodyType, - ) -> Response[ProtectedBranch]: - ... + ) -> Response[ProtectedBranch]: ... @overload def update_branch_protection( @@ -2193,8 +2171,7 @@ def update_branch_protection( required_conversation_resolution: Missing[bool] = UNSET, lock_branch: Missing[bool] = UNSET, allow_fork_syncing: Missing[bool] = UNSET, - ) -> Response[ProtectedBranch]: - ... + ) -> Response[ProtectedBranch]: ... def update_branch_protection( self, @@ -2248,8 +2225,7 @@ async def async_update_branch_protection( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoBranchesBranchProtectionPutBodyType, - ) -> Response[ProtectedBranch]: - ... + ) -> Response[ProtectedBranch]: ... @overload async def async_update_branch_protection( @@ -2279,8 +2255,7 @@ async def async_update_branch_protection( required_conversation_resolution: Missing[bool] = UNSET, lock_branch: Missing[bool] = UNSET, allow_fork_syncing: Missing[bool] = UNSET, - ) -> Response[ProtectedBranch]: - ... + ) -> Response[ProtectedBranch]: ... async def async_update_branch_protection( self, @@ -2624,8 +2599,7 @@ def update_pull_request_review_protection( data: Missing[ ReposOwnerRepoBranchesBranchProtectionRequiredPullRequestReviewsPatchBodyType ] = UNSET, - ) -> Response[ProtectedBranchPullRequestReview]: - ... + ) -> Response[ProtectedBranchPullRequestReview]: ... @overload def update_pull_request_review_protection( @@ -2646,8 +2620,7 @@ def update_pull_request_review_protection( bypass_pull_request_allowances: Missing[ ReposOwnerRepoBranchesBranchProtectionRequiredPullRequestReviewsPatchBodyPropBypassPullRequestAllowancesType ] = UNSET, - ) -> Response[ProtectedBranchPullRequestReview]: - ... + ) -> Response[ProtectedBranchPullRequestReview]: ... def update_pull_request_review_protection( self, @@ -2705,8 +2678,7 @@ async def async_update_pull_request_review_protection( data: Missing[ ReposOwnerRepoBranchesBranchProtectionRequiredPullRequestReviewsPatchBodyType ] = UNSET, - ) -> Response[ProtectedBranchPullRequestReview]: - ... + ) -> Response[ProtectedBranchPullRequestReview]: ... @overload async def async_update_pull_request_review_protection( @@ -2727,8 +2699,7 @@ async def async_update_pull_request_review_protection( bypass_pull_request_allowances: Missing[ ReposOwnerRepoBranchesBranchProtectionRequiredPullRequestReviewsPatchBodyPropBypassPullRequestAllowancesType ] = UNSET, - ) -> Response[ProtectedBranchPullRequestReview]: - ... + ) -> Response[ProtectedBranchPullRequestReview]: ... async def async_update_pull_request_review_protection( self, @@ -3040,8 +3011,7 @@ def update_status_check_protection( data: Missing[ ReposOwnerRepoBranchesBranchProtectionRequiredStatusChecksPatchBodyType ] = UNSET, - ) -> Response[StatusCheckPolicy]: - ... + ) -> Response[StatusCheckPolicy]: ... @overload def update_status_check_protection( @@ -3059,8 +3029,7 @@ def update_status_check_protection( ReposOwnerRepoBranchesBranchProtectionRequiredStatusChecksPatchBodyPropChecksItemsType ] ] = UNSET, - ) -> Response[StatusCheckPolicy]: - ... + ) -> Response[StatusCheckPolicy]: ... def update_status_check_protection( self, @@ -3121,8 +3090,7 @@ async def async_update_status_check_protection( data: Missing[ ReposOwnerRepoBranchesBranchProtectionRequiredStatusChecksPatchBodyType ] = UNSET, - ) -> Response[StatusCheckPolicy]: - ... + ) -> Response[StatusCheckPolicy]: ... @overload async def async_update_status_check_protection( @@ -3140,8 +3108,7 @@ async def async_update_status_check_protection( ReposOwnerRepoBranchesBranchProtectionRequiredStatusChecksPatchBodyPropChecksItemsType ] ] = UNSET, - ) -> Response[StatusCheckPolicy]: - ... + ) -> Response[StatusCheckPolicy]: ... async def async_update_status_check_protection( self, @@ -3261,8 +3228,7 @@ def set_status_check_contexts( List[str], ] ] = UNSET, - ) -> Response[List[str]]: - ... + ) -> Response[List[str]]: ... @overload def set_status_check_contexts( @@ -3274,8 +3240,7 @@ def set_status_check_contexts( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, contexts: List[str], - ) -> Response[List[str]]: - ... + ) -> Response[List[str]]: ... def set_status_check_contexts( self, @@ -3345,8 +3310,7 @@ async def async_set_status_check_contexts( List[str], ] ] = UNSET, - ) -> Response[List[str]]: - ... + ) -> Response[List[str]]: ... @overload async def async_set_status_check_contexts( @@ -3358,8 +3322,7 @@ async def async_set_status_check_contexts( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, contexts: List[str], - ) -> Response[List[str]]: - ... + ) -> Response[List[str]]: ... async def async_set_status_check_contexts( self, @@ -3429,8 +3392,7 @@ def add_status_check_contexts( List[str], ] ] = UNSET, - ) -> Response[List[str]]: - ... + ) -> Response[List[str]]: ... @overload def add_status_check_contexts( @@ -3442,8 +3404,7 @@ def add_status_check_contexts( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, contexts: List[str], - ) -> Response[List[str]]: - ... + ) -> Response[List[str]]: ... def add_status_check_contexts( self, @@ -3514,8 +3475,7 @@ async def async_add_status_check_contexts( List[str], ] ] = UNSET, - ) -> Response[List[str]]: - ... + ) -> Response[List[str]]: ... @overload async def async_add_status_check_contexts( @@ -3527,8 +3487,7 @@ async def async_add_status_check_contexts( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, contexts: List[str], - ) -> Response[List[str]]: - ... + ) -> Response[List[str]]: ... async def async_add_status_check_contexts( self, @@ -3599,8 +3558,7 @@ def remove_status_check_contexts( List[str], ] ] = UNSET, - ) -> Response[List[str]]: - ... + ) -> Response[List[str]]: ... @overload def remove_status_check_contexts( @@ -3612,8 +3570,7 @@ def remove_status_check_contexts( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, contexts: List[str], - ) -> Response[List[str]]: - ... + ) -> Response[List[str]]: ... def remove_status_check_contexts( self, @@ -3683,8 +3640,7 @@ async def async_remove_status_check_contexts( List[str], ] ] = UNSET, - ) -> Response[List[str]]: - ... + ) -> Response[List[str]]: ... @overload async def async_remove_status_check_contexts( @@ -3696,8 +3652,7 @@ async def async_remove_status_check_contexts( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, contexts: List[str], - ) -> Response[List[str]]: - ... + ) -> Response[List[str]]: ... async def async_remove_status_check_contexts( self, @@ -3915,8 +3870,7 @@ def set_app_access_restrictions( List[str], ] ] = UNSET, - ) -> Response[List[Integration]]: - ... + ) -> Response[List[Integration]]: ... @overload def set_app_access_restrictions( @@ -3928,8 +3882,7 @@ def set_app_access_restrictions( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, apps: List[str], - ) -> Response[List[Integration]]: - ... + ) -> Response[List[Integration]]: ... def set_app_access_restrictions( self, @@ -3998,8 +3951,7 @@ async def async_set_app_access_restrictions( List[str], ] ] = UNSET, - ) -> Response[List[Integration]]: - ... + ) -> Response[List[Integration]]: ... @overload async def async_set_app_access_restrictions( @@ -4011,8 +3963,7 @@ async def async_set_app_access_restrictions( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, apps: List[str], - ) -> Response[List[Integration]]: - ... + ) -> Response[List[Integration]]: ... async def async_set_app_access_restrictions( self, @@ -4081,8 +4032,7 @@ def add_app_access_restrictions( List[str], ] ] = UNSET, - ) -> Response[List[Integration]]: - ... + ) -> Response[List[Integration]]: ... @overload def add_app_access_restrictions( @@ -4094,8 +4044,7 @@ def add_app_access_restrictions( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, apps: List[str], - ) -> Response[List[Integration]]: - ... + ) -> Response[List[Integration]]: ... def add_app_access_restrictions( self, @@ -4164,8 +4113,7 @@ async def async_add_app_access_restrictions( List[str], ] ] = UNSET, - ) -> Response[List[Integration]]: - ... + ) -> Response[List[Integration]]: ... @overload async def async_add_app_access_restrictions( @@ -4177,8 +4125,7 @@ async def async_add_app_access_restrictions( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, apps: List[str], - ) -> Response[List[Integration]]: - ... + ) -> Response[List[Integration]]: ... async def async_add_app_access_restrictions( self, @@ -4247,8 +4194,7 @@ def remove_app_access_restrictions( List[str], ] ] = UNSET, - ) -> Response[List[Integration]]: - ... + ) -> Response[List[Integration]]: ... @overload def remove_app_access_restrictions( @@ -4260,8 +4206,7 @@ def remove_app_access_restrictions( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, apps: List[str], - ) -> Response[List[Integration]]: - ... + ) -> Response[List[Integration]]: ... def remove_app_access_restrictions( self, @@ -4330,8 +4275,7 @@ async def async_remove_app_access_restrictions( List[str], ] ] = UNSET, - ) -> Response[List[Integration]]: - ... + ) -> Response[List[Integration]]: ... @overload async def async_remove_app_access_restrictions( @@ -4343,8 +4287,7 @@ async def async_remove_app_access_restrictions( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, apps: List[str], - ) -> Response[List[Integration]]: - ... + ) -> Response[List[Integration]]: ... async def async_remove_app_access_restrictions( self, @@ -4469,8 +4412,7 @@ def set_team_access_restrictions( List[str], ] ] = UNSET, - ) -> Response[List[Team]]: - ... + ) -> Response[List[Team]]: ... @overload def set_team_access_restrictions( @@ -4482,8 +4424,7 @@ def set_team_access_restrictions( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, teams: List[str], - ) -> Response[List[Team]]: - ... + ) -> Response[List[Team]]: ... def set_team_access_restrictions( self, @@ -4552,8 +4493,7 @@ async def async_set_team_access_restrictions( List[str], ] ] = UNSET, - ) -> Response[List[Team]]: - ... + ) -> Response[List[Team]]: ... @overload async def async_set_team_access_restrictions( @@ -4565,8 +4505,7 @@ async def async_set_team_access_restrictions( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, teams: List[str], - ) -> Response[List[Team]]: - ... + ) -> Response[List[Team]]: ... async def async_set_team_access_restrictions( self, @@ -4635,8 +4574,7 @@ def add_team_access_restrictions( List[str], ] ] = UNSET, - ) -> Response[List[Team]]: - ... + ) -> Response[List[Team]]: ... @overload def add_team_access_restrictions( @@ -4648,8 +4586,7 @@ def add_team_access_restrictions( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, teams: List[str], - ) -> Response[List[Team]]: - ... + ) -> Response[List[Team]]: ... def add_team_access_restrictions( self, @@ -4718,8 +4655,7 @@ async def async_add_team_access_restrictions( List[str], ] ] = UNSET, - ) -> Response[List[Team]]: - ... + ) -> Response[List[Team]]: ... @overload async def async_add_team_access_restrictions( @@ -4731,8 +4667,7 @@ async def async_add_team_access_restrictions( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, teams: List[str], - ) -> Response[List[Team]]: - ... + ) -> Response[List[Team]]: ... async def async_add_team_access_restrictions( self, @@ -4801,8 +4736,7 @@ def remove_team_access_restrictions( List[str], ] ] = UNSET, - ) -> Response[List[Team]]: - ... + ) -> Response[List[Team]]: ... @overload def remove_team_access_restrictions( @@ -4814,8 +4748,7 @@ def remove_team_access_restrictions( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, teams: List[str], - ) -> Response[List[Team]]: - ... + ) -> Response[List[Team]]: ... def remove_team_access_restrictions( self, @@ -4884,8 +4817,7 @@ async def async_remove_team_access_restrictions( List[str], ] ] = UNSET, - ) -> Response[List[Team]]: - ... + ) -> Response[List[Team]]: ... @overload async def async_remove_team_access_restrictions( @@ -4897,8 +4829,7 @@ async def async_remove_team_access_restrictions( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, teams: List[str], - ) -> Response[List[Team]]: - ... + ) -> Response[List[Team]]: ... async def async_remove_team_access_restrictions( self, @@ -5023,8 +4954,7 @@ def set_user_access_restrictions( List[str], ] ] = UNSET, - ) -> Response[List[SimpleUser]]: - ... + ) -> Response[List[SimpleUser]]: ... @overload def set_user_access_restrictions( @@ -5036,8 +4966,7 @@ def set_user_access_restrictions( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, users: List[str], - ) -> Response[List[SimpleUser]]: - ... + ) -> Response[List[SimpleUser]]: ... def set_user_access_restrictions( self, @@ -5106,8 +5035,7 @@ async def async_set_user_access_restrictions( List[str], ] ] = UNSET, - ) -> Response[List[SimpleUser]]: - ... + ) -> Response[List[SimpleUser]]: ... @overload async def async_set_user_access_restrictions( @@ -5119,8 +5047,7 @@ async def async_set_user_access_restrictions( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, users: List[str], - ) -> Response[List[SimpleUser]]: - ... + ) -> Response[List[SimpleUser]]: ... async def async_set_user_access_restrictions( self, @@ -5189,8 +5116,7 @@ def add_user_access_restrictions( List[str], ] ] = UNSET, - ) -> Response[List[SimpleUser]]: - ... + ) -> Response[List[SimpleUser]]: ... @overload def add_user_access_restrictions( @@ -5202,8 +5128,7 @@ def add_user_access_restrictions( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, users: List[str], - ) -> Response[List[SimpleUser]]: - ... + ) -> Response[List[SimpleUser]]: ... def add_user_access_restrictions( self, @@ -5272,8 +5197,7 @@ async def async_add_user_access_restrictions( List[str], ] ] = UNSET, - ) -> Response[List[SimpleUser]]: - ... + ) -> Response[List[SimpleUser]]: ... @overload async def async_add_user_access_restrictions( @@ -5285,8 +5209,7 @@ async def async_add_user_access_restrictions( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, users: List[str], - ) -> Response[List[SimpleUser]]: - ... + ) -> Response[List[SimpleUser]]: ... async def async_add_user_access_restrictions( self, @@ -5355,8 +5278,7 @@ def remove_user_access_restrictions( List[str], ] ] = UNSET, - ) -> Response[List[SimpleUser]]: - ... + ) -> Response[List[SimpleUser]]: ... @overload def remove_user_access_restrictions( @@ -5368,8 +5290,7 @@ def remove_user_access_restrictions( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, users: List[str], - ) -> Response[List[SimpleUser]]: - ... + ) -> Response[List[SimpleUser]]: ... def remove_user_access_restrictions( self, @@ -5438,8 +5359,7 @@ async def async_remove_user_access_restrictions( List[str], ] ] = UNSET, - ) -> Response[List[SimpleUser]]: - ... + ) -> Response[List[SimpleUser]]: ... @overload async def async_remove_user_access_restrictions( @@ -5451,8 +5371,7 @@ async def async_remove_user_access_restrictions( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, users: List[str], - ) -> Response[List[SimpleUser]]: - ... + ) -> Response[List[SimpleUser]]: ... async def async_remove_user_access_restrictions( self, @@ -5516,8 +5435,7 @@ def rename_branch( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoBranchesBranchRenamePostBodyType, - ) -> Response[BranchWithProtection]: - ... + ) -> Response[BranchWithProtection]: ... @overload def rename_branch( @@ -5529,8 +5447,7 @@ def rename_branch( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, new_name: str, - ) -> Response[BranchWithProtection]: - ... + ) -> Response[BranchWithProtection]: ... def rename_branch( self, @@ -5584,8 +5501,7 @@ async def async_rename_branch( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoBranchesBranchRenamePostBodyType, - ) -> Response[BranchWithProtection]: - ... + ) -> Response[BranchWithProtection]: ... @overload async def async_rename_branch( @@ -5597,8 +5513,7 @@ async def async_rename_branch( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, new_name: str, - ) -> Response[BranchWithProtection]: - ... + ) -> Response[BranchWithProtection]: ... async def async_rename_branch( self, @@ -5834,8 +5749,7 @@ def add_collaborator( *, headers: Optional[Dict[str, str]] = None, data: Missing[ReposOwnerRepoCollaboratorsUsernamePutBodyType] = UNSET, - ) -> Response[RepositoryInvitation]: - ... + ) -> Response[RepositoryInvitation]: ... @overload def add_collaborator( @@ -5847,8 +5761,7 @@ def add_collaborator( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, permission: Missing[str] = UNSET, - ) -> Response[RepositoryInvitation]: - ... + ) -> Response[RepositoryInvitation]: ... def add_collaborator( self, @@ -5901,8 +5814,7 @@ async def async_add_collaborator( *, headers: Optional[Dict[str, str]] = None, data: Missing[ReposOwnerRepoCollaboratorsUsernamePutBodyType] = UNSET, - ) -> Response[RepositoryInvitation]: - ... + ) -> Response[RepositoryInvitation]: ... @overload async def async_add_collaborator( @@ -5914,8 +5826,7 @@ async def async_add_collaborator( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, permission: Missing[str] = UNSET, - ) -> Response[RepositoryInvitation]: - ... + ) -> Response[RepositoryInvitation]: ... async def async_add_collaborator( self, @@ -6238,8 +6149,7 @@ def update_commit_comment( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoCommentsCommentIdPatchBodyType, - ) -> Response[CommitComment]: - ... + ) -> Response[CommitComment]: ... @overload def update_commit_comment( @@ -6251,8 +6161,7 @@ def update_commit_comment( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, body: str, - ) -> Response[CommitComment]: - ... + ) -> Response[CommitComment]: ... def update_commit_comment( self, @@ -6303,8 +6212,7 @@ async def async_update_commit_comment( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoCommentsCommentIdPatchBodyType, - ) -> Response[CommitComment]: - ... + ) -> Response[CommitComment]: ... @overload async def async_update_commit_comment( @@ -6316,8 +6224,7 @@ async def async_update_commit_comment( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, body: str, - ) -> Response[CommitComment]: - ... + ) -> Response[CommitComment]: ... async def async_update_commit_comment( self, @@ -6592,8 +6499,7 @@ def create_commit_comment( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoCommitsCommitShaCommentsPostBodyType, - ) -> Response[CommitComment]: - ... + ) -> Response[CommitComment]: ... @overload def create_commit_comment( @@ -6608,8 +6514,7 @@ def create_commit_comment( path: Missing[str] = UNSET, position: Missing[int] = UNSET, line: Missing[int] = UNSET, - ) -> Response[CommitComment]: - ... + ) -> Response[CommitComment]: ... def create_commit_comment( self, @@ -6664,8 +6569,7 @@ async def async_create_commit_comment( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoCommitsCommitShaCommentsPostBodyType, - ) -> Response[CommitComment]: - ... + ) -> Response[CommitComment]: ... @overload async def async_create_commit_comment( @@ -6680,8 +6584,7 @@ async def async_create_commit_comment( path: Missing[str] = UNSET, position: Missing[int] = UNSET, line: Missing[int] = UNSET, - ) -> Response[CommitComment]: - ... + ) -> Response[CommitComment]: ... async def async_create_commit_comment( self, @@ -7252,8 +7155,7 @@ def create_or_update_file_contents( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoContentsPathPutBodyType, - ) -> Response[FileCommit]: - ... + ) -> Response[FileCommit]: ... @overload def create_or_update_file_contents( @@ -7270,8 +7172,7 @@ def create_or_update_file_contents( branch: Missing[str] = UNSET, committer: Missing[ReposOwnerRepoContentsPathPutBodyPropCommitterType] = UNSET, author: Missing[ReposOwnerRepoContentsPathPutBodyPropAuthorType] = UNSET, - ) -> Response[FileCommit]: - ... + ) -> Response[FileCommit]: ... def create_or_update_file_contents( self, @@ -7325,8 +7226,7 @@ async def async_create_or_update_file_contents( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoContentsPathPutBodyType, - ) -> Response[FileCommit]: - ... + ) -> Response[FileCommit]: ... @overload async def async_create_or_update_file_contents( @@ -7343,8 +7243,7 @@ async def async_create_or_update_file_contents( branch: Missing[str] = UNSET, committer: Missing[ReposOwnerRepoContentsPathPutBodyPropCommitterType] = UNSET, author: Missing[ReposOwnerRepoContentsPathPutBodyPropAuthorType] = UNSET, - ) -> Response[FileCommit]: - ... + ) -> Response[FileCommit]: ... async def async_create_or_update_file_contents( self, @@ -7398,8 +7297,7 @@ def delete_file( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoContentsPathDeleteBodyType, - ) -> Response[FileCommit]: - ... + ) -> Response[FileCommit]: ... @overload def delete_file( @@ -7417,8 +7315,7 @@ def delete_file( ReposOwnerRepoContentsPathDeleteBodyPropCommitterType ] = UNSET, author: Missing[ReposOwnerRepoContentsPathDeleteBodyPropAuthorType] = UNSET, - ) -> Response[FileCommit]: - ... + ) -> Response[FileCommit]: ... def delete_file( self, @@ -7474,8 +7371,7 @@ async def async_delete_file( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoContentsPathDeleteBodyType, - ) -> Response[FileCommit]: - ... + ) -> Response[FileCommit]: ... @overload async def async_delete_file( @@ -7493,8 +7389,7 @@ async def async_delete_file( ReposOwnerRepoContentsPathDeleteBodyPropCommitterType ] = UNSET, author: Missing[ReposOwnerRepoContentsPathDeleteBodyPropAuthorType] = UNSET, - ) -> Response[FileCommit]: - ... + ) -> Response[FileCommit]: ... async def async_delete_file( self, @@ -7705,8 +7600,7 @@ def create_deployment( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoDeploymentsPostBodyType, - ) -> Response[Deployment]: - ... + ) -> Response[Deployment]: ... @overload def create_deployment( @@ -7727,8 +7621,7 @@ def create_deployment( description: Missing[Union[str, None]] = UNSET, transient_environment: Missing[bool] = UNSET, production_environment: Missing[bool] = UNSET, - ) -> Response[Deployment]: - ... + ) -> Response[Deployment]: ... def create_deployment( self, @@ -7777,8 +7670,7 @@ async def async_create_deployment( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoDeploymentsPostBodyType, - ) -> Response[Deployment]: - ... + ) -> Response[Deployment]: ... @overload async def async_create_deployment( @@ -7799,8 +7691,7 @@ async def async_create_deployment( description: Missing[Union[str, None]] = UNSET, transient_environment: Missing[bool] = UNSET, production_environment: Missing[bool] = UNSET, - ) -> Response[Deployment]: - ... + ) -> Response[Deployment]: ... async def async_create_deployment( self, @@ -8026,8 +7917,7 @@ def create_deployment_status( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoDeploymentsDeploymentIdStatusesPostBodyType, - ) -> Response[DeploymentStatus]: - ... + ) -> Response[DeploymentStatus]: ... @overload def create_deployment_status( @@ -8053,8 +7943,7 @@ def create_deployment_status( environment: Missing[str] = UNSET, environment_url: Missing[str] = UNSET, auto_inactive: Missing[bool] = UNSET, - ) -> Response[DeploymentStatus]: - ... + ) -> Response[DeploymentStatus]: ... def create_deployment_status( self, @@ -8109,8 +7998,7 @@ async def async_create_deployment_status( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoDeploymentsDeploymentIdStatusesPostBodyType, - ) -> Response[DeploymentStatus]: - ... + ) -> Response[DeploymentStatus]: ... @overload async def async_create_deployment_status( @@ -8136,8 +8024,7 @@ async def async_create_deployment_status( environment: Missing[str] = UNSET, environment_url: Missing[str] = UNSET, auto_inactive: Missing[bool] = UNSET, - ) -> Response[DeploymentStatus]: - ... + ) -> Response[DeploymentStatus]: ... async def async_create_deployment_status( self, @@ -8245,8 +8132,7 @@ def create_dispatch_event( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoDispatchesPostBodyType, - ) -> Response: - ... + ) -> Response: ... @overload def create_dispatch_event( @@ -8260,8 +8146,7 @@ def create_dispatch_event( client_payload: Missing[ ReposOwnerRepoDispatchesPostBodyPropClientPayloadType ] = UNSET, - ) -> Response: - ... + ) -> Response: ... def create_dispatch_event( self, @@ -8310,8 +8195,7 @@ async def async_create_dispatch_event( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoDispatchesPostBodyType, - ) -> Response: - ... + ) -> Response: ... @overload async def async_create_dispatch_event( @@ -8325,8 +8209,7 @@ async def async_create_dispatch_event( client_payload: Missing[ ReposOwnerRepoDispatchesPostBodyPropClientPayloadType ] = UNSET, - ) -> Response: - ... + ) -> Response: ... async def async_create_dispatch_event( self, @@ -8484,8 +8367,7 @@ def create_or_update_environment( data: Missing[ Union[ReposOwnerRepoEnvironmentsEnvironmentNamePutBodyType, None] ] = UNSET, - ) -> Response[Environment]: - ... + ) -> Response[Environment]: ... @overload def create_or_update_environment( @@ -8509,8 +8391,7 @@ def create_or_update_environment( deployment_branch_policy: Missing[ Union[DeploymentBranchPolicySettingsType, None] ] = UNSET, - ) -> Response[Environment]: - ... + ) -> Response[Environment]: ... def create_or_update_environment( self, @@ -8569,8 +8450,7 @@ async def async_create_or_update_environment( data: Missing[ Union[ReposOwnerRepoEnvironmentsEnvironmentNamePutBodyType, None] ] = UNSET, - ) -> Response[Environment]: - ... + ) -> Response[Environment]: ... @overload async def async_create_or_update_environment( @@ -8594,8 +8474,7 @@ async def async_create_or_update_environment( deployment_branch_policy: Missing[ Union[DeploymentBranchPolicySettingsType, None] ] = UNSET, - ) -> Response[Environment]: - ... + ) -> Response[Environment]: ... async def async_create_or_update_environment( self, @@ -8762,8 +8641,7 @@ def create_deployment_branch_policy( *, headers: Optional[Dict[str, str]] = None, data: DeploymentBranchPolicyNamePatternWithTypeType, - ) -> Response[DeploymentBranchPolicy]: - ... + ) -> Response[DeploymentBranchPolicy]: ... @overload def create_deployment_branch_policy( @@ -8776,8 +8654,7 @@ def create_deployment_branch_policy( headers: Optional[Dict[str, str]] = None, name: str, type: Missing[Literal["branch", "tag"]] = UNSET, - ) -> Response[DeploymentBranchPolicy]: - ... + ) -> Response[DeploymentBranchPolicy]: ... def create_deployment_branch_policy( self, @@ -8825,8 +8702,7 @@ async def async_create_deployment_branch_policy( *, headers: Optional[Dict[str, str]] = None, data: DeploymentBranchPolicyNamePatternWithTypeType, - ) -> Response[DeploymentBranchPolicy]: - ... + ) -> Response[DeploymentBranchPolicy]: ... @overload async def async_create_deployment_branch_policy( @@ -8839,8 +8715,7 @@ async def async_create_deployment_branch_policy( headers: Optional[Dict[str, str]] = None, name: str, type: Missing[Literal["branch", "tag"]] = UNSET, - ) -> Response[DeploymentBranchPolicy]: - ... + ) -> Response[DeploymentBranchPolicy]: ... async def async_create_deployment_branch_policy( self, @@ -8937,8 +8812,7 @@ def update_deployment_branch_policy( *, headers: Optional[Dict[str, str]] = None, data: DeploymentBranchPolicyNamePatternType, - ) -> Response[DeploymentBranchPolicy]: - ... + ) -> Response[DeploymentBranchPolicy]: ... @overload def update_deployment_branch_policy( @@ -8951,8 +8825,7 @@ def update_deployment_branch_policy( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, name: str, - ) -> Response[DeploymentBranchPolicy]: - ... + ) -> Response[DeploymentBranchPolicy]: ... def update_deployment_branch_policy( self, @@ -8998,8 +8871,7 @@ async def async_update_deployment_branch_policy( *, headers: Optional[Dict[str, str]] = None, data: DeploymentBranchPolicyNamePatternType, - ) -> Response[DeploymentBranchPolicy]: - ... + ) -> Response[DeploymentBranchPolicy]: ... @overload async def async_update_deployment_branch_policy( @@ -9012,8 +8884,7 @@ async def async_update_deployment_branch_policy( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, name: str, - ) -> Response[DeploymentBranchPolicy]: - ... + ) -> Response[DeploymentBranchPolicy]: ... async def async_update_deployment_branch_policy( self, @@ -9154,8 +9025,7 @@ def create_deployment_protection_rule( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoEnvironmentsEnvironmentNameDeploymentProtectionRulesPostBodyType, - ) -> Response[DeploymentProtectionRule]: - ... + ) -> Response[DeploymentProtectionRule]: ... @overload def create_deployment_protection_rule( @@ -9167,8 +9037,7 @@ def create_deployment_protection_rule( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, integration_id: Missing[int] = UNSET, - ) -> Response[DeploymentProtectionRule]: - ... + ) -> Response[DeploymentProtectionRule]: ... def create_deployment_protection_rule( self, @@ -9220,8 +9089,7 @@ async def async_create_deployment_protection_rule( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoEnvironmentsEnvironmentNameDeploymentProtectionRulesPostBodyType, - ) -> Response[DeploymentProtectionRule]: - ... + ) -> Response[DeploymentProtectionRule]: ... @overload async def async_create_deployment_protection_rule( @@ -9233,8 +9101,7 @@ async def async_create_deployment_protection_rule( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, integration_id: Missing[int] = UNSET, - ) -> Response[DeploymentProtectionRule]: - ... + ) -> Response[DeploymentProtectionRule]: ... async def async_create_deployment_protection_rule( self, @@ -9519,8 +9386,7 @@ def create_fork( *, headers: Optional[Dict[str, str]] = None, data: Missing[Union[ReposOwnerRepoForksPostBodyType, None]] = UNSET, - ) -> Response[FullRepository]: - ... + ) -> Response[FullRepository]: ... @overload def create_fork( @@ -9533,8 +9399,7 @@ def create_fork( organization: Missing[str] = UNSET, name: Missing[str] = UNSET, default_branch_only: Missing[bool] = UNSET, - ) -> Response[FullRepository]: - ... + ) -> Response[FullRepository]: ... def create_fork( self, @@ -9589,8 +9454,7 @@ async def async_create_fork( *, headers: Optional[Dict[str, str]] = None, data: Missing[Union[ReposOwnerRepoForksPostBodyType, None]] = UNSET, - ) -> Response[FullRepository]: - ... + ) -> Response[FullRepository]: ... @overload async def async_create_fork( @@ -9603,8 +9467,7 @@ async def async_create_fork( organization: Missing[str] = UNSET, name: Missing[str] = UNSET, default_branch_only: Missing[bool] = UNSET, - ) -> Response[FullRepository]: - ... + ) -> Response[FullRepository]: ... async def async_create_fork( self, @@ -9729,8 +9592,7 @@ def create_webhook( *, headers: Optional[Dict[str, str]] = None, data: Missing[Union[ReposOwnerRepoHooksPostBodyType, None]] = UNSET, - ) -> Response[Hook]: - ... + ) -> Response[Hook]: ... @overload def create_webhook( @@ -9744,8 +9606,7 @@ def create_webhook( config: Missing[ReposOwnerRepoHooksPostBodyPropConfigType] = UNSET, events: Missing[List[str]] = UNSET, active: Missing[bool] = UNSET, - ) -> Response[Hook]: - ... + ) -> Response[Hook]: ... def create_webhook( self, @@ -9799,8 +9660,7 @@ async def async_create_webhook( *, headers: Optional[Dict[str, str]] = None, data: Missing[Union[ReposOwnerRepoHooksPostBodyType, None]] = UNSET, - ) -> Response[Hook]: - ... + ) -> Response[Hook]: ... @overload async def async_create_webhook( @@ -9814,8 +9674,7 @@ async def async_create_webhook( config: Missing[ReposOwnerRepoHooksPostBodyPropConfigType] = UNSET, events: Missing[List[str]] = UNSET, active: Missing[bool] = UNSET, - ) -> Response[Hook]: - ... + ) -> Response[Hook]: ... async def async_create_webhook( self, @@ -9972,8 +9831,7 @@ def update_webhook( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoHooksHookIdPatchBodyType, - ) -> Response[Hook]: - ... + ) -> Response[Hook]: ... @overload def update_webhook( @@ -9989,8 +9847,7 @@ def update_webhook( add_events: Missing[List[str]] = UNSET, remove_events: Missing[List[str]] = UNSET, active: Missing[bool] = UNSET, - ) -> Response[Hook]: - ... + ) -> Response[Hook]: ... def update_webhook( self, @@ -10043,8 +9900,7 @@ async def async_update_webhook( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoHooksHookIdPatchBodyType, - ) -> Response[Hook]: - ... + ) -> Response[Hook]: ... @overload async def async_update_webhook( @@ -10060,8 +9916,7 @@ async def async_update_webhook( add_events: Missing[List[str]] = UNSET, remove_events: Missing[List[str]] = UNSET, active: Missing[bool] = UNSET, - ) -> Response[Hook]: - ... + ) -> Response[Hook]: ... async def async_update_webhook( self, @@ -10160,8 +10015,7 @@ def update_webhook_config_for_repo( *, headers: Optional[Dict[str, str]] = None, data: Missing[ReposOwnerRepoHooksHookIdConfigPatchBodyType] = UNSET, - ) -> Response[WebhookConfig]: - ... + ) -> Response[WebhookConfig]: ... @overload def update_webhook_config_for_repo( @@ -10176,8 +10030,7 @@ def update_webhook_config_for_repo( content_type: Missing[str] = UNSET, secret: Missing[str] = UNSET, insecure_ssl: Missing[Union[str, float]] = UNSET, - ) -> Response[WebhookConfig]: - ... + ) -> Response[WebhookConfig]: ... def update_webhook_config_for_repo( self, @@ -10221,8 +10074,7 @@ async def async_update_webhook_config_for_repo( *, headers: Optional[Dict[str, str]] = None, data: Missing[ReposOwnerRepoHooksHookIdConfigPatchBodyType] = UNSET, - ) -> Response[WebhookConfig]: - ... + ) -> Response[WebhookConfig]: ... @overload async def async_update_webhook_config_for_repo( @@ -10237,8 +10089,7 @@ async def async_update_webhook_config_for_repo( content_type: Missing[str] = UNSET, secret: Missing[str] = UNSET, insecure_ssl: Missing[Union[str, float]] = UNSET, - ) -> Response[WebhookConfig]: - ... + ) -> Response[WebhookConfig]: ... async def async_update_webhook_config_for_repo( self, @@ -10684,8 +10535,7 @@ def update_invitation( *, headers: Optional[Dict[str, str]] = None, data: Missing[ReposOwnerRepoInvitationsInvitationIdPatchBodyType] = UNSET, - ) -> Response[RepositoryInvitation]: - ... + ) -> Response[RepositoryInvitation]: ... @overload def update_invitation( @@ -10699,8 +10549,7 @@ def update_invitation( permissions: Missing[ Literal["read", "write", "maintain", "triage", "admin"] ] = UNSET, - ) -> Response[RepositoryInvitation]: - ... + ) -> Response[RepositoryInvitation]: ... def update_invitation( self, @@ -10749,8 +10598,7 @@ async def async_update_invitation( *, headers: Optional[Dict[str, str]] = None, data: Missing[ReposOwnerRepoInvitationsInvitationIdPatchBodyType] = UNSET, - ) -> Response[RepositoryInvitation]: - ... + ) -> Response[RepositoryInvitation]: ... @overload async def async_update_invitation( @@ -10764,8 +10612,7 @@ async def async_update_invitation( permissions: Missing[ Literal["read", "write", "maintain", "triage", "admin"] ] = UNSET, - ) -> Response[RepositoryInvitation]: - ... + ) -> Response[RepositoryInvitation]: ... async def async_update_invitation( self, @@ -10877,8 +10724,7 @@ def create_deploy_key( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoKeysPostBodyType, - ) -> Response[DeployKey]: - ... + ) -> Response[DeployKey]: ... @overload def create_deploy_key( @@ -10891,8 +10737,7 @@ def create_deploy_key( title: Missing[str] = UNSET, key: str, read_only: Missing[bool] = UNSET, - ) -> Response[DeployKey]: - ... + ) -> Response[DeployKey]: ... def create_deploy_key( self, @@ -10937,8 +10782,7 @@ async def async_create_deploy_key( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoKeysPostBodyType, - ) -> Response[DeployKey]: - ... + ) -> Response[DeployKey]: ... @overload async def async_create_deploy_key( @@ -10951,8 +10795,7 @@ async def async_create_deploy_key( title: Missing[str] = UNSET, key: str, read_only: Missing[bool] = UNSET, - ) -> Response[DeployKey]: - ... + ) -> Response[DeployKey]: ... async def async_create_deploy_key( self, @@ -11217,8 +11060,7 @@ def merge_upstream( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoMergeUpstreamPostBodyType, - ) -> Response[MergedUpstream]: - ... + ) -> Response[MergedUpstream]: ... @overload def merge_upstream( @@ -11229,8 +11071,7 @@ def merge_upstream( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, branch: str, - ) -> Response[MergedUpstream]: - ... + ) -> Response[MergedUpstream]: ... def merge_upstream( self, @@ -11273,8 +11114,7 @@ async def async_merge_upstream( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoMergeUpstreamPostBodyType, - ) -> Response[MergedUpstream]: - ... + ) -> Response[MergedUpstream]: ... @overload async def async_merge_upstream( @@ -11285,8 +11125,7 @@ async def async_merge_upstream( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, branch: str, - ) -> Response[MergedUpstream]: - ... + ) -> Response[MergedUpstream]: ... async def async_merge_upstream( self, @@ -11329,8 +11168,7 @@ def merge( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoMergesPostBodyType, - ) -> Response[Commit]: - ... + ) -> Response[Commit]: ... @overload def merge( @@ -11343,8 +11181,7 @@ def merge( base: str, head: str, commit_message: Missing[str] = UNSET, - ) -> Response[Commit]: - ... + ) -> Response[Commit]: ... def merge( self, @@ -11395,8 +11232,7 @@ async def async_merge( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoMergesPostBodyType, - ) -> Response[Commit]: - ... + ) -> Response[Commit]: ... @overload async def async_merge( @@ -11409,8 +11245,7 @@ async def async_merge( base: str, head: str, commit_message: Missing[str] = UNSET, - ) -> Response[Commit]: - ... + ) -> Response[Commit]: ... async def async_merge( self, @@ -11517,8 +11352,7 @@ def update_information_about_pages_site( ReposOwnerRepoPagesPutBodyAnyof3Type, ReposOwnerRepoPagesPutBodyAnyof4Type, ], - ) -> Response: - ... + ) -> Response: ... @overload def update_information_about_pages_site( @@ -11538,8 +11372,7 @@ def update_information_about_pages_site( ] ] = UNSET, public: Missing[bool] = UNSET, - ) -> Response: - ... + ) -> Response: ... @overload def update_information_about_pages_site( @@ -11557,8 +11390,7 @@ def update_information_about_pages_site( ReposOwnerRepoPagesPutBodyPropSourceAnyof1Type, ], public: Missing[bool] = UNSET, - ) -> Response: - ... + ) -> Response: ... @overload def update_information_about_pages_site( @@ -11578,8 +11410,7 @@ def update_information_about_pages_site( ] ] = UNSET, public: Missing[bool] = UNSET, - ) -> Response: - ... + ) -> Response: ... @overload def update_information_about_pages_site( @@ -11599,8 +11430,7 @@ def update_information_about_pages_site( ] ] = UNSET, public: bool, - ) -> Response: - ... + ) -> Response: ... @overload def update_information_about_pages_site( @@ -11620,8 +11450,7 @@ def update_information_about_pages_site( ] ] = UNSET, public: Missing[bool] = UNSET, - ) -> Response: - ... + ) -> Response: ... def update_information_about_pages_site( self, @@ -11700,8 +11529,7 @@ async def async_update_information_about_pages_site( ReposOwnerRepoPagesPutBodyAnyof3Type, ReposOwnerRepoPagesPutBodyAnyof4Type, ], - ) -> Response: - ... + ) -> Response: ... @overload async def async_update_information_about_pages_site( @@ -11721,8 +11549,7 @@ async def async_update_information_about_pages_site( ] ] = UNSET, public: Missing[bool] = UNSET, - ) -> Response: - ... + ) -> Response: ... @overload async def async_update_information_about_pages_site( @@ -11740,8 +11567,7 @@ async def async_update_information_about_pages_site( ReposOwnerRepoPagesPutBodyPropSourceAnyof1Type, ], public: Missing[bool] = UNSET, - ) -> Response: - ... + ) -> Response: ... @overload async def async_update_information_about_pages_site( @@ -11761,8 +11587,7 @@ async def async_update_information_about_pages_site( ] ] = UNSET, public: Missing[bool] = UNSET, - ) -> Response: - ... + ) -> Response: ... @overload async def async_update_information_about_pages_site( @@ -11782,8 +11607,7 @@ async def async_update_information_about_pages_site( ] ] = UNSET, public: bool, - ) -> Response: - ... + ) -> Response: ... @overload async def async_update_information_about_pages_site( @@ -11803,8 +11627,7 @@ async def async_update_information_about_pages_site( ] ] = UNSET, public: Missing[bool] = UNSET, - ) -> Response: - ... + ) -> Response: ... async def async_update_information_about_pages_site( self, @@ -11882,8 +11705,7 @@ def create_pages_site( ReposOwnerRepoPagesPostBodyAnyof1Type, None, ], - ) -> Response[Page]: - ... + ) -> Response[Page]: ... @overload def create_pages_site( @@ -11895,8 +11717,7 @@ def create_pages_site( headers: Optional[Dict[str, str]] = None, build_type: Missing[Literal["legacy", "workflow"]] = UNSET, source: ReposOwnerRepoPagesPostBodyPropSourceType, - ) -> Response[Page]: - ... + ) -> Response[Page]: ... @overload def create_pages_site( @@ -11908,8 +11729,7 @@ def create_pages_site( headers: Optional[Dict[str, str]] = None, build_type: Literal["legacy", "workflow"], source: Missing[ReposOwnerRepoPagesPostBodyPropSourceType] = UNSET, - ) -> Response[Page]: - ... + ) -> Response[Page]: ... def create_pages_site( self, @@ -11983,8 +11803,7 @@ async def async_create_pages_site( ReposOwnerRepoPagesPostBodyAnyof1Type, None, ], - ) -> Response[Page]: - ... + ) -> Response[Page]: ... @overload async def async_create_pages_site( @@ -11996,8 +11815,7 @@ async def async_create_pages_site( headers: Optional[Dict[str, str]] = None, build_type: Missing[Literal["legacy", "workflow"]] = UNSET, source: ReposOwnerRepoPagesPostBodyPropSourceType, - ) -> Response[Page]: - ... + ) -> Response[Page]: ... @overload async def async_create_pages_site( @@ -12009,8 +11827,7 @@ async def async_create_pages_site( headers: Optional[Dict[str, str]] = None, build_type: Literal["legacy", "workflow"], source: Missing[ReposOwnerRepoPagesPostBodyPropSourceType] = UNSET, - ) -> Response[Page]: - ... + ) -> Response[Page]: ... async def async_create_pages_site( self, @@ -12329,8 +12146,7 @@ def create_pages_deployment( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoPagesDeploymentsPostBodyType, - ) -> Response[PageDeployment]: - ... + ) -> Response[PageDeployment]: ... @overload def create_pages_deployment( @@ -12345,8 +12161,7 @@ def create_pages_deployment( environment: Missing[str] = UNSET, pages_build_version: str = "GITHUB_SHA", oidc_token: str, - ) -> Response[PageDeployment]: - ... + ) -> Response[PageDeployment]: ... def create_pages_deployment( self, @@ -12398,8 +12213,7 @@ async def async_create_pages_deployment( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoPagesDeploymentsPostBodyType, - ) -> Response[PageDeployment]: - ... + ) -> Response[PageDeployment]: ... @overload async def async_create_pages_deployment( @@ -12414,8 +12228,7 @@ async def async_create_pages_deployment( environment: Missing[str] = UNSET, pages_build_version: str = "GITHUB_SHA", oidc_token: str, - ) -> Response[PageDeployment]: - ... + ) -> Response[PageDeployment]: ... async def async_create_pages_deployment( self, @@ -12827,8 +12640,7 @@ def create_or_update_custom_properties_values( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoPropertiesValuesPatchBodyType, - ) -> Response: - ... + ) -> Response: ... @overload def create_or_update_custom_properties_values( @@ -12839,8 +12651,7 @@ def create_or_update_custom_properties_values( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, properties: List[CustomPropertyValueType], - ) -> Response: - ... + ) -> Response: ... def create_or_update_custom_properties_values( self, @@ -12890,8 +12701,7 @@ async def async_create_or_update_custom_properties_values( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoPropertiesValuesPatchBodyType, - ) -> Response: - ... + ) -> Response: ... @overload async def async_create_or_update_custom_properties_values( @@ -12902,8 +12712,7 @@ async def async_create_or_update_custom_properties_values( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, properties: List[CustomPropertyValueType], - ) -> Response: - ... + ) -> Response: ... async def async_create_or_update_custom_properties_values( self, @@ -13153,8 +12962,7 @@ def create_release( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoReleasesPostBodyType, - ) -> Response[Release]: - ... + ) -> Response[Release]: ... @overload def create_release( @@ -13173,8 +12981,7 @@ def create_release( discussion_category_name: Missing[str] = UNSET, generate_release_notes: Missing[bool] = UNSET, make_latest: Missing[Literal["true", "false", "legacy"]] = UNSET, - ) -> Response[Release]: - ... + ) -> Response[Release]: ... def create_release( self, @@ -13225,8 +13032,7 @@ async def async_create_release( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoReleasesPostBodyType, - ) -> Response[Release]: - ... + ) -> Response[Release]: ... @overload async def async_create_release( @@ -13245,8 +13051,7 @@ async def async_create_release( discussion_category_name: Missing[str] = UNSET, generate_release_notes: Missing[bool] = UNSET, make_latest: Missing[Literal["true", "false", "legacy"]] = UNSET, - ) -> Response[Release]: - ... + ) -> Response[Release]: ... async def async_create_release( self, @@ -13390,8 +13195,7 @@ def update_release_asset( *, headers: Optional[Dict[str, str]] = None, data: Missing[ReposOwnerRepoReleasesAssetsAssetIdPatchBodyType] = UNSET, - ) -> Response[ReleaseAsset]: - ... + ) -> Response[ReleaseAsset]: ... @overload def update_release_asset( @@ -13405,8 +13209,7 @@ def update_release_asset( name: Missing[str] = UNSET, label: Missing[str] = UNSET, state: Missing[str] = UNSET, - ) -> Response[ReleaseAsset]: - ... + ) -> Response[ReleaseAsset]: ... def update_release_asset( self, @@ -13450,8 +13253,7 @@ async def async_update_release_asset( *, headers: Optional[Dict[str, str]] = None, data: Missing[ReposOwnerRepoReleasesAssetsAssetIdPatchBodyType] = UNSET, - ) -> Response[ReleaseAsset]: - ... + ) -> Response[ReleaseAsset]: ... @overload async def async_update_release_asset( @@ -13465,8 +13267,7 @@ async def async_update_release_asset( name: Missing[str] = UNSET, label: Missing[str] = UNSET, state: Missing[str] = UNSET, - ) -> Response[ReleaseAsset]: - ... + ) -> Response[ReleaseAsset]: ... async def async_update_release_asset( self, @@ -13509,8 +13310,7 @@ def generate_release_notes( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoReleasesGenerateNotesPostBodyType, - ) -> Response[ReleaseNotesContent]: - ... + ) -> Response[ReleaseNotesContent]: ... @overload def generate_release_notes( @@ -13524,8 +13324,7 @@ def generate_release_notes( target_commitish: Missing[str] = UNSET, previous_tag_name: Missing[str] = UNSET, configuration_file_path: Missing[str] = UNSET, - ) -> Response[ReleaseNotesContent]: - ... + ) -> Response[ReleaseNotesContent]: ... def generate_release_notes( self, @@ -13574,8 +13373,7 @@ async def async_generate_release_notes( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoReleasesGenerateNotesPostBodyType, - ) -> Response[ReleaseNotesContent]: - ... + ) -> Response[ReleaseNotesContent]: ... @overload async def async_generate_release_notes( @@ -13589,8 +13387,7 @@ async def async_generate_release_notes( target_commitish: Missing[str] = UNSET, previous_tag_name: Missing[str] = UNSET, configuration_file_path: Missing[str] = UNSET, - ) -> Response[ReleaseNotesContent]: - ... + ) -> Response[ReleaseNotesContent]: ... async def async_generate_release_notes( self, @@ -13824,8 +13621,7 @@ def update_release( *, headers: Optional[Dict[str, str]] = None, data: Missing[ReposOwnerRepoReleasesReleaseIdPatchBodyType] = UNSET, - ) -> Response[Release]: - ... + ) -> Response[Release]: ... @overload def update_release( @@ -13844,8 +13640,7 @@ def update_release( prerelease: Missing[bool] = UNSET, make_latest: Missing[Literal["true", "false", "legacy"]] = UNSET, discussion_category_name: Missing[str] = UNSET, - ) -> Response[Release]: - ... + ) -> Response[Release]: ... def update_release( self, @@ -13896,8 +13691,7 @@ async def async_update_release( *, headers: Optional[Dict[str, str]] = None, data: Missing[ReposOwnerRepoReleasesReleaseIdPatchBodyType] = UNSET, - ) -> Response[Release]: - ... + ) -> Response[Release]: ... @overload async def async_update_release( @@ -13916,8 +13710,7 @@ async def async_update_release( prerelease: Missing[bool] = UNSET, make_latest: Missing[Literal["true", "false", "legacy"]] = UNSET, discussion_category_name: Missing[str] = UNSET, - ) -> Response[Release]: - ... + ) -> Response[Release]: ... async def async_update_release( self, @@ -14371,8 +14164,7 @@ def create_repo_ruleset( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoRulesetsPostBodyType, - ) -> Response[RepositoryRuleset]: - ... + ) -> Response[RepositoryRuleset]: ... @overload def create_repo_ruleset( @@ -14408,8 +14200,7 @@ def create_repo_ruleset( ] ] ] = UNSET, - ) -> Response[RepositoryRuleset]: - ... + ) -> Response[RepositoryRuleset]: ... def create_repo_ruleset( self, @@ -14459,8 +14250,7 @@ async def async_create_repo_ruleset( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoRulesetsPostBodyType, - ) -> Response[RepositoryRuleset]: - ... + ) -> Response[RepositoryRuleset]: ... @overload async def async_create_repo_ruleset( @@ -14496,8 +14286,7 @@ async def async_create_repo_ruleset( ] ] ] = UNSET, - ) -> Response[RepositoryRuleset]: - ... + ) -> Response[RepositoryRuleset]: ... async def async_create_repo_ruleset( self, @@ -14756,8 +14545,7 @@ def update_repo_ruleset( *, headers: Optional[Dict[str, str]] = None, data: Missing[ReposOwnerRepoRulesetsRulesetIdPutBodyType] = UNSET, - ) -> Response[RepositoryRuleset]: - ... + ) -> Response[RepositoryRuleset]: ... @overload def update_repo_ruleset( @@ -14794,8 +14582,7 @@ def update_repo_ruleset( ] ] ] = UNSET, - ) -> Response[RepositoryRuleset]: - ... + ) -> Response[RepositoryRuleset]: ... def update_repo_ruleset( self, @@ -14847,8 +14634,7 @@ async def async_update_repo_ruleset( *, headers: Optional[Dict[str, str]] = None, data: Missing[ReposOwnerRepoRulesetsRulesetIdPutBodyType] = UNSET, - ) -> Response[RepositoryRuleset]: - ... + ) -> Response[RepositoryRuleset]: ... @overload async def async_update_repo_ruleset( @@ -14885,8 +14671,7 @@ async def async_update_repo_ruleset( ] ] ] = UNSET, - ) -> Response[RepositoryRuleset]: - ... + ) -> Response[RepositoryRuleset]: ... async def async_update_repo_ruleset( self, @@ -15226,8 +15011,7 @@ def create_commit_status( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoStatusesShaPostBodyType, - ) -> Response[Status]: - ... + ) -> Response[Status]: ... @overload def create_commit_status( @@ -15242,8 +15026,7 @@ def create_commit_status( target_url: Missing[Union[str, None]] = UNSET, description: Missing[Union[str, None]] = UNSET, context: Missing[str] = UNSET, - ) -> Response[Status]: - ... + ) -> Response[Status]: ... def create_commit_status( self, @@ -15287,8 +15070,7 @@ async def async_create_commit_status( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoStatusesShaPostBodyType, - ) -> Response[Status]: - ... + ) -> Response[Status]: ... @overload async def async_create_commit_status( @@ -15303,8 +15085,7 @@ async def async_create_commit_status( target_url: Missing[Union[str, None]] = UNSET, description: Missing[Union[str, None]] = UNSET, context: Missing[str] = UNSET, - ) -> Response[Status]: - ... + ) -> Response[Status]: ... async def async_create_commit_status( self, @@ -15467,8 +15248,7 @@ def create_tag_protection( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoTagsProtectionPostBodyType, - ) -> Response[TagProtection]: - ... + ) -> Response[TagProtection]: ... @overload def create_tag_protection( @@ -15479,8 +15259,7 @@ def create_tag_protection( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, pattern: str, - ) -> Response[TagProtection]: - ... + ) -> Response[TagProtection]: ... def create_tag_protection( self, @@ -15530,8 +15309,7 @@ async def async_create_tag_protection( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoTagsProtectionPostBodyType, - ) -> Response[TagProtection]: - ... + ) -> Response[TagProtection]: ... @overload async def async_create_tag_protection( @@ -15542,8 +15320,7 @@ async def async_create_tag_protection( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, pattern: str, - ) -> Response[TagProtection]: - ... + ) -> Response[TagProtection]: ... async def async_create_tag_protection( self, @@ -15821,8 +15598,7 @@ def replace_all_topics( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoTopicsPutBodyType, - ) -> Response[Topic]: - ... + ) -> Response[Topic]: ... @overload def replace_all_topics( @@ -15833,8 +15609,7 @@ def replace_all_topics( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, names: List[str], - ) -> Response[Topic]: - ... + ) -> Response[Topic]: ... def replace_all_topics( self, @@ -15885,8 +15660,7 @@ async def async_replace_all_topics( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoTopicsPutBodyType, - ) -> Response[Topic]: - ... + ) -> Response[Topic]: ... @overload async def async_replace_all_topics( @@ -15897,8 +15671,7 @@ async def async_replace_all_topics( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, names: List[str], - ) -> Response[Topic]: - ... + ) -> Response[Topic]: ... async def async_replace_all_topics( self, @@ -16181,8 +15954,7 @@ def transfer( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoTransferPostBodyType, - ) -> Response[MinimalRepository]: - ... + ) -> Response[MinimalRepository]: ... @overload def transfer( @@ -16195,8 +15967,7 @@ def transfer( new_owner: str, new_name: Missing[str] = UNSET, team_ids: Missing[List[int]] = UNSET, - ) -> Response[MinimalRepository]: - ... + ) -> Response[MinimalRepository]: ... def transfer( self, @@ -16238,8 +16009,7 @@ async def async_transfer( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoTransferPostBodyType, - ) -> Response[MinimalRepository]: - ... + ) -> Response[MinimalRepository]: ... @overload async def async_transfer( @@ -16252,8 +16022,7 @@ async def async_transfer( new_owner: str, new_name: Missing[str] = UNSET, team_ids: Missing[List[int]] = UNSET, - ) -> Response[MinimalRepository]: - ... + ) -> Response[MinimalRepository]: ... async def async_transfer( self, @@ -16451,8 +16220,7 @@ def create_using_template( *, headers: Optional[Dict[str, str]] = None, data: ReposTemplateOwnerTemplateRepoGeneratePostBodyType, - ) -> Response[FullRepository]: - ... + ) -> Response[FullRepository]: ... @overload def create_using_template( @@ -16467,8 +16235,7 @@ def create_using_template( description: Missing[str] = UNSET, include_all_branches: Missing[bool] = UNSET, private: Missing[bool] = UNSET, - ) -> Response[FullRepository]: - ... + ) -> Response[FullRepository]: ... def create_using_template( self, @@ -16515,8 +16282,7 @@ async def async_create_using_template( *, headers: Optional[Dict[str, str]] = None, data: ReposTemplateOwnerTemplateRepoGeneratePostBodyType, - ) -> Response[FullRepository]: - ... + ) -> Response[FullRepository]: ... @overload async def async_create_using_template( @@ -16531,8 +16297,7 @@ async def async_create_using_template( description: Missing[str] = UNSET, include_all_branches: Missing[bool] = UNSET, private: Missing[bool] = UNSET, - ) -> Response[FullRepository]: - ... + ) -> Response[FullRepository]: ... async def async_create_using_template( self, @@ -16734,8 +16499,7 @@ async def async_list_for_authenticated_user( @overload def create_for_authenticated_user( self, *, headers: Optional[Dict[str, str]] = None, data: UserReposPostBodyType - ) -> Response[FullRepository]: - ... + ) -> Response[FullRepository]: ... @overload def create_for_authenticated_user( @@ -16770,8 +16534,7 @@ def create_for_authenticated_user( merge_commit_message: Missing[Literal["PR_BODY", "PR_TITLE", "BLANK"]] = UNSET, has_downloads: Missing[bool] = UNSET, is_template: Missing[bool] = UNSET, - ) -> Response[FullRepository]: - ... + ) -> Response[FullRepository]: ... def create_for_authenticated_user( self, @@ -16818,8 +16581,7 @@ def create_for_authenticated_user( @overload async def async_create_for_authenticated_user( self, *, headers: Optional[Dict[str, str]] = None, data: UserReposPostBodyType - ) -> Response[FullRepository]: - ... + ) -> Response[FullRepository]: ... @overload async def async_create_for_authenticated_user( @@ -16854,8 +16616,7 @@ async def async_create_for_authenticated_user( merge_commit_message: Missing[Literal["PR_BODY", "PR_TITLE", "BLANK"]] = UNSET, has_downloads: Missing[bool] = UNSET, is_template: Missing[bool] = UNSET, - ) -> Response[FullRepository]: - ... + ) -> Response[FullRepository]: ... async def async_create_for_authenticated_user( self, diff --git a/githubkit/versions/ghec_v2022_11_28/rest/scim.py b/githubkit/versions/ghec_v2022_11_28/rest/scim.py index ca1fcade1..a025ecb97 100644 --- a/githubkit/versions/ghec_v2022_11_28/rest/scim.py +++ b/githubkit/versions/ghec_v2022_11_28/rest/scim.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref @@ -136,8 +135,7 @@ def provision_and_invite_user( *, headers: Optional[Dict[str, str]] = None, data: ScimV2OrganizationsOrgUsersPostBodyType, - ) -> Response[ScimUser]: - ... + ) -> Response[ScimUser]: ... @overload def provision_and_invite_user( @@ -154,8 +152,7 @@ def provision_and_invite_user( external_id: Missing[str] = UNSET, groups: Missing[List[str]] = UNSET, active: Missing[bool] = UNSET, - ) -> Response[ScimUser]: - ... + ) -> Response[ScimUser]: ... def provision_and_invite_user( self, @@ -202,8 +199,7 @@ async def async_provision_and_invite_user( *, headers: Optional[Dict[str, str]] = None, data: ScimV2OrganizationsOrgUsersPostBodyType, - ) -> Response[ScimUser]: - ... + ) -> Response[ScimUser]: ... @overload async def async_provision_and_invite_user( @@ -220,8 +216,7 @@ async def async_provision_and_invite_user( external_id: Missing[str] = UNSET, groups: Missing[List[str]] = UNSET, active: Missing[bool] = UNSET, - ) -> Response[ScimUser]: - ... + ) -> Response[ScimUser]: ... async def async_provision_and_invite_user( self, @@ -321,8 +316,7 @@ def set_information_for_provisioned_user( *, headers: Optional[Dict[str, str]] = None, data: ScimV2OrganizationsOrgUsersScimUserIdPutBodyType, - ) -> Response[ScimUser]: - ... + ) -> Response[ScimUser]: ... @overload def set_information_for_provisioned_user( @@ -340,8 +334,7 @@ def set_information_for_provisioned_user( user_name: str, name: ScimV2OrganizationsOrgUsersScimUserIdPutBodyPropNameType, emails: List[ScimV2OrganizationsOrgUsersScimUserIdPutBodyPropEmailsItemsType], - ) -> Response[ScimUser]: - ... + ) -> Response[ScimUser]: ... def set_information_for_provisioned_user( self, @@ -391,8 +384,7 @@ async def async_set_information_for_provisioned_user( *, headers: Optional[Dict[str, str]] = None, data: ScimV2OrganizationsOrgUsersScimUserIdPutBodyType, - ) -> Response[ScimUser]: - ... + ) -> Response[ScimUser]: ... @overload async def async_set_information_for_provisioned_user( @@ -410,8 +402,7 @@ async def async_set_information_for_provisioned_user( user_name: str, name: ScimV2OrganizationsOrgUsersScimUserIdPutBodyPropNameType, emails: List[ScimV2OrganizationsOrgUsersScimUserIdPutBodyPropEmailsItemsType], - ) -> Response[ScimUser]: - ... + ) -> Response[ScimUser]: ... async def async_set_information_for_provisioned_user( self, @@ -511,8 +502,7 @@ def update_attribute_for_user( *, headers: Optional[Dict[str, str]] = None, data: ScimV2OrganizationsOrgUsersScimUserIdPatchBodyType, - ) -> Response[ScimUser]: - ... + ) -> Response[ScimUser]: ... @overload def update_attribute_for_user( @@ -526,8 +516,7 @@ def update_attribute_for_user( operations: List[ ScimV2OrganizationsOrgUsersScimUserIdPatchBodyPropOperationsItemsType ], - ) -> Response[ScimUser]: - ... + ) -> Response[ScimUser]: ... def update_attribute_for_user( self, @@ -582,8 +571,7 @@ async def async_update_attribute_for_user( *, headers: Optional[Dict[str, str]] = None, data: ScimV2OrganizationsOrgUsersScimUserIdPatchBodyType, - ) -> Response[ScimUser]: - ... + ) -> Response[ScimUser]: ... @overload async def async_update_attribute_for_user( @@ -597,8 +585,7 @@ async def async_update_attribute_for_user( operations: List[ ScimV2OrganizationsOrgUsersScimUserIdPatchBodyPropOperationsItemsType ], - ) -> Response[ScimUser]: - ... + ) -> Response[ScimUser]: ... async def async_update_attribute_for_user( self, diff --git a/githubkit/versions/ghec_v2022_11_28/rest/search.py b/githubkit/versions/ghec_v2022_11_28/rest/search.py index ac12bbaf2..e28a4044c 100644 --- a/githubkit/versions/ghec_v2022_11_28/rest/search.py +++ b/githubkit/versions/ghec_v2022_11_28/rest/search.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref diff --git a/githubkit/versions/ghec_v2022_11_28/rest/secret_scanning.py b/githubkit/versions/ghec_v2022_11_28/rest/secret_scanning.py index 9eeb19287..a2669ad24 100644 --- a/githubkit/versions/ghec_v2022_11_28/rest/secret_scanning.py +++ b/githubkit/versions/ghec_v2022_11_28/rest/secret_scanning.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref @@ -441,8 +440,7 @@ def update_alert( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoSecretScanningAlertsAlertNumberPatchBodyType, - ) -> Response[SecretScanningAlert]: - ... + ) -> Response[SecretScanningAlert]: ... @overload def update_alert( @@ -460,8 +458,7 @@ def update_alert( ] ] = UNSET, resolution_comment: Missing[Union[str, None]] = UNSET, - ) -> Response[SecretScanningAlert]: - ... + ) -> Response[SecretScanningAlert]: ... def update_alert( self, @@ -516,8 +513,7 @@ async def async_update_alert( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoSecretScanningAlertsAlertNumberPatchBodyType, - ) -> Response[SecretScanningAlert]: - ... + ) -> Response[SecretScanningAlert]: ... @overload async def async_update_alert( @@ -535,8 +531,7 @@ async def async_update_alert( ] ] = UNSET, resolution_comment: Missing[Union[str, None]] = UNSET, - ) -> Response[SecretScanningAlert]: - ... + ) -> Response[SecretScanningAlert]: ... async def async_update_alert( self, diff --git a/githubkit/versions/ghec_v2022_11_28/rest/security_advisories.py b/githubkit/versions/ghec_v2022_11_28/rest/security_advisories.py index edaf7b1af..2f64c4e74 100644 --- a/githubkit/versions/ghec_v2022_11_28/rest/security_advisories.py +++ b/githubkit/versions/ghec_v2022_11_28/rest/security_advisories.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref @@ -448,8 +447,7 @@ def create_repository_advisory( *, headers: Optional[Dict[str, str]] = None, data: RepositoryAdvisoryCreateType, - ) -> Response[RepositoryAdvisory]: - ... + ) -> Response[RepositoryAdvisory]: ... @overload def create_repository_advisory( @@ -472,8 +470,7 @@ def create_repository_advisory( ] = UNSET, cvss_vector_string: Missing[Union[str, None]] = UNSET, start_private_fork: Missing[bool] = UNSET, - ) -> Response[RepositoryAdvisory]: - ... + ) -> Response[RepositoryAdvisory]: ... def create_repository_advisory( self, @@ -525,8 +522,7 @@ async def async_create_repository_advisory( *, headers: Optional[Dict[str, str]] = None, data: RepositoryAdvisoryCreateType, - ) -> Response[RepositoryAdvisory]: - ... + ) -> Response[RepositoryAdvisory]: ... @overload async def async_create_repository_advisory( @@ -549,8 +545,7 @@ async def async_create_repository_advisory( ] = UNSET, cvss_vector_string: Missing[Union[str, None]] = UNSET, start_private_fork: Missing[bool] = UNSET, - ) -> Response[RepositoryAdvisory]: - ... + ) -> Response[RepositoryAdvisory]: ... async def async_create_repository_advisory( self, @@ -602,8 +597,7 @@ def create_private_vulnerability_report( *, headers: Optional[Dict[str, str]] = None, data: PrivateVulnerabilityReportCreateType, - ) -> Response[RepositoryAdvisory]: - ... + ) -> Response[RepositoryAdvisory]: ... @overload def create_private_vulnerability_report( @@ -626,8 +620,7 @@ def create_private_vulnerability_report( ] = UNSET, cvss_vector_string: Missing[Union[str, None]] = UNSET, start_private_fork: Missing[bool] = UNSET, - ) -> Response[RepositoryAdvisory]: - ... + ) -> Response[RepositoryAdvisory]: ... def create_private_vulnerability_report( self, @@ -679,8 +672,7 @@ async def async_create_private_vulnerability_report( *, headers: Optional[Dict[str, str]] = None, data: PrivateVulnerabilityReportCreateType, - ) -> Response[RepositoryAdvisory]: - ... + ) -> Response[RepositoryAdvisory]: ... @overload async def async_create_private_vulnerability_report( @@ -703,8 +695,7 @@ async def async_create_private_vulnerability_report( ] = UNSET, cvss_vector_string: Missing[Union[str, None]] = UNSET, start_private_fork: Missing[bool] = UNSET, - ) -> Response[RepositoryAdvisory]: - ... + ) -> Response[RepositoryAdvisory]: ... async def async_create_private_vulnerability_report( self, @@ -811,8 +802,7 @@ def update_repository_advisory( *, headers: Optional[Dict[str, str]] = None, data: RepositoryAdvisoryUpdateType, - ) -> Response[RepositoryAdvisory]: - ... + ) -> Response[RepositoryAdvisory]: ... @overload def update_repository_advisory( @@ -840,8 +830,7 @@ def update_repository_advisory( state: Missing[Literal["published", "closed", "draft"]] = UNSET, collaborating_users: Missing[Union[List[str], None]] = UNSET, collaborating_teams: Missing[Union[List[str], None]] = UNSET, - ) -> Response[RepositoryAdvisory]: - ... + ) -> Response[RepositoryAdvisory]: ... def update_repository_advisory( self, @@ -895,8 +884,7 @@ async def async_update_repository_advisory( *, headers: Optional[Dict[str, str]] = None, data: RepositoryAdvisoryUpdateType, - ) -> Response[RepositoryAdvisory]: - ... + ) -> Response[RepositoryAdvisory]: ... @overload async def async_update_repository_advisory( @@ -924,8 +912,7 @@ async def async_update_repository_advisory( state: Missing[Literal["published", "closed", "draft"]] = UNSET, collaborating_users: Missing[Union[List[str], None]] = UNSET, collaborating_teams: Missing[Union[List[str], None]] = UNSET, - ) -> Response[RepositoryAdvisory]: - ... + ) -> Response[RepositoryAdvisory]: ... async def async_update_repository_advisory( self, diff --git a/githubkit/versions/ghec_v2022_11_28/rest/server_statistics.py b/githubkit/versions/ghec_v2022_11_28/rest/server_statistics.py index 5463aac1d..81dfe4348 100644 --- a/githubkit/versions/ghec_v2022_11_28/rest/server_statistics.py +++ b/githubkit/versions/ghec_v2022_11_28/rest/server_statistics.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref diff --git a/githubkit/versions/ghec_v2022_11_28/rest/teams.py b/githubkit/versions/ghec_v2022_11_28/rest/teams.py index c2f3b5fb9..46ed96732 100644 --- a/githubkit/versions/ghec_v2022_11_28/rest/teams.py +++ b/githubkit/versions/ghec_v2022_11_28/rest/teams.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref @@ -326,8 +325,7 @@ def create( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgTeamsPostBodyType, - ) -> Response[TeamFull]: - ... + ) -> Response[TeamFull]: ... @overload def create( @@ -346,8 +344,7 @@ def create( ] = UNSET, permission: Missing[Literal["pull", "push"]] = UNSET, parent_team_id: Missing[int] = UNSET, - ) -> Response[TeamFull]: - ... + ) -> Response[TeamFull]: ... def create( self, @@ -391,8 +388,7 @@ async def async_create( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgTeamsPostBodyType, - ) -> Response[TeamFull]: - ... + ) -> Response[TeamFull]: ... @overload async def async_create( @@ -411,8 +407,7 @@ async def async_create( ] = UNSET, permission: Missing[Literal["pull", "push"]] = UNSET, parent_team_id: Missing[int] = UNSET, - ) -> Response[TeamFull]: - ... + ) -> Response[TeamFull]: ... async def async_create( self, @@ -545,8 +540,7 @@ def update_in_org( *, headers: Optional[Dict[str, str]] = None, data: Missing[OrgsOrgTeamsTeamSlugPatchBodyType] = UNSET, - ) -> Response[TeamFull]: - ... + ) -> Response[TeamFull]: ... @overload def update_in_org( @@ -564,8 +558,7 @@ def update_in_org( ] = UNSET, permission: Missing[Literal["pull", "push", "admin"]] = UNSET, parent_team_id: Missing[Union[int, None]] = UNSET, - ) -> Response[TeamFull]: - ... + ) -> Response[TeamFull]: ... def update_in_org( self, @@ -617,8 +610,7 @@ async def async_update_in_org( *, headers: Optional[Dict[str, str]] = None, data: Missing[OrgsOrgTeamsTeamSlugPatchBodyType] = UNSET, - ) -> Response[TeamFull]: - ... + ) -> Response[TeamFull]: ... @overload async def async_update_in_org( @@ -636,8 +628,7 @@ async def async_update_in_org( ] = UNSET, permission: Missing[Literal["pull", "push", "admin"]] = UNSET, parent_team_id: Missing[Union[int, None]] = UNSET, - ) -> Response[TeamFull]: - ... + ) -> Response[TeamFull]: ... async def async_update_in_org( self, @@ -761,8 +752,7 @@ def create_discussion_in_org( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgTeamsTeamSlugDiscussionsPostBodyType, - ) -> Response[TeamDiscussion]: - ... + ) -> Response[TeamDiscussion]: ... @overload def create_discussion_in_org( @@ -775,8 +765,7 @@ def create_discussion_in_org( title: str, body: str, private: Missing[bool] = UNSET, - ) -> Response[TeamDiscussion]: - ... + ) -> Response[TeamDiscussion]: ... def create_discussion_in_org( self, @@ -818,8 +807,7 @@ async def async_create_discussion_in_org( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgTeamsTeamSlugDiscussionsPostBodyType, - ) -> Response[TeamDiscussion]: - ... + ) -> Response[TeamDiscussion]: ... @overload async def async_create_discussion_in_org( @@ -832,8 +820,7 @@ async def async_create_discussion_in_org( title: str, body: str, private: Missing[bool] = UNSET, - ) -> Response[TeamDiscussion]: - ... + ) -> Response[TeamDiscussion]: ... async def async_create_discussion_in_org( self, @@ -964,8 +951,7 @@ def update_discussion_in_org( data: Missing[ OrgsOrgTeamsTeamSlugDiscussionsDiscussionNumberPatchBodyType ] = UNSET, - ) -> Response[TeamDiscussion]: - ... + ) -> Response[TeamDiscussion]: ... @overload def update_discussion_in_org( @@ -978,8 +964,7 @@ def update_discussion_in_org( headers: Optional[Dict[str, str]] = None, title: Missing[str] = UNSET, body: Missing[str] = UNSET, - ) -> Response[TeamDiscussion]: - ... + ) -> Response[TeamDiscussion]: ... def update_discussion_in_org( self, @@ -1032,8 +1017,7 @@ async def async_update_discussion_in_org( data: Missing[ OrgsOrgTeamsTeamSlugDiscussionsDiscussionNumberPatchBodyType ] = UNSET, - ) -> Response[TeamDiscussion]: - ... + ) -> Response[TeamDiscussion]: ... @overload async def async_update_discussion_in_org( @@ -1046,8 +1030,7 @@ async def async_update_discussion_in_org( headers: Optional[Dict[str, str]] = None, title: Missing[str] = UNSET, body: Missing[str] = UNSET, - ) -> Response[TeamDiscussion]: - ... + ) -> Response[TeamDiscussion]: ... async def async_update_discussion_in_org( self, @@ -1168,8 +1151,7 @@ def create_discussion_comment_in_org( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgTeamsTeamSlugDiscussionsDiscussionNumberCommentsPostBodyType, - ) -> Response[TeamDiscussionComment]: - ... + ) -> Response[TeamDiscussionComment]: ... @overload def create_discussion_comment_in_org( @@ -1181,8 +1163,7 @@ def create_discussion_comment_in_org( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, body: str, - ) -> Response[TeamDiscussionComment]: - ... + ) -> Response[TeamDiscussionComment]: ... def create_discussion_comment_in_org( self, @@ -1233,8 +1214,7 @@ async def async_create_discussion_comment_in_org( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgTeamsTeamSlugDiscussionsDiscussionNumberCommentsPostBodyType, - ) -> Response[TeamDiscussionComment]: - ... + ) -> Response[TeamDiscussionComment]: ... @overload async def async_create_discussion_comment_in_org( @@ -1246,8 +1226,7 @@ async def async_create_discussion_comment_in_org( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, body: str, - ) -> Response[TeamDiscussionComment]: - ... + ) -> Response[TeamDiscussionComment]: ... async def async_create_discussion_comment_in_org( self, @@ -1389,8 +1368,7 @@ def update_discussion_comment_in_org( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgTeamsTeamSlugDiscussionsDiscussionNumberCommentsCommentNumberPatchBodyType, - ) -> Response[TeamDiscussionComment]: - ... + ) -> Response[TeamDiscussionComment]: ... @overload def update_discussion_comment_in_org( @@ -1403,8 +1381,7 @@ def update_discussion_comment_in_org( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, body: str, - ) -> Response[TeamDiscussionComment]: - ... + ) -> Response[TeamDiscussionComment]: ... def update_discussion_comment_in_org( self, @@ -1458,8 +1435,7 @@ async def async_update_discussion_comment_in_org( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgTeamsTeamSlugDiscussionsDiscussionNumberCommentsCommentNumberPatchBodyType, - ) -> Response[TeamDiscussionComment]: - ... + ) -> Response[TeamDiscussionComment]: ... @overload async def async_update_discussion_comment_in_org( @@ -1472,8 +1448,7 @@ async def async_update_discussion_comment_in_org( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, body: str, - ) -> Response[TeamDiscussionComment]: - ... + ) -> Response[TeamDiscussionComment]: ... async def async_update_discussion_comment_in_org( self, @@ -1607,8 +1582,7 @@ def link_external_idp_group_to_team_for_org( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgTeamsTeamSlugExternalGroupsPatchBodyType, - ) -> Response[ExternalGroup]: - ... + ) -> Response[ExternalGroup]: ... @overload def link_external_idp_group_to_team_for_org( @@ -1619,8 +1593,7 @@ def link_external_idp_group_to_team_for_org( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, group_id: int, - ) -> Response[ExternalGroup]: - ... + ) -> Response[ExternalGroup]: ... def link_external_idp_group_to_team_for_org( self, @@ -1662,8 +1635,7 @@ async def async_link_external_idp_group_to_team_for_org( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgTeamsTeamSlugExternalGroupsPatchBodyType, - ) -> Response[ExternalGroup]: - ... + ) -> Response[ExternalGroup]: ... @overload async def async_link_external_idp_group_to_team_for_org( @@ -1674,8 +1646,7 @@ async def async_link_external_idp_group_to_team_for_org( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, group_id: int, - ) -> Response[ExternalGroup]: - ... + ) -> Response[ExternalGroup]: ... async def async_link_external_idp_group_to_team_for_org( self, @@ -1898,8 +1869,7 @@ def add_or_update_membership_for_user_in_org( *, headers: Optional[Dict[str, str]] = None, data: Missing[OrgsOrgTeamsTeamSlugMembershipsUsernamePutBodyType] = UNSET, - ) -> Response[TeamMembership]: - ... + ) -> Response[TeamMembership]: ... @overload def add_or_update_membership_for_user_in_org( @@ -1911,8 +1881,7 @@ def add_or_update_membership_for_user_in_org( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, role: Missing[Literal["member", "maintainer"]] = UNSET, - ) -> Response[TeamMembership]: - ... + ) -> Response[TeamMembership]: ... def add_or_update_membership_for_user_in_org( self, @@ -1962,8 +1931,7 @@ async def async_add_or_update_membership_for_user_in_org( *, headers: Optional[Dict[str, str]] = None, data: Missing[OrgsOrgTeamsTeamSlugMembershipsUsernamePutBodyType] = UNSET, - ) -> Response[TeamMembership]: - ... + ) -> Response[TeamMembership]: ... @overload async def async_add_or_update_membership_for_user_in_org( @@ -1975,8 +1943,7 @@ async def async_add_or_update_membership_for_user_in_org( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, role: Missing[Literal["member", "maintainer"]] = UNSET, - ) -> Response[TeamMembership]: - ... + ) -> Response[TeamMembership]: ... async def async_add_or_update_membership_for_user_in_org( self, @@ -2182,8 +2149,7 @@ def add_or_update_project_permissions_in_org( data: Missing[ Union[OrgsOrgTeamsTeamSlugProjectsProjectIdPutBodyType, None] ] = UNSET, - ) -> Response: - ... + ) -> Response: ... @overload def add_or_update_project_permissions_in_org( @@ -2195,8 +2161,7 @@ def add_or_update_project_permissions_in_org( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, permission: Missing[Literal["read", "write", "admin"]] = UNSET, - ) -> Response: - ... + ) -> Response: ... def add_or_update_project_permissions_in_org( self, @@ -2253,8 +2218,7 @@ async def async_add_or_update_project_permissions_in_org( data: Missing[ Union[OrgsOrgTeamsTeamSlugProjectsProjectIdPutBodyType, None] ] = UNSET, - ) -> Response: - ... + ) -> Response: ... @overload async def async_add_or_update_project_permissions_in_org( @@ -2266,8 +2230,7 @@ async def async_add_or_update_project_permissions_in_org( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, permission: Missing[Literal["read", "write", "admin"]] = UNSET, - ) -> Response: - ... + ) -> Response: ... async def async_add_or_update_project_permissions_in_org( self, @@ -2477,8 +2440,7 @@ def add_or_update_repo_permissions_in_org( *, headers: Optional[Dict[str, str]] = None, data: Missing[OrgsOrgTeamsTeamSlugReposOwnerRepoPutBodyType] = UNSET, - ) -> Response: - ... + ) -> Response: ... @overload def add_or_update_repo_permissions_in_org( @@ -2491,8 +2453,7 @@ def add_or_update_repo_permissions_in_org( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, permission: Missing[str] = UNSET, - ) -> Response: - ... + ) -> Response: ... def add_or_update_repo_permissions_in_org( self, @@ -2537,8 +2498,7 @@ async def async_add_or_update_repo_permissions_in_org( *, headers: Optional[Dict[str, str]] = None, data: Missing[OrgsOrgTeamsTeamSlugReposOwnerRepoPutBodyType] = UNSET, - ) -> Response: - ... + ) -> Response: ... @overload async def async_add_or_update_repo_permissions_in_org( @@ -2551,8 +2511,7 @@ async def async_add_or_update_repo_permissions_in_org( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, permission: Missing[str] = UNSET, - ) -> Response: - ... + ) -> Response: ... async def async_add_or_update_repo_permissions_in_org( self, @@ -2681,8 +2640,7 @@ def create_or_update_idp_group_connections_in_org( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgTeamsTeamSlugTeamSyncGroupMappingsPatchBodyType, - ) -> Response[GroupMapping]: - ... + ) -> Response[GroupMapping]: ... @overload def create_or_update_idp_group_connections_in_org( @@ -2695,8 +2653,7 @@ def create_or_update_idp_group_connections_in_org( groups: Missing[ List[OrgsOrgTeamsTeamSlugTeamSyncGroupMappingsPatchBodyPropGroupsItemsType] ] = UNSET, - ) -> Response[GroupMapping]: - ... + ) -> Response[GroupMapping]: ... def create_or_update_idp_group_connections_in_org( self, @@ -2743,8 +2700,7 @@ async def async_create_or_update_idp_group_connections_in_org( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgTeamsTeamSlugTeamSyncGroupMappingsPatchBodyType, - ) -> Response[GroupMapping]: - ... + ) -> Response[GroupMapping]: ... @overload async def async_create_or_update_idp_group_connections_in_org( @@ -2757,8 +2713,7 @@ async def async_create_or_update_idp_group_connections_in_org( groups: Missing[ List[OrgsOrgTeamsTeamSlugTeamSyncGroupMappingsPatchBodyPropGroupsItemsType] ] = UNSET, - ) -> Response[GroupMapping]: - ... + ) -> Response[GroupMapping]: ... async def async_create_or_update_idp_group_connections_in_org( self, @@ -2964,8 +2919,7 @@ def update_legacy( *, headers: Optional[Dict[str, str]] = None, data: TeamsTeamIdPatchBodyType, - ) -> Response[TeamFull]: - ... + ) -> Response[TeamFull]: ... @overload def update_legacy( @@ -2982,8 +2936,7 @@ def update_legacy( ] = UNSET, permission: Missing[Literal["pull", "push", "admin"]] = UNSET, parent_team_id: Missing[Union[int, None]] = UNSET, - ) -> Response[TeamFull]: - ... + ) -> Response[TeamFull]: ... def update_legacy( self, @@ -3028,8 +2981,7 @@ async def async_update_legacy( *, headers: Optional[Dict[str, str]] = None, data: TeamsTeamIdPatchBodyType, - ) -> Response[TeamFull]: - ... + ) -> Response[TeamFull]: ... @overload async def async_update_legacy( @@ -3046,8 +2998,7 @@ async def async_update_legacy( ] = UNSET, permission: Missing[Literal["pull", "push", "admin"]] = UNSET, parent_team_id: Missing[Union[int, None]] = UNSET, - ) -> Response[TeamFull]: - ... + ) -> Response[TeamFull]: ... async def async_update_legacy( self, @@ -3158,8 +3109,7 @@ def create_discussion_legacy( *, headers: Optional[Dict[str, str]] = None, data: TeamsTeamIdDiscussionsPostBodyType, - ) -> Response[TeamDiscussion]: - ... + ) -> Response[TeamDiscussion]: ... @overload def create_discussion_legacy( @@ -3171,8 +3121,7 @@ def create_discussion_legacy( title: str, body: str, private: Missing[bool] = UNSET, - ) -> Response[TeamDiscussion]: - ... + ) -> Response[TeamDiscussion]: ... def create_discussion_legacy( self, @@ -3212,8 +3161,7 @@ async def async_create_discussion_legacy( *, headers: Optional[Dict[str, str]] = None, data: TeamsTeamIdDiscussionsPostBodyType, - ) -> Response[TeamDiscussion]: - ... + ) -> Response[TeamDiscussion]: ... @overload async def async_create_discussion_legacy( @@ -3225,8 +3173,7 @@ async def async_create_discussion_legacy( title: str, body: str, private: Missing[bool] = UNSET, - ) -> Response[TeamDiscussion]: - ... + ) -> Response[TeamDiscussion]: ... async def async_create_discussion_legacy( self, @@ -3349,8 +3296,7 @@ def update_discussion_legacy( *, headers: Optional[Dict[str, str]] = None, data: Missing[TeamsTeamIdDiscussionsDiscussionNumberPatchBodyType] = UNSET, - ) -> Response[TeamDiscussion]: - ... + ) -> Response[TeamDiscussion]: ... @overload def update_discussion_legacy( @@ -3362,8 +3308,7 @@ def update_discussion_legacy( headers: Optional[Dict[str, str]] = None, title: Missing[str] = UNSET, body: Missing[str] = UNSET, - ) -> Response[TeamDiscussion]: - ... + ) -> Response[TeamDiscussion]: ... def update_discussion_legacy( self, @@ -3410,8 +3355,7 @@ async def async_update_discussion_legacy( *, headers: Optional[Dict[str, str]] = None, data: Missing[TeamsTeamIdDiscussionsDiscussionNumberPatchBodyType] = UNSET, - ) -> Response[TeamDiscussion]: - ... + ) -> Response[TeamDiscussion]: ... @overload async def async_update_discussion_legacy( @@ -3423,8 +3367,7 @@ async def async_update_discussion_legacy( headers: Optional[Dict[str, str]] = None, title: Missing[str] = UNSET, body: Missing[str] = UNSET, - ) -> Response[TeamDiscussion]: - ... + ) -> Response[TeamDiscussion]: ... async def async_update_discussion_legacy( self, @@ -3539,8 +3482,7 @@ def create_discussion_comment_legacy( *, headers: Optional[Dict[str, str]] = None, data: TeamsTeamIdDiscussionsDiscussionNumberCommentsPostBodyType, - ) -> Response[TeamDiscussionComment]: - ... + ) -> Response[TeamDiscussionComment]: ... @overload def create_discussion_comment_legacy( @@ -3551,8 +3493,7 @@ def create_discussion_comment_legacy( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, body: str, - ) -> Response[TeamDiscussionComment]: - ... + ) -> Response[TeamDiscussionComment]: ... def create_discussion_comment_legacy( self, @@ -3601,8 +3542,7 @@ async def async_create_discussion_comment_legacy( *, headers: Optional[Dict[str, str]] = None, data: TeamsTeamIdDiscussionsDiscussionNumberCommentsPostBodyType, - ) -> Response[TeamDiscussionComment]: - ... + ) -> Response[TeamDiscussionComment]: ... @overload async def async_create_discussion_comment_legacy( @@ -3613,8 +3553,7 @@ async def async_create_discussion_comment_legacy( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, body: str, - ) -> Response[TeamDiscussionComment]: - ... + ) -> Response[TeamDiscussionComment]: ... async def async_create_discussion_comment_legacy( self, @@ -3750,8 +3689,7 @@ def update_discussion_comment_legacy( *, headers: Optional[Dict[str, str]] = None, data: TeamsTeamIdDiscussionsDiscussionNumberCommentsCommentNumberPatchBodyType, - ) -> Response[TeamDiscussionComment]: - ... + ) -> Response[TeamDiscussionComment]: ... @overload def update_discussion_comment_legacy( @@ -3763,8 +3701,7 @@ def update_discussion_comment_legacy( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, body: str, - ) -> Response[TeamDiscussionComment]: - ... + ) -> Response[TeamDiscussionComment]: ... def update_discussion_comment_legacy( self, @@ -3815,8 +3752,7 @@ async def async_update_discussion_comment_legacy( *, headers: Optional[Dict[str, str]] = None, data: TeamsTeamIdDiscussionsDiscussionNumberCommentsCommentNumberPatchBodyType, - ) -> Response[TeamDiscussionComment]: - ... + ) -> Response[TeamDiscussionComment]: ... @overload async def async_update_discussion_comment_legacy( @@ -3828,8 +3764,7 @@ async def async_update_discussion_comment_legacy( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, body: str, - ) -> Response[TeamDiscussionComment]: - ... + ) -> Response[TeamDiscussionComment]: ... async def async_update_discussion_comment_legacy( self, @@ -4191,8 +4126,7 @@ def add_or_update_membership_for_user_legacy( *, headers: Optional[Dict[str, str]] = None, data: Missing[TeamsTeamIdMembershipsUsernamePutBodyType] = UNSET, - ) -> Response[TeamMembership]: - ... + ) -> Response[TeamMembership]: ... @overload def add_or_update_membership_for_user_legacy( @@ -4203,8 +4137,7 @@ def add_or_update_membership_for_user_legacy( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, role: Missing[Literal["member", "maintainer"]] = UNSET, - ) -> Response[TeamMembership]: - ... + ) -> Response[TeamMembership]: ... def add_or_update_membership_for_user_legacy( self, @@ -4253,8 +4186,7 @@ async def async_add_or_update_membership_for_user_legacy( *, headers: Optional[Dict[str, str]] = None, data: Missing[TeamsTeamIdMembershipsUsernamePutBodyType] = UNSET, - ) -> Response[TeamMembership]: - ... + ) -> Response[TeamMembership]: ... @overload async def async_add_or_update_membership_for_user_legacy( @@ -4265,8 +4197,7 @@ async def async_add_or_update_membership_for_user_legacy( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, role: Missing[Literal["member", "maintainer"]] = UNSET, - ) -> Response[TeamMembership]: - ... + ) -> Response[TeamMembership]: ... async def async_add_or_update_membership_for_user_legacy( self, @@ -4469,8 +4400,7 @@ def add_or_update_project_permissions_legacy( *, headers: Optional[Dict[str, str]] = None, data: Missing[TeamsTeamIdProjectsProjectIdPutBodyType] = UNSET, - ) -> Response: - ... + ) -> Response: ... @overload def add_or_update_project_permissions_legacy( @@ -4481,8 +4411,7 @@ def add_or_update_project_permissions_legacy( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, permission: Missing[Literal["read", "write", "admin"]] = UNSET, - ) -> Response: - ... + ) -> Response: ... def add_or_update_project_permissions_legacy( self, @@ -4533,8 +4462,7 @@ async def async_add_or_update_project_permissions_legacy( *, headers: Optional[Dict[str, str]] = None, data: Missing[TeamsTeamIdProjectsProjectIdPutBodyType] = UNSET, - ) -> Response: - ... + ) -> Response: ... @overload async def async_add_or_update_project_permissions_legacy( @@ -4545,8 +4473,7 @@ async def async_add_or_update_project_permissions_legacy( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, permission: Missing[Literal["read", "write", "admin"]] = UNSET, - ) -> Response: - ... + ) -> Response: ... async def async_add_or_update_project_permissions_legacy( self, @@ -4764,8 +4691,7 @@ def add_or_update_repo_permissions_legacy( *, headers: Optional[Dict[str, str]] = None, data: Missing[TeamsTeamIdReposOwnerRepoPutBodyType] = UNSET, - ) -> Response: - ... + ) -> Response: ... @overload def add_or_update_repo_permissions_legacy( @@ -4777,8 +4703,7 @@ def add_or_update_repo_permissions_legacy( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, permission: Missing[Literal["pull", "push", "admin"]] = UNSET, - ) -> Response: - ... + ) -> Response: ... def add_or_update_repo_permissions_legacy( self, @@ -4829,8 +4754,7 @@ async def async_add_or_update_repo_permissions_legacy( *, headers: Optional[Dict[str, str]] = None, data: Missing[TeamsTeamIdReposOwnerRepoPutBodyType] = UNSET, - ) -> Response: - ... + ) -> Response: ... @overload async def async_add_or_update_repo_permissions_legacy( @@ -4842,8 +4766,7 @@ async def async_add_or_update_repo_permissions_legacy( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, permission: Missing[Literal["pull", "push", "admin"]] = UNSET, - ) -> Response: - ... + ) -> Response: ... async def async_add_or_update_repo_permissions_legacy( self, @@ -4982,8 +4905,7 @@ def create_or_update_idp_group_connections_legacy( *, headers: Optional[Dict[str, str]] = None, data: TeamsTeamIdTeamSyncGroupMappingsPatchBodyType, - ) -> Response[GroupMapping]: - ... + ) -> Response[GroupMapping]: ... @overload def create_or_update_idp_group_connections_legacy( @@ -4994,8 +4916,7 @@ def create_or_update_idp_group_connections_legacy( headers: Optional[Dict[str, str]] = None, groups: List[TeamsTeamIdTeamSyncGroupMappingsPatchBodyPropGroupsItemsType], synced_at: Missing[str] = UNSET, - ) -> Response[GroupMapping]: - ... + ) -> Response[GroupMapping]: ... def create_or_update_idp_group_connections_legacy( self, @@ -5044,8 +4965,7 @@ async def async_create_or_update_idp_group_connections_legacy( *, headers: Optional[Dict[str, str]] = None, data: TeamsTeamIdTeamSyncGroupMappingsPatchBodyType, - ) -> Response[GroupMapping]: - ... + ) -> Response[GroupMapping]: ... @overload async def async_create_or_update_idp_group_connections_legacy( @@ -5056,8 +4976,7 @@ async def async_create_or_update_idp_group_connections_legacy( headers: Optional[Dict[str, str]] = None, groups: List[TeamsTeamIdTeamSyncGroupMappingsPatchBodyPropGroupsItemsType], synced_at: Missing[str] = UNSET, - ) -> Response[GroupMapping]: - ... + ) -> Response[GroupMapping]: ... async def async_create_or_update_idp_group_connections_legacy( self, diff --git a/githubkit/versions/ghec_v2022_11_28/rest/users.py b/githubkit/versions/ghec_v2022_11_28/rest/users.py index 22c9eef40..80cf24430 100644 --- a/githubkit/versions/ghec_v2022_11_28/rest/users.py +++ b/githubkit/versions/ghec_v2022_11_28/rest/users.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref @@ -125,8 +124,7 @@ def update_authenticated( *, headers: Optional[Dict[str, str]] = None, data: Missing[UserPatchBodyType] = UNSET, - ) -> Response[PrivateUser]: - ... + ) -> Response[PrivateUser]: ... @overload def update_authenticated( @@ -142,8 +140,7 @@ def update_authenticated( location: Missing[str] = UNSET, hireable: Missing[bool] = UNSET, bio: Missing[str] = UNSET, - ) -> Response[PrivateUser]: - ... + ) -> Response[PrivateUser]: ... def update_authenticated( self, @@ -187,8 +184,7 @@ async def async_update_authenticated( *, headers: Optional[Dict[str, str]] = None, data: Missing[UserPatchBodyType] = UNSET, - ) -> Response[PrivateUser]: - ... + ) -> Response[PrivateUser]: ... @overload async def async_update_authenticated( @@ -204,8 +200,7 @@ async def async_update_authenticated( location: Missing[str] = UNSET, hireable: Missing[bool] = UNSET, bio: Missing[str] = UNSET, - ) -> Response[PrivateUser]: - ... + ) -> Response[PrivateUser]: ... async def async_update_authenticated( self, @@ -471,8 +466,7 @@ def set_primary_email_visibility_for_authenticated_user( *, headers: Optional[Dict[str, str]] = None, data: UserEmailVisibilityPatchBodyType, - ) -> Response[List[Email]]: - ... + ) -> Response[List[Email]]: ... @overload def set_primary_email_visibility_for_authenticated_user( @@ -481,8 +475,7 @@ def set_primary_email_visibility_for_authenticated_user( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, visibility: Literal["public", "private"], - ) -> Response[List[Email]]: - ... + ) -> Response[List[Email]]: ... def set_primary_email_visibility_for_authenticated_user( self, @@ -533,8 +526,7 @@ async def async_set_primary_email_visibility_for_authenticated_user( *, headers: Optional[Dict[str, str]] = None, data: UserEmailVisibilityPatchBodyType, - ) -> Response[List[Email]]: - ... + ) -> Response[List[Email]]: ... @overload async def async_set_primary_email_visibility_for_authenticated_user( @@ -543,8 +535,7 @@ async def async_set_primary_email_visibility_for_authenticated_user( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, visibility: Literal["public", "private"], - ) -> Response[List[Email]]: - ... + ) -> Response[List[Email]]: ... async def async_set_primary_email_visibility_for_authenticated_user( self, @@ -665,8 +656,7 @@ def add_email_for_authenticated_user( *, headers: Optional[Dict[str, str]] = None, data: Missing[Union[UserEmailsPostBodyOneof0Type, List[str], str]] = UNSET, - ) -> Response[List[Email]]: - ... + ) -> Response[List[Email]]: ... @overload def add_email_for_authenticated_user( @@ -675,8 +665,7 @@ def add_email_for_authenticated_user( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, emails: List[str], - ) -> Response[List[Email]]: - ... + ) -> Response[List[Email]]: ... def add_email_for_authenticated_user( self, @@ -729,8 +718,7 @@ async def async_add_email_for_authenticated_user( *, headers: Optional[Dict[str, str]] = None, data: Missing[Union[UserEmailsPostBodyOneof0Type, List[str], str]] = UNSET, - ) -> Response[List[Email]]: - ... + ) -> Response[List[Email]]: ... @overload async def async_add_email_for_authenticated_user( @@ -739,8 +727,7 @@ async def async_add_email_for_authenticated_user( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, emails: List[str], - ) -> Response[List[Email]]: - ... + ) -> Response[List[Email]]: ... async def async_add_email_for_authenticated_user( self, @@ -793,8 +780,7 @@ def delete_email_for_authenticated_user( *, headers: Optional[Dict[str, str]] = None, data: Missing[Union[UserEmailsDeleteBodyOneof0Type, List[str], str]] = UNSET, - ) -> Response: - ... + ) -> Response: ... @overload def delete_email_for_authenticated_user( @@ -803,8 +789,7 @@ def delete_email_for_authenticated_user( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, emails: List[str], - ) -> Response: - ... + ) -> Response: ... def delete_email_for_authenticated_user( self, @@ -851,8 +836,7 @@ async def async_delete_email_for_authenticated_user( *, headers: Optional[Dict[str, str]] = None, data: Missing[Union[UserEmailsDeleteBodyOneof0Type, List[str], str]] = UNSET, - ) -> Response: - ... + ) -> Response: ... @overload async def async_delete_email_for_authenticated_user( @@ -861,8 +845,7 @@ async def async_delete_email_for_authenticated_user( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, emails: List[str], - ) -> Response: - ... + ) -> Response: ... async def async_delete_email_for_authenticated_user( self, @@ -1262,8 +1245,7 @@ async def async_list_gpg_keys_for_authenticated_user( @overload def create_gpg_key_for_authenticated_user( self, *, headers: Optional[Dict[str, str]] = None, data: UserGpgKeysPostBodyType - ) -> Response[GpgKey]: - ... + ) -> Response[GpgKey]: ... @overload def create_gpg_key_for_authenticated_user( @@ -1273,8 +1255,7 @@ def create_gpg_key_for_authenticated_user( headers: Optional[Dict[str, str]] = None, name: Missing[str] = UNSET, armored_public_key: str, - ) -> Response[GpgKey]: - ... + ) -> Response[GpgKey]: ... def create_gpg_key_for_authenticated_user( self, @@ -1315,8 +1296,7 @@ def create_gpg_key_for_authenticated_user( @overload async def async_create_gpg_key_for_authenticated_user( self, *, headers: Optional[Dict[str, str]] = None, data: UserGpgKeysPostBodyType - ) -> Response[GpgKey]: - ... + ) -> Response[GpgKey]: ... @overload async def async_create_gpg_key_for_authenticated_user( @@ -1326,8 +1306,7 @@ async def async_create_gpg_key_for_authenticated_user( headers: Optional[Dict[str, str]] = None, name: Missing[str] = UNSET, armored_public_key: str, - ) -> Response[GpgKey]: - ... + ) -> Response[GpgKey]: ... async def async_create_gpg_key_for_authenticated_user( self, @@ -1542,8 +1521,7 @@ async def async_list_public_ssh_keys_for_authenticated_user( @overload def create_public_ssh_key_for_authenticated_user( self, *, headers: Optional[Dict[str, str]] = None, data: UserKeysPostBodyType - ) -> Response[Key]: - ... + ) -> Response[Key]: ... @overload def create_public_ssh_key_for_authenticated_user( @@ -1553,8 +1531,7 @@ def create_public_ssh_key_for_authenticated_user( headers: Optional[Dict[str, str]] = None, title: Missing[str] = UNSET, key: str, - ) -> Response[Key]: - ... + ) -> Response[Key]: ... def create_public_ssh_key_for_authenticated_user( self, @@ -1595,8 +1572,7 @@ def create_public_ssh_key_for_authenticated_user( @overload async def async_create_public_ssh_key_for_authenticated_user( self, *, headers: Optional[Dict[str, str]] = None, data: UserKeysPostBodyType - ) -> Response[Key]: - ... + ) -> Response[Key]: ... @overload async def async_create_public_ssh_key_for_authenticated_user( @@ -1606,8 +1582,7 @@ async def async_create_public_ssh_key_for_authenticated_user( headers: Optional[Dict[str, str]] = None, title: Missing[str] = UNSET, key: str, - ) -> Response[Key]: - ... + ) -> Response[Key]: ... async def async_create_public_ssh_key_for_authenticated_user( self, @@ -1893,8 +1868,7 @@ def add_social_account_for_authenticated_user( *, headers: Optional[Dict[str, str]] = None, data: UserSocialAccountsPostBodyType, - ) -> Response[List[SocialAccount]]: - ... + ) -> Response[List[SocialAccount]]: ... @overload def add_social_account_for_authenticated_user( @@ -1903,8 +1877,7 @@ def add_social_account_for_authenticated_user( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, account_urls: List[str], - ) -> Response[List[SocialAccount]]: - ... + ) -> Response[List[SocialAccount]]: ... def add_social_account_for_authenticated_user( self, @@ -1955,8 +1928,7 @@ async def async_add_social_account_for_authenticated_user( *, headers: Optional[Dict[str, str]] = None, data: UserSocialAccountsPostBodyType, - ) -> Response[List[SocialAccount]]: - ... + ) -> Response[List[SocialAccount]]: ... @overload async def async_add_social_account_for_authenticated_user( @@ -1965,8 +1937,7 @@ async def async_add_social_account_for_authenticated_user( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, account_urls: List[str], - ) -> Response[List[SocialAccount]]: - ... + ) -> Response[List[SocialAccount]]: ... async def async_add_social_account_for_authenticated_user( self, @@ -2017,8 +1988,7 @@ def delete_social_account_for_authenticated_user( *, headers: Optional[Dict[str, str]] = None, data: UserSocialAccountsDeleteBodyType, - ) -> Response: - ... + ) -> Response: ... @overload def delete_social_account_for_authenticated_user( @@ -2027,8 +1997,7 @@ def delete_social_account_for_authenticated_user( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, account_urls: List[str], - ) -> Response: - ... + ) -> Response: ... def delete_social_account_for_authenticated_user( self, @@ -2071,8 +2040,7 @@ async def async_delete_social_account_for_authenticated_user( *, headers: Optional[Dict[str, str]] = None, data: UserSocialAccountsDeleteBodyType, - ) -> Response: - ... + ) -> Response: ... @overload async def async_delete_social_account_for_authenticated_user( @@ -2081,8 +2049,7 @@ async def async_delete_social_account_for_authenticated_user( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, account_urls: List[str], - ) -> Response: - ... + ) -> Response: ... async def async_delete_social_account_for_authenticated_user( self, @@ -2195,8 +2162,7 @@ def create_ssh_signing_key_for_authenticated_user( *, headers: Optional[Dict[str, str]] = None, data: UserSshSigningKeysPostBodyType, - ) -> Response[SshSigningKey]: - ... + ) -> Response[SshSigningKey]: ... @overload def create_ssh_signing_key_for_authenticated_user( @@ -2206,8 +2172,7 @@ def create_ssh_signing_key_for_authenticated_user( headers: Optional[Dict[str, str]] = None, title: Missing[str] = UNSET, key: str, - ) -> Response[SshSigningKey]: - ... + ) -> Response[SshSigningKey]: ... def create_ssh_signing_key_for_authenticated_user( self, @@ -2256,8 +2221,7 @@ async def async_create_ssh_signing_key_for_authenticated_user( *, headers: Optional[Dict[str, str]] = None, data: UserSshSigningKeysPostBodyType, - ) -> Response[SshSigningKey]: - ... + ) -> Response[SshSigningKey]: ... @overload async def async_create_ssh_signing_key_for_authenticated_user( @@ -2267,8 +2231,7 @@ async def async_create_ssh_signing_key_for_authenticated_user( headers: Optional[Dict[str, str]] = None, title: Missing[str] = UNSET, key: str, - ) -> Response[SshSigningKey]: - ... + ) -> Response[SshSigningKey]: ... async def async_create_ssh_signing_key_for_authenticated_user( self, diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0000.py b/githubkit/versions/ghec_v2022_11_28/types/group_0000.py index 2d0574cc1..d4dcc05fe 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0000.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0000.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0001.py b/githubkit/versions/ghec_v2022_11_28/types/group_0001.py index 2eba93ee9..c2538905a 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0001.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0001.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0002.py b/githubkit/versions/ghec_v2022_11_28/types/group_0002.py index 27dd9c802..3b6d886cf 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0002.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0002.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0003.py b/githubkit/versions/ghec_v2022_11_28/types/group_0003.py index 5c475c239..d2cd2d88a 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0003.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0003.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0004.py b/githubkit/versions/ghec_v2022_11_28/types/group_0004.py index c87d4255d..963b14a07 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0004.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0004.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0005.py b/githubkit/versions/ghec_v2022_11_28/types/group_0005.py index 7a728ba1d..fedf9bcf8 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0005.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0005.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0006.py b/githubkit/versions/ghec_v2022_11_28/types/group_0006.py index 038eae772..4ef8233b0 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0006.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0006.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0007.py b/githubkit/versions/ghec_v2022_11_28/types/group_0007.py index b030bf153..e07685931 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0007.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0007.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0008.py b/githubkit/versions/ghec_v2022_11_28/types/group_0008.py index 16fb872a4..ddecf7be9 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0008.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0008.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0009.py b/githubkit/versions/ghec_v2022_11_28/types/group_0009.py index f99ab50b6..ac19c2eb1 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0009.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0009.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0010.py b/githubkit/versions/ghec_v2022_11_28/types/group_0010.py index 3e7e27d9f..51f0ddf81 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0010.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0010.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0011.py b/githubkit/versions/ghec_v2022_11_28/types/group_0011.py index 4b386245f..d9cddd087 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0011.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0011.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0012.py b/githubkit/versions/ghec_v2022_11_28/types/group_0012.py index 78f965034..6e82bb1dd 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0012.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0012.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0013.py b/githubkit/versions/ghec_v2022_11_28/types/group_0013.py index 1aee971b0..ec56f1ba2 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0013.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0013.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0014.py b/githubkit/versions/ghec_v2022_11_28/types/group_0014.py index 2d2e6b59e..7cf53e3f3 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0014.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0014.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0015.py b/githubkit/versions/ghec_v2022_11_28/types/group_0015.py index 11d7a0dd2..c05799441 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0015.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0015.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0016.py b/githubkit/versions/ghec_v2022_11_28/types/group_0016.py index dd2225d7b..e9eb466a3 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0016.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0016.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0017.py b/githubkit/versions/ghec_v2022_11_28/types/group_0017.py index ce4f55540..0f6b449a9 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0017.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0017.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0018.py b/githubkit/versions/ghec_v2022_11_28/types/group_0018.py index 0575bc788..823ed4f9c 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0018.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0018.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0019.py b/githubkit/versions/ghec_v2022_11_28/types/group_0019.py index 4acfc247a..722c7f6e3 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0019.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0019.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0020.py b/githubkit/versions/ghec_v2022_11_28/types/group_0020.py index 6ed2bb2a6..08e7f10cd 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0020.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0020.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0021.py b/githubkit/versions/ghec_v2022_11_28/types/group_0021.py index fe59ff79c..92dae5f1f 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0021.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0021.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0022.py b/githubkit/versions/ghec_v2022_11_28/types/group_0022.py index 2b3824eb6..3cfd85640 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0022.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0022.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0023.py b/githubkit/versions/ghec_v2022_11_28/types/group_0023.py index 5fbeba18f..0dbd28340 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0023.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0023.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0024.py b/githubkit/versions/ghec_v2022_11_28/types/group_0024.py index 28eab8971..548561116 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0024.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0024.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0025.py b/githubkit/versions/ghec_v2022_11_28/types/group_0025.py index 2bfd93d51..5c161b929 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0025.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0025.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0026.py b/githubkit/versions/ghec_v2022_11_28/types/group_0026.py index 47c24f4d0..a41742c81 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0026.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0026.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0027.py b/githubkit/versions/ghec_v2022_11_28/types/group_0027.py index 0fa6fe76f..695e7ec8b 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0027.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0027.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0028.py b/githubkit/versions/ghec_v2022_11_28/types/group_0028.py index 30186119f..83c0e906e 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0028.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0028.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0029.py b/githubkit/versions/ghec_v2022_11_28/types/group_0029.py index ea6ff04e3..4b96a4953 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0029.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0029.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0030.py b/githubkit/versions/ghec_v2022_11_28/types/group_0030.py index 0b71b7af1..59dfc4ff1 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0030.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0030.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0031.py b/githubkit/versions/ghec_v2022_11_28/types/group_0031.py index b1df90572..87512f917 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0031.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0031.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0032.py b/githubkit/versions/ghec_v2022_11_28/types/group_0032.py index ff525b65c..ee668e8e5 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0032.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0032.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0033.py b/githubkit/versions/ghec_v2022_11_28/types/group_0033.py index fe7f45e8f..c58767cc2 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0033.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0033.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0034.py b/githubkit/versions/ghec_v2022_11_28/types/group_0034.py index edb647ecc..b879f3b65 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0034.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0034.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0035.py b/githubkit/versions/ghec_v2022_11_28/types/group_0035.py index df04bfa63..cd3357955 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0035.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0035.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0036.py b/githubkit/versions/ghec_v2022_11_28/types/group_0036.py index a1508d084..8d1c6ab24 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0036.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0036.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0037.py b/githubkit/versions/ghec_v2022_11_28/types/group_0037.py index b5297c9c7..eccf2ec1d 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0037.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0037.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0038.py b/githubkit/versions/ghec_v2022_11_28/types/group_0038.py index 14b7bbbef..ab375d8c4 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0038.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0038.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0039.py b/githubkit/versions/ghec_v2022_11_28/types/group_0039.py index 1100e0718..ef2243069 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0039.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0039.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0040.py b/githubkit/versions/ghec_v2022_11_28/types/group_0040.py index b5a5eb5a8..810cf055c 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0040.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0040.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0041.py b/githubkit/versions/ghec_v2022_11_28/types/group_0041.py index d73152d6e..ad24eeb86 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0041.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0041.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0042.py b/githubkit/versions/ghec_v2022_11_28/types/group_0042.py index dfc36c70c..1e0b0bcdc 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0042.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0042.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0043.py b/githubkit/versions/ghec_v2022_11_28/types/group_0043.py index d76c78930..27881a3b9 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0043.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0043.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0044.py b/githubkit/versions/ghec_v2022_11_28/types/group_0044.py index 602b6240f..a0374708a 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0044.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0044.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0045.py b/githubkit/versions/ghec_v2022_11_28/types/group_0045.py index 09d47b439..138320778 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0045.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0045.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0046.py b/githubkit/versions/ghec_v2022_11_28/types/group_0046.py index 168fc907a..a488681a6 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0046.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0046.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0047.py b/githubkit/versions/ghec_v2022_11_28/types/group_0047.py index 3dae28a1d..9ef70e81a 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0047.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0047.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0048.py b/githubkit/versions/ghec_v2022_11_28/types/group_0048.py index cafb506d6..56c7bdc00 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0048.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0048.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0049.py b/githubkit/versions/ghec_v2022_11_28/types/group_0049.py index fb53a5b35..865dfadfb 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0049.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0049.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0050.py b/githubkit/versions/ghec_v2022_11_28/types/group_0050.py index 21b1d34f3..8e2ed9538 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0050.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0050.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0051.py b/githubkit/versions/ghec_v2022_11_28/types/group_0051.py index cc64c94a1..7d5ed77fa 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0051.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0051.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0052.py b/githubkit/versions/ghec_v2022_11_28/types/group_0052.py index 74b003465..b31cc2d0f 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0052.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0052.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0053.py b/githubkit/versions/ghec_v2022_11_28/types/group_0053.py index c2f4645cb..114dcb3ca 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0053.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0053.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0054.py b/githubkit/versions/ghec_v2022_11_28/types/group_0054.py index 72222a7e2..94e387ee3 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0054.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0054.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0055.py b/githubkit/versions/ghec_v2022_11_28/types/group_0055.py index bbcdcf3c9..225b3016f 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0055.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0055.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0056.py b/githubkit/versions/ghec_v2022_11_28/types/group_0056.py index 9617a09fa..cac22c41a 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0056.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0056.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0057.py b/githubkit/versions/ghec_v2022_11_28/types/group_0057.py index 32ba5da84..15a19a09d 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0057.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0057.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0058.py b/githubkit/versions/ghec_v2022_11_28/types/group_0058.py index bde1a0389..b1b68d0be 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0058.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0058.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0059.py b/githubkit/versions/ghec_v2022_11_28/types/group_0059.py index ee9f0d1f5..8a6080a74 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0059.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0059.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0060.py b/githubkit/versions/ghec_v2022_11_28/types/group_0060.py index 513ec5f82..cee3c083a 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0060.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0060.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0061.py b/githubkit/versions/ghec_v2022_11_28/types/group_0061.py index 4a921e33e..c2a6bd413 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0061.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0061.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0062.py b/githubkit/versions/ghec_v2022_11_28/types/group_0062.py index a41d1af99..73e424974 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0062.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0062.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0063.py b/githubkit/versions/ghec_v2022_11_28/types/group_0063.py index 248123c09..8a6dba029 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0063.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0063.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0064.py b/githubkit/versions/ghec_v2022_11_28/types/group_0064.py index 6dcb06052..82b875098 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0064.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0064.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0065.py b/githubkit/versions/ghec_v2022_11_28/types/group_0065.py index 5db90a06b..41c7f4f76 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0065.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0065.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0066.py b/githubkit/versions/ghec_v2022_11_28/types/group_0066.py index 956e0ef92..0ee07669e 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0066.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0066.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0067.py b/githubkit/versions/ghec_v2022_11_28/types/group_0067.py index b2c546a7a..4da3a72b5 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0067.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0067.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0068.py b/githubkit/versions/ghec_v2022_11_28/types/group_0068.py index 9df7de86b..9310e581c 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0068.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0068.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0069.py b/githubkit/versions/ghec_v2022_11_28/types/group_0069.py index fb0757a5e..69bf98302 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0069.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0069.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0070.py b/githubkit/versions/ghec_v2022_11_28/types/group_0070.py index 3286cdb38..8cbd71cbc 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0070.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0070.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0071.py b/githubkit/versions/ghec_v2022_11_28/types/group_0071.py index d8d5bbb58..ffdc9e4da 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0071.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0071.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0072.py b/githubkit/versions/ghec_v2022_11_28/types/group_0072.py index 88b842afb..d66bfc983 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0072.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0072.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0073.py b/githubkit/versions/ghec_v2022_11_28/types/group_0073.py index f65fd978e..a14fdf39c 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0073.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0073.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0074.py b/githubkit/versions/ghec_v2022_11_28/types/group_0074.py index beeb3799f..cbcba07f5 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0074.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0074.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0075.py b/githubkit/versions/ghec_v2022_11_28/types/group_0075.py index a12438084..569e02d77 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0075.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0075.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0076.py b/githubkit/versions/ghec_v2022_11_28/types/group_0076.py index a9bc42315..b98d11a8e 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0076.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0076.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0077.py b/githubkit/versions/ghec_v2022_11_28/types/group_0077.py index 68584d293..41fab7a29 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0077.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0077.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0078.py b/githubkit/versions/ghec_v2022_11_28/types/group_0078.py index be7b43224..25325d850 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0078.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0078.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0079.py b/githubkit/versions/ghec_v2022_11_28/types/group_0079.py index fce471337..8800ffc67 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0079.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0079.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0080.py b/githubkit/versions/ghec_v2022_11_28/types/group_0080.py index 4c0558769..62d0c799d 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0080.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0080.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0081.py b/githubkit/versions/ghec_v2022_11_28/types/group_0081.py index 3e16094c6..7eecb9b27 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0081.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0081.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0082.py b/githubkit/versions/ghec_v2022_11_28/types/group_0082.py index 10914efa8..15df396e9 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0082.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0082.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0083.py b/githubkit/versions/ghec_v2022_11_28/types/group_0083.py index bea51a6a8..dfaea724d 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0083.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0083.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0084.py b/githubkit/versions/ghec_v2022_11_28/types/group_0084.py index 8097f55bb..9c5cf6d77 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0084.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0084.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0085.py b/githubkit/versions/ghec_v2022_11_28/types/group_0085.py index 3b9e52e8c..167bf465c 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0085.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0085.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0086.py b/githubkit/versions/ghec_v2022_11_28/types/group_0086.py index 67ea22109..5751ffaa0 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0086.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0086.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0087.py b/githubkit/versions/ghec_v2022_11_28/types/group_0087.py index 41217ef5e..47e387234 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0087.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0087.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0088.py b/githubkit/versions/ghec_v2022_11_28/types/group_0088.py index 49b41457c..29ee61aee 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0088.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0088.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0089.py b/githubkit/versions/ghec_v2022_11_28/types/group_0089.py index 17e1c896e..ff50a4403 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0089.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0089.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0090.py b/githubkit/versions/ghec_v2022_11_28/types/group_0090.py index 1dc2b4389..83f4b13cf 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0090.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0090.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0091.py b/githubkit/versions/ghec_v2022_11_28/types/group_0091.py index 46b9d0b6b..2756d7c0f 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0091.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0091.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0092.py b/githubkit/versions/ghec_v2022_11_28/types/group_0092.py index 51c5ab70d..bb2c41927 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0092.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0092.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0093.py b/githubkit/versions/ghec_v2022_11_28/types/group_0093.py index 82f29894d..00773ec29 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0093.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0093.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0094.py b/githubkit/versions/ghec_v2022_11_28/types/group_0094.py index d84579b82..b9cb739e1 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0094.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0094.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0095.py b/githubkit/versions/ghec_v2022_11_28/types/group_0095.py index bf0d01af7..fb3981a7a 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0095.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0095.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0096.py b/githubkit/versions/ghec_v2022_11_28/types/group_0096.py index a5f3a997d..1bbb3bad4 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0096.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0096.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0097.py b/githubkit/versions/ghec_v2022_11_28/types/group_0097.py index 08b131025..16337b721 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0097.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0097.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0098.py b/githubkit/versions/ghec_v2022_11_28/types/group_0098.py index 8411651a0..281602086 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0098.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0098.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0099.py b/githubkit/versions/ghec_v2022_11_28/types/group_0099.py index c5a73b3a9..e3c872b4f 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0099.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0099.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0100.py b/githubkit/versions/ghec_v2022_11_28/types/group_0100.py index 9dc215ff2..1613d4046 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0100.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0100.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0101.py b/githubkit/versions/ghec_v2022_11_28/types/group_0101.py index a75869929..396656d86 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0101.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0101.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0102.py b/githubkit/versions/ghec_v2022_11_28/types/group_0102.py index a742be0df..a4c0e06b8 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0102.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0102.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0103.py b/githubkit/versions/ghec_v2022_11_28/types/group_0103.py index c1c31e91d..10d54efb7 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0103.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0103.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0104.py b/githubkit/versions/ghec_v2022_11_28/types/group_0104.py index acc9591b7..663dca6ea 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0104.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0104.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0105.py b/githubkit/versions/ghec_v2022_11_28/types/group_0105.py index fcfb4f55a..0659340f0 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0105.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0105.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0106.py b/githubkit/versions/ghec_v2022_11_28/types/group_0106.py index cc41073e2..0c71e9bd1 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0106.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0106.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0107.py b/githubkit/versions/ghec_v2022_11_28/types/group_0107.py index 6a28bfa47..3d044294e 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0107.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0107.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0108.py b/githubkit/versions/ghec_v2022_11_28/types/group_0108.py index 47799fdfb..44f48f0e8 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0108.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0108.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0109.py b/githubkit/versions/ghec_v2022_11_28/types/group_0109.py index d39f5a794..01e8a5904 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0109.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0109.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0110.py b/githubkit/versions/ghec_v2022_11_28/types/group_0110.py index 2c03cbd80..98fa79e69 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0110.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0110.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0111.py b/githubkit/versions/ghec_v2022_11_28/types/group_0111.py index d2306af59..b680f76fe 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0111.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0111.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0112.py b/githubkit/versions/ghec_v2022_11_28/types/group_0112.py index 6cf85b8e7..d74d4bb7d 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0112.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0112.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0113.py b/githubkit/versions/ghec_v2022_11_28/types/group_0113.py index 71b6a3192..3bcba3460 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0113.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0113.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0114.py b/githubkit/versions/ghec_v2022_11_28/types/group_0114.py index 49ac4f950..af82506c7 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0114.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0114.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0115.py b/githubkit/versions/ghec_v2022_11_28/types/group_0115.py index f4769d515..cac6eb986 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0115.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0115.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0116.py b/githubkit/versions/ghec_v2022_11_28/types/group_0116.py index 2d5b00a78..7a2b21e05 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0116.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0116.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0117.py b/githubkit/versions/ghec_v2022_11_28/types/group_0117.py index 08dd04092..9c7866a74 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0117.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0117.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0118.py b/githubkit/versions/ghec_v2022_11_28/types/group_0118.py index f5d84a174..891e5afab 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0118.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0118.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0119.py b/githubkit/versions/ghec_v2022_11_28/types/group_0119.py index b7d12dfe9..d774c8142 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0119.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0119.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0120.py b/githubkit/versions/ghec_v2022_11_28/types/group_0120.py index dcd5cb91a..66a99b3ab 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0120.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0120.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict @@ -23,7 +22,9 @@ class RepositoryRulesetConditionsRepositoryNameTargetType(TypedDict): Parameters for a repository name condition """ - repository_name: RepositoryRulesetConditionsRepositoryNameTargetPropRepositoryNameType + repository_name: ( + RepositoryRulesetConditionsRepositoryNameTargetPropRepositoryNameType + ) __all__ = ("RepositoryRulesetConditionsRepositoryNameTargetType",) diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0121.py b/githubkit/versions/ghec_v2022_11_28/types/group_0121.py index 89e199b22..97c94cd05 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0121.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0121.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0122.py b/githubkit/versions/ghec_v2022_11_28/types/group_0122.py index 8f153799a..1decc885f 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0122.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0122.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0123.py b/githubkit/versions/ghec_v2022_11_28/types/group_0123.py index 889620af7..ed3567648 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0123.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0123.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0124.py b/githubkit/versions/ghec_v2022_11_28/types/group_0124.py index e1a525c9e..0dafce1ff 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0124.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0124.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict @@ -23,7 +22,9 @@ class RepositoryRulesetConditionsRepositoryPropertyTargetType(TypedDict): Parameters for a repository property condition """ - repository_property: RepositoryRulesetConditionsRepositoryPropertyTargetPropRepositoryPropertyType + repository_property: ( + RepositoryRulesetConditionsRepositoryPropertyTargetPropRepositoryPropertyType + ) __all__ = ("RepositoryRulesetConditionsRepositoryPropertyTargetType",) diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0125.py b/githubkit/versions/ghec_v2022_11_28/types/group_0125.py index c17339eb1..dd7d3ac84 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0125.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0125.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0126.py b/githubkit/versions/ghec_v2022_11_28/types/group_0126.py index d8ca61f3e..84a906e97 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0126.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0126.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired @@ -25,7 +24,9 @@ class OrgRulesetConditionsOneof0Type(TypedDict): """ ref_name: NotRequired[RepositoryRulesetConditionsPropRefNameType] - repository_name: RepositoryRulesetConditionsRepositoryNameTargetPropRepositoryNameType + repository_name: ( + RepositoryRulesetConditionsRepositoryNameTargetPropRepositoryNameType + ) __all__ = ("OrgRulesetConditionsOneof0Type",) diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0127.py b/githubkit/versions/ghec_v2022_11_28/types/group_0127.py index 53aaf29b4..f4957b200 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0127.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0127.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0128.py b/githubkit/versions/ghec_v2022_11_28/types/group_0128.py index f0bf83841..03c2aa32d 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0128.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0128.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired @@ -25,7 +24,9 @@ class OrgRulesetConditionsOneof2Type(TypedDict): """ ref_name: NotRequired[RepositoryRulesetConditionsPropRefNameType] - repository_property: RepositoryRulesetConditionsRepositoryPropertyTargetPropRepositoryPropertyType + repository_property: ( + RepositoryRulesetConditionsRepositoryPropertyTargetPropRepositoryPropertyType + ) __all__ = ("OrgRulesetConditionsOneof2Type",) diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0129.py b/githubkit/versions/ghec_v2022_11_28/types/group_0129.py index b35693753..0d106dee1 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0129.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0129.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0130.py b/githubkit/versions/ghec_v2022_11_28/types/group_0130.py index 2379e64f2..63d6624e6 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0130.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0130.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0131.py b/githubkit/versions/ghec_v2022_11_28/types/group_0131.py index a30c96136..4de519b89 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0131.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0131.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0132.py b/githubkit/versions/ghec_v2022_11_28/types/group_0132.py index a2fe1c3cb..c531884ff 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0132.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0132.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0133.py b/githubkit/versions/ghec_v2022_11_28/types/group_0133.py index e2611c2c8..b35cfbb8b 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0133.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0133.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0134.py b/githubkit/versions/ghec_v2022_11_28/types/group_0134.py index 313179a40..dea611c2b 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0134.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0134.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0135.py b/githubkit/versions/ghec_v2022_11_28/types/group_0135.py index 1cb6dd80f..8ca3ac546 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0135.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0135.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0136.py b/githubkit/versions/ghec_v2022_11_28/types/group_0136.py index dec8d95cd..b2acbf90f 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0136.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0136.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0137.py b/githubkit/versions/ghec_v2022_11_28/types/group_0137.py index 654a72a29..beca63a92 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0137.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0137.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0138.py b/githubkit/versions/ghec_v2022_11_28/types/group_0138.py index ae1f59f5a..0c90b2831 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0138.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0138.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0139.py b/githubkit/versions/ghec_v2022_11_28/types/group_0139.py index 4b9cae4c1..6b70aa178 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0139.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0139.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0140.py b/githubkit/versions/ghec_v2022_11_28/types/group_0140.py index 3a7122a27..097d2b1ad 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0140.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0140.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0141.py b/githubkit/versions/ghec_v2022_11_28/types/group_0141.py index 74c8cc4b4..dccde2f8b 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0141.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0141.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0142.py b/githubkit/versions/ghec_v2022_11_28/types/group_0142.py index fa90745fb..65503cc26 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0142.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0142.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0143.py b/githubkit/versions/ghec_v2022_11_28/types/group_0143.py index d3532130a..8b305b010 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0143.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0143.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0144.py b/githubkit/versions/ghec_v2022_11_28/types/group_0144.py index 9eab546c8..6ca4bc8f3 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0144.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0144.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0145.py b/githubkit/versions/ghec_v2022_11_28/types/group_0145.py index 65595a556..ecc0d144f 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0145.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0145.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0146.py b/githubkit/versions/ghec_v2022_11_28/types/group_0146.py index 6d8dd51d3..6785aebe5 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0146.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0146.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0147.py b/githubkit/versions/ghec_v2022_11_28/types/group_0147.py index 07d18e0bf..6e0c959e8 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0147.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0147.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0148.py b/githubkit/versions/ghec_v2022_11_28/types/group_0148.py index 384330d11..9b6b95d4b 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0148.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0148.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0149.py b/githubkit/versions/ghec_v2022_11_28/types/group_0149.py index b15ab9ab9..30301fe0d 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0149.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0149.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0150.py b/githubkit/versions/ghec_v2022_11_28/types/group_0150.py index 33e2cb54e..fdd63c834 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0150.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0150.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0151.py b/githubkit/versions/ghec_v2022_11_28/types/group_0151.py index 8d6a47216..a3dc145bb 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0151.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0151.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0152.py b/githubkit/versions/ghec_v2022_11_28/types/group_0152.py index c9b218040..bade33426 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0152.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0152.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0153.py b/githubkit/versions/ghec_v2022_11_28/types/group_0153.py index e8b279fcf..6c8d7ddef 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0153.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0153.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0154.py b/githubkit/versions/ghec_v2022_11_28/types/group_0154.py index c968a1add..01706cb92 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0154.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0154.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0155.py b/githubkit/versions/ghec_v2022_11_28/types/group_0155.py index bfc2d8c3d..376a8cbd4 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0155.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0155.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0156.py b/githubkit/versions/ghec_v2022_11_28/types/group_0156.py index dd13c7d29..dc605167a 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0156.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0156.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0157.py b/githubkit/versions/ghec_v2022_11_28/types/group_0157.py index 16a822627..80be9ddb6 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0157.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0157.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0158.py b/githubkit/versions/ghec_v2022_11_28/types/group_0158.py index d3c47f4d6..4fa536b93 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0158.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0158.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0159.py b/githubkit/versions/ghec_v2022_11_28/types/group_0159.py index 9d32a4c14..95c461f08 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0159.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0159.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0160.py b/githubkit/versions/ghec_v2022_11_28/types/group_0160.py index c22dbdf8a..a360c35f7 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0160.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0160.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0161.py b/githubkit/versions/ghec_v2022_11_28/types/group_0161.py index e81a5b27a..3687124e8 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0161.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0161.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0162.py b/githubkit/versions/ghec_v2022_11_28/types/group_0162.py index e22dfee0e..4e77006cd 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0162.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0162.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0163.py b/githubkit/versions/ghec_v2022_11_28/types/group_0163.py index 9d0354a02..201ca0a17 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0163.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0163.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0164.py b/githubkit/versions/ghec_v2022_11_28/types/group_0164.py index c3703cf72..a4bd772e4 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0164.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0164.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0165.py b/githubkit/versions/ghec_v2022_11_28/types/group_0165.py index ec9a85dc6..e092b799e 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0165.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0165.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0166.py b/githubkit/versions/ghec_v2022_11_28/types/group_0166.py index d78bb1f4a..220768fca 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0166.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0166.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0167.py b/githubkit/versions/ghec_v2022_11_28/types/group_0167.py index bd976f02b..d23a9ab67 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0167.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0167.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0168.py b/githubkit/versions/ghec_v2022_11_28/types/group_0168.py index 50f3fe059..7ed43f19c 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0168.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0168.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0169.py b/githubkit/versions/ghec_v2022_11_28/types/group_0169.py index e5bb4751c..7564a62f1 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0169.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0169.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0170.py b/githubkit/versions/ghec_v2022_11_28/types/group_0170.py index e3a7eb7b6..694d03575 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0170.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0170.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0171.py b/githubkit/versions/ghec_v2022_11_28/types/group_0171.py index 30cc34eb9..bfbcef284 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0171.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0171.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0172.py b/githubkit/versions/ghec_v2022_11_28/types/group_0172.py index baac6ffea..1ba8803f8 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0172.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0172.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0173.py b/githubkit/versions/ghec_v2022_11_28/types/group_0173.py index 5b93d3f10..6d51498cc 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0173.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0173.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0174.py b/githubkit/versions/ghec_v2022_11_28/types/group_0174.py index 93448daf3..61cc52d83 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0174.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0174.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0175.py b/githubkit/versions/ghec_v2022_11_28/types/group_0175.py index c109749f4..e8df7b2a9 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0175.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0175.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0176.py b/githubkit/versions/ghec_v2022_11_28/types/group_0176.py index e6005a71e..7d6ae5032 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0176.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0176.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0177.py b/githubkit/versions/ghec_v2022_11_28/types/group_0177.py index 75dee1658..eb13c7e2f 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0177.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0177.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0178.py b/githubkit/versions/ghec_v2022_11_28/types/group_0178.py index c7f440eb2..e80d7d2e7 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0178.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0178.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0179.py b/githubkit/versions/ghec_v2022_11_28/types/group_0179.py index 11e3b9813..d7d171918 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0179.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0179.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0180.py b/githubkit/versions/ghec_v2022_11_28/types/group_0180.py index 707392323..30c5bf1cd 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0180.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0180.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0181.py b/githubkit/versions/ghec_v2022_11_28/types/group_0181.py index a0c391bff..78fc3d071 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0181.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0181.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0182.py b/githubkit/versions/ghec_v2022_11_28/types/group_0182.py index 02c4ab857..805beea3d 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0182.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0182.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0183.py b/githubkit/versions/ghec_v2022_11_28/types/group_0183.py index c5810d8b7..a96ab7d1f 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0183.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0183.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0184.py b/githubkit/versions/ghec_v2022_11_28/types/group_0184.py index fe3dd8458..909bb75c8 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0184.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0184.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0185.py b/githubkit/versions/ghec_v2022_11_28/types/group_0185.py index 8a19c1723..9ed90361d 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0185.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0185.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0186.py b/githubkit/versions/ghec_v2022_11_28/types/group_0186.py index a573e7d7d..d3be2b3ec 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0186.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0186.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0187.py b/githubkit/versions/ghec_v2022_11_28/types/group_0187.py index b1ccafd77..c1dc65752 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0187.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0187.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0188.py b/githubkit/versions/ghec_v2022_11_28/types/group_0188.py index 146c78a75..6e05dc2ea 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0188.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0188.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0189.py b/githubkit/versions/ghec_v2022_11_28/types/group_0189.py index 71197b4b0..7a79353a1 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0189.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0189.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0190.py b/githubkit/versions/ghec_v2022_11_28/types/group_0190.py index c434cd846..10dea8dbf 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0190.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0190.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0191.py b/githubkit/versions/ghec_v2022_11_28/types/group_0191.py index f2e8371c8..8b6890539 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0191.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0191.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0192.py b/githubkit/versions/ghec_v2022_11_28/types/group_0192.py index c4708f772..4ef048314 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0192.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0192.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0193.py b/githubkit/versions/ghec_v2022_11_28/types/group_0193.py index 873c1db9d..ce5a08783 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0193.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0193.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0194.py b/githubkit/versions/ghec_v2022_11_28/types/group_0194.py index c1bed2684..8ff9c18d0 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0194.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0194.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0195.py b/githubkit/versions/ghec_v2022_11_28/types/group_0195.py index 73a2bacd5..0c14fcfe8 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0195.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0195.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0196.py b/githubkit/versions/ghec_v2022_11_28/types/group_0196.py index df23e3126..044571d5f 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0196.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0196.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0197.py b/githubkit/versions/ghec_v2022_11_28/types/group_0197.py index 39318c810..2f23573c9 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0197.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0197.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0198.py b/githubkit/versions/ghec_v2022_11_28/types/group_0198.py index 3b7b5ca27..6b7e4ad5c 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0198.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0198.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0199.py b/githubkit/versions/ghec_v2022_11_28/types/group_0199.py index 5c53fb0e7..7f8f1aebd 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0199.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0199.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0200.py b/githubkit/versions/ghec_v2022_11_28/types/group_0200.py index 60312ea68..ce7374427 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0200.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0200.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0201.py b/githubkit/versions/ghec_v2022_11_28/types/group_0201.py index 8ee0f766d..e04e9404c 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0201.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0201.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0202.py b/githubkit/versions/ghec_v2022_11_28/types/group_0202.py index dd98631eb..198992720 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0202.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0202.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0203.py b/githubkit/versions/ghec_v2022_11_28/types/group_0203.py index ba77c85c8..bd065658e 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0203.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0203.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0204.py b/githubkit/versions/ghec_v2022_11_28/types/group_0204.py index 8a366f711..7cb25e0f5 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0204.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0204.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0205.py b/githubkit/versions/ghec_v2022_11_28/types/group_0205.py index 4f00b0878..13af83276 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0205.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0205.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0206.py b/githubkit/versions/ghec_v2022_11_28/types/group_0206.py index 75e2b66eb..2e64e8d70 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0206.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0206.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0207.py b/githubkit/versions/ghec_v2022_11_28/types/group_0207.py index c7f111078..a26a98c3d 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0207.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0207.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0208.py b/githubkit/versions/ghec_v2022_11_28/types/group_0208.py index 42ab60937..14b898285 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0208.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0208.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0209.py b/githubkit/versions/ghec_v2022_11_28/types/group_0209.py index ac7ffcead..82fbb570d 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0209.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0209.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0210.py b/githubkit/versions/ghec_v2022_11_28/types/group_0210.py index 4d18eeb82..563078b4b 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0210.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0210.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0211.py b/githubkit/versions/ghec_v2022_11_28/types/group_0211.py index 060c47544..55bec230c 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0211.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0211.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0212.py b/githubkit/versions/ghec_v2022_11_28/types/group_0212.py index 418f9adec..652b25d2f 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0212.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0212.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0213.py b/githubkit/versions/ghec_v2022_11_28/types/group_0213.py index d7e3d7ed8..8c7b25b6e 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0213.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0213.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0214.py b/githubkit/versions/ghec_v2022_11_28/types/group_0214.py index 475aca7fd..c8d6d757b 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0214.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0214.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0215.py b/githubkit/versions/ghec_v2022_11_28/types/group_0215.py index 7583a3915..a217f8af1 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0215.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0215.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0216.py b/githubkit/versions/ghec_v2022_11_28/types/group_0216.py index b538ecf5d..0cadd6e42 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0216.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0216.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0217.py b/githubkit/versions/ghec_v2022_11_28/types/group_0217.py index e64b16ec0..cdbbfb7fa 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0217.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0217.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0218.py b/githubkit/versions/ghec_v2022_11_28/types/group_0218.py index c9c4ccf6b..83fe48476 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0218.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0218.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0219.py b/githubkit/versions/ghec_v2022_11_28/types/group_0219.py index d5189575a..1df4620a0 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0219.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0219.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0220.py b/githubkit/versions/ghec_v2022_11_28/types/group_0220.py index e230b9619..995d8ab46 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0220.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0220.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0221.py b/githubkit/versions/ghec_v2022_11_28/types/group_0221.py index 40329fc77..218ccba47 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0221.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0221.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0222.py b/githubkit/versions/ghec_v2022_11_28/types/group_0222.py index f5bf8d9fd..6e2d05d46 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0222.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0222.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0223.py b/githubkit/versions/ghec_v2022_11_28/types/group_0223.py index dd9bbae02..e1c93e03b 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0223.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0223.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0224.py b/githubkit/versions/ghec_v2022_11_28/types/group_0224.py index c1b7678ad..a023b05ec 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0224.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0224.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0225.py b/githubkit/versions/ghec_v2022_11_28/types/group_0225.py index 542b8639d..896a0e9a1 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0225.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0225.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0226.py b/githubkit/versions/ghec_v2022_11_28/types/group_0226.py index 22e849645..13f3739bb 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0226.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0226.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0227.py b/githubkit/versions/ghec_v2022_11_28/types/group_0227.py index bd4282d35..5ab5687fb 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0227.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0227.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0228.py b/githubkit/versions/ghec_v2022_11_28/types/group_0228.py index fd2af88c8..064aa0ae7 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0228.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0228.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0229.py b/githubkit/versions/ghec_v2022_11_28/types/group_0229.py index e45082f09..eb2d68457 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0229.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0229.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0230.py b/githubkit/versions/ghec_v2022_11_28/types/group_0230.py index c85f9fb15..8749156bb 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0230.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0230.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0231.py b/githubkit/versions/ghec_v2022_11_28/types/group_0231.py index a5a0ab93c..e11b7c39f 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0231.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0231.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0232.py b/githubkit/versions/ghec_v2022_11_28/types/group_0232.py index 736312857..251ce5afd 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0232.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0232.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0233.py b/githubkit/versions/ghec_v2022_11_28/types/group_0233.py index 25a6a4eed..20a377803 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0233.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0233.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0234.py b/githubkit/versions/ghec_v2022_11_28/types/group_0234.py index 0ed7ece27..dc094331f 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0234.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0234.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0235.py b/githubkit/versions/ghec_v2022_11_28/types/group_0235.py index 3ac5b8e32..22d6914e4 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0235.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0235.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0236.py b/githubkit/versions/ghec_v2022_11_28/types/group_0236.py index 499c91781..0506b42c0 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0236.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0236.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0237.py b/githubkit/versions/ghec_v2022_11_28/types/group_0237.py index c9de1f8fc..18ab3b111 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0237.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0237.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0238.py b/githubkit/versions/ghec_v2022_11_28/types/group_0238.py index fe99f4684..ee3b791db 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0238.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0238.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0239.py b/githubkit/versions/ghec_v2022_11_28/types/group_0239.py index f9c2a9302..2df578d2e 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0239.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0239.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0240.py b/githubkit/versions/ghec_v2022_11_28/types/group_0240.py index 3b42d7195..8a5125ca7 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0240.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0240.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0241.py b/githubkit/versions/ghec_v2022_11_28/types/group_0241.py index efb1d2d9c..d8f2d90e7 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0241.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0241.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0242.py b/githubkit/versions/ghec_v2022_11_28/types/group_0242.py index 810ea1c4f..67d3310f1 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0242.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0242.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0243.py b/githubkit/versions/ghec_v2022_11_28/types/group_0243.py index b7ee9cf99..e7561bbbb 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0243.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0243.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0244.py b/githubkit/versions/ghec_v2022_11_28/types/group_0244.py index e9005d887..c5e78ea87 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0244.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0244.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0245.py b/githubkit/versions/ghec_v2022_11_28/types/group_0245.py index 081f4038b..229531a95 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0245.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0245.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0246.py b/githubkit/versions/ghec_v2022_11_28/types/group_0246.py index d4e40deba..1a34a23a4 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0246.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0246.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0247.py b/githubkit/versions/ghec_v2022_11_28/types/group_0247.py index 5ce0fd95e..2beeefa41 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0247.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0247.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0248.py b/githubkit/versions/ghec_v2022_11_28/types/group_0248.py index 3034e1725..e831de330 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0248.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0248.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0249.py b/githubkit/versions/ghec_v2022_11_28/types/group_0249.py index 5c72064df..30bcd6570 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0249.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0249.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0250.py b/githubkit/versions/ghec_v2022_11_28/types/group_0250.py index 63279e1fc..a614bc6f1 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0250.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0250.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0251.py b/githubkit/versions/ghec_v2022_11_28/types/group_0251.py index 340410e9f..0e361b569 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0251.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0251.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0252.py b/githubkit/versions/ghec_v2022_11_28/types/group_0252.py index aef568c61..8fa86f4ba 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0252.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0252.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0253.py b/githubkit/versions/ghec_v2022_11_28/types/group_0253.py index a808dbe40..2b9241c94 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0253.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0253.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0254.py b/githubkit/versions/ghec_v2022_11_28/types/group_0254.py index a5bc7d139..8ab2bf6a1 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0254.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0254.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0255.py b/githubkit/versions/ghec_v2022_11_28/types/group_0255.py index 8fdedbf89..7d319b106 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0255.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0255.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0256.py b/githubkit/versions/ghec_v2022_11_28/types/group_0256.py index c3bd28b72..e7c8a2ec1 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0256.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0256.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0257.py b/githubkit/versions/ghec_v2022_11_28/types/group_0257.py index 343fc377d..685ed9914 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0257.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0257.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0258.py b/githubkit/versions/ghec_v2022_11_28/types/group_0258.py index 778fa8bbb..784015c57 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0258.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0258.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0259.py b/githubkit/versions/ghec_v2022_11_28/types/group_0259.py index 9f19fbef9..55685e749 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0259.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0259.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0260.py b/githubkit/versions/ghec_v2022_11_28/types/group_0260.py index 793340f82..dcd91ed5c 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0260.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0260.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0261.py b/githubkit/versions/ghec_v2022_11_28/types/group_0261.py index 55d1ba6b9..deb8a4c9a 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0261.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0261.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0262.py b/githubkit/versions/ghec_v2022_11_28/types/group_0262.py index 5f51a940e..1a6e42c81 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0262.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0262.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0263.py b/githubkit/versions/ghec_v2022_11_28/types/group_0263.py index cbfefd591..bf554bd0c 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0263.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0263.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0264.py b/githubkit/versions/ghec_v2022_11_28/types/group_0264.py index bb09c2b2a..e71059c34 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0264.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0264.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0265.py b/githubkit/versions/ghec_v2022_11_28/types/group_0265.py index 03964d981..f0e112d8e 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0265.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0265.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0266.py b/githubkit/versions/ghec_v2022_11_28/types/group_0266.py index 468ec48b8..808d10108 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0266.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0266.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0267.py b/githubkit/versions/ghec_v2022_11_28/types/group_0267.py index 75ed198b9..2763aab9e 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0267.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0267.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0268.py b/githubkit/versions/ghec_v2022_11_28/types/group_0268.py index 58c56bdc7..d95465467 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0268.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0268.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0269.py b/githubkit/versions/ghec_v2022_11_28/types/group_0269.py index 527e79ae8..c88910d89 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0269.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0269.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0270.py b/githubkit/versions/ghec_v2022_11_28/types/group_0270.py index 2a85ded9c..a760ba55a 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0270.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0270.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0271.py b/githubkit/versions/ghec_v2022_11_28/types/group_0271.py index 8d31918ab..ae1425148 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0271.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0271.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0272.py b/githubkit/versions/ghec_v2022_11_28/types/group_0272.py index 272913816..19245c3df 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0272.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0272.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0273.py b/githubkit/versions/ghec_v2022_11_28/types/group_0273.py index 78f9e6d45..25982f813 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0273.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0273.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0274.py b/githubkit/versions/ghec_v2022_11_28/types/group_0274.py index 1a7602f8d..0299cec7c 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0274.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0274.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0275.py b/githubkit/versions/ghec_v2022_11_28/types/group_0275.py index 385bc4ab3..869e4d56f 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0275.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0275.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0276.py b/githubkit/versions/ghec_v2022_11_28/types/group_0276.py index 0a42080eb..bcd173794 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0276.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0276.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0277.py b/githubkit/versions/ghec_v2022_11_28/types/group_0277.py index 48761899a..28cebcf66 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0277.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0277.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0278.py b/githubkit/versions/ghec_v2022_11_28/types/group_0278.py index ba0fa7f64..3d6fab4fb 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0278.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0278.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0279.py b/githubkit/versions/ghec_v2022_11_28/types/group_0279.py index fc2e7ba41..0b1733f9c 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0279.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0279.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0280.py b/githubkit/versions/ghec_v2022_11_28/types/group_0280.py index 9d5c36e2e..8dacfe6fb 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0280.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0280.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0281.py b/githubkit/versions/ghec_v2022_11_28/types/group_0281.py index c0ae8da45..e2116a23a 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0281.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0281.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0282.py b/githubkit/versions/ghec_v2022_11_28/types/group_0282.py index f1205d8d4..a0c800413 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0282.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0282.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0283.py b/githubkit/versions/ghec_v2022_11_28/types/group_0283.py index a80d7de50..e141c8229 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0283.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0283.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0284.py b/githubkit/versions/ghec_v2022_11_28/types/group_0284.py index 4f99aa509..f589264d3 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0284.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0284.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0285.py b/githubkit/versions/ghec_v2022_11_28/types/group_0285.py index 5ab100299..dbd49d911 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0285.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0285.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0286.py b/githubkit/versions/ghec_v2022_11_28/types/group_0286.py index 15634cf9f..2d3479f39 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0286.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0286.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0287.py b/githubkit/versions/ghec_v2022_11_28/types/group_0287.py index 75dc7d942..a4f0cccb1 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0287.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0287.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0288.py b/githubkit/versions/ghec_v2022_11_28/types/group_0288.py index 3423a7177..b11ea9ee0 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0288.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0288.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0289.py b/githubkit/versions/ghec_v2022_11_28/types/group_0289.py index a07b0e068..ef235b06c 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0289.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0289.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0290.py b/githubkit/versions/ghec_v2022_11_28/types/group_0290.py index d1501abac..73869e791 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0290.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0290.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0291.py b/githubkit/versions/ghec_v2022_11_28/types/group_0291.py index e59064bf4..3daad5d4b 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0291.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0291.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0292.py b/githubkit/versions/ghec_v2022_11_28/types/group_0292.py index 2edaf25f2..503b39935 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0292.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0292.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0293.py b/githubkit/versions/ghec_v2022_11_28/types/group_0293.py index 4711726f4..87719cafc 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0293.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0293.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0294.py b/githubkit/versions/ghec_v2022_11_28/types/group_0294.py index ea888c293..25caab0cc 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0294.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0294.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0295.py b/githubkit/versions/ghec_v2022_11_28/types/group_0295.py index 28f3ff895..4463b3b41 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0295.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0295.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0296.py b/githubkit/versions/ghec_v2022_11_28/types/group_0296.py index c1a21a86e..bac8632dc 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0296.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0296.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0297.py b/githubkit/versions/ghec_v2022_11_28/types/group_0297.py index a9333da5b..6abbbf670 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0297.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0297.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0298.py b/githubkit/versions/ghec_v2022_11_28/types/group_0298.py index a1bb65342..270956693 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0298.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0298.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0299.py b/githubkit/versions/ghec_v2022_11_28/types/group_0299.py index 20c2172ce..3e17052fa 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0299.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0299.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0300.py b/githubkit/versions/ghec_v2022_11_28/types/group_0300.py index 8a9ad90e2..b29269706 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0300.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0300.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0301.py b/githubkit/versions/ghec_v2022_11_28/types/group_0301.py index c4795276b..9b2e5b242 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0301.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0301.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0302.py b/githubkit/versions/ghec_v2022_11_28/types/group_0302.py index 17a3b743f..a626094ab 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0302.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0302.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import date, datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0303.py b/githubkit/versions/ghec_v2022_11_28/types/group_0303.py index 7a074253f..9fb53f3a2 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0303.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0303.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0304.py b/githubkit/versions/ghec_v2022_11_28/types/group_0304.py index dcafa114d..d7001e4a1 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0304.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0304.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0305.py b/githubkit/versions/ghec_v2022_11_28/types/group_0305.py index 0a6de5728..cfd439e5b 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0305.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0305.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0306.py b/githubkit/versions/ghec_v2022_11_28/types/group_0306.py index 3e2f31675..6420e8ce7 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0306.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0306.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0307.py b/githubkit/versions/ghec_v2022_11_28/types/group_0307.py index 43b2c983b..ebcf6ff9c 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0307.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0307.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0308.py b/githubkit/versions/ghec_v2022_11_28/types/group_0308.py index 1922a7d11..88c65ae72 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0308.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0308.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0309.py b/githubkit/versions/ghec_v2022_11_28/types/group_0309.py index 4e99b49fc..77cd3f3eb 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0309.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0309.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0310.py b/githubkit/versions/ghec_v2022_11_28/types/group_0310.py index e67d62c7b..b43745a62 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0310.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0310.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0311.py b/githubkit/versions/ghec_v2022_11_28/types/group_0311.py index ab101a2dd..3203d8727 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0311.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0311.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0312.py b/githubkit/versions/ghec_v2022_11_28/types/group_0312.py index d3fc21017..d0f370413 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0312.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0312.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0313.py b/githubkit/versions/ghec_v2022_11_28/types/group_0313.py index 41637c850..211278b38 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0313.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0313.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0314.py b/githubkit/versions/ghec_v2022_11_28/types/group_0314.py index 6e9cd7b03..8cf92ba27 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0314.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0314.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0315.py b/githubkit/versions/ghec_v2022_11_28/types/group_0315.py index 31cb3def0..1c6f49309 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0315.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0315.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0316.py b/githubkit/versions/ghec_v2022_11_28/types/group_0316.py index 35074470b..74d387b89 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0316.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0316.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0317.py b/githubkit/versions/ghec_v2022_11_28/types/group_0317.py index f8dd9737c..447e7665a 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0317.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0317.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0318.py b/githubkit/versions/ghec_v2022_11_28/types/group_0318.py index 122c065df..763c294c8 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0318.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0318.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0319.py b/githubkit/versions/ghec_v2022_11_28/types/group_0319.py index d2f7fd22c..9cfd08357 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0319.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0319.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0320.py b/githubkit/versions/ghec_v2022_11_28/types/group_0320.py index 1e2c3ec84..8cbfbc707 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0320.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0320.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0321.py b/githubkit/versions/ghec_v2022_11_28/types/group_0321.py index bbf2dd1d9..7624c5eac 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0321.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0321.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0322.py b/githubkit/versions/ghec_v2022_11_28/types/group_0322.py index a26fcc6d3..ab76a76e1 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0322.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0322.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0323.py b/githubkit/versions/ghec_v2022_11_28/types/group_0323.py index b207554b5..7c3eba567 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0323.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0323.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0324.py b/githubkit/versions/ghec_v2022_11_28/types/group_0324.py index 6a5739bf6..6d0ae974e 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0324.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0324.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0325.py b/githubkit/versions/ghec_v2022_11_28/types/group_0325.py index 2c9487a1c..6c9a7937b 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0325.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0325.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0326.py b/githubkit/versions/ghec_v2022_11_28/types/group_0326.py index 6207bafef..a719d98b4 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0326.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0326.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0327.py b/githubkit/versions/ghec_v2022_11_28/types/group_0327.py index fd8688a46..f17319898 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0327.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0327.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0328.py b/githubkit/versions/ghec_v2022_11_28/types/group_0328.py index 6c4ed0216..7780664da 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0328.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0328.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0329.py b/githubkit/versions/ghec_v2022_11_28/types/group_0329.py index ce7c7a229..b5d4e2c1b 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0329.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0329.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0330.py b/githubkit/versions/ghec_v2022_11_28/types/group_0330.py index 39fee54aa..b4700d8d9 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0330.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0330.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0331.py b/githubkit/versions/ghec_v2022_11_28/types/group_0331.py index 0990701bd..749cb67cc 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0331.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0331.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0332.py b/githubkit/versions/ghec_v2022_11_28/types/group_0332.py index f63cbc025..ffd3c4d18 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0332.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0332.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0333.py b/githubkit/versions/ghec_v2022_11_28/types/group_0333.py index ab2ab9add..60bf280af 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0333.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0333.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0334.py b/githubkit/versions/ghec_v2022_11_28/types/group_0334.py index e8a8794c8..2035146de 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0334.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0334.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0335.py b/githubkit/versions/ghec_v2022_11_28/types/group_0335.py index 4542dcbb6..8705667b6 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0335.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0335.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0336.py b/githubkit/versions/ghec_v2022_11_28/types/group_0336.py index c0f8bb53d..77b865bed 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0336.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0336.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0337.py b/githubkit/versions/ghec_v2022_11_28/types/group_0337.py index 045236583..b6471d952 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0337.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0337.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0338.py b/githubkit/versions/ghec_v2022_11_28/types/group_0338.py index ce7140bda..65483031c 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0338.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0338.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0339.py b/githubkit/versions/ghec_v2022_11_28/types/group_0339.py index b7a54990d..114417d81 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0339.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0339.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0340.py b/githubkit/versions/ghec_v2022_11_28/types/group_0340.py index 82e99de89..3e277fb86 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0340.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0340.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0341.py b/githubkit/versions/ghec_v2022_11_28/types/group_0341.py index 8e9ead218..7d81a1637 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0341.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0341.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0342.py b/githubkit/versions/ghec_v2022_11_28/types/group_0342.py index 48a3bd81d..3b359fe67 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0342.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0342.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0343.py b/githubkit/versions/ghec_v2022_11_28/types/group_0343.py index 6f194d8c6..14086fd36 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0343.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0343.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0344.py b/githubkit/versions/ghec_v2022_11_28/types/group_0344.py index 2ece786df..905ae039a 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0344.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0344.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0345.py b/githubkit/versions/ghec_v2022_11_28/types/group_0345.py index 72bdca3b7..0099f28ce 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0345.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0345.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0346.py b/githubkit/versions/ghec_v2022_11_28/types/group_0346.py index e08324022..7a59979c3 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0346.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0346.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0347.py b/githubkit/versions/ghec_v2022_11_28/types/group_0347.py index 1c8b0df25..d07e7c979 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0347.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0347.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0348.py b/githubkit/versions/ghec_v2022_11_28/types/group_0348.py index 92902b756..c62332d11 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0348.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0348.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0349.py b/githubkit/versions/ghec_v2022_11_28/types/group_0349.py index ef6b88eb3..2412270d8 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0349.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0349.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0350.py b/githubkit/versions/ghec_v2022_11_28/types/group_0350.py index 0a4a8b725..d5ba1ea27 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0350.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0350.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0351.py b/githubkit/versions/ghec_v2022_11_28/types/group_0351.py index 322fa4a1c..8ae9ebc92 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0351.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0351.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0352.py b/githubkit/versions/ghec_v2022_11_28/types/group_0352.py index d7d8b97bb..d7d63281a 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0352.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0352.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0353.py b/githubkit/versions/ghec_v2022_11_28/types/group_0353.py index 577aa4e36..f8c8ac82d 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0353.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0353.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0354.py b/githubkit/versions/ghec_v2022_11_28/types/group_0354.py index e2303a8c3..7c5fb6279 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0354.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0354.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0355.py b/githubkit/versions/ghec_v2022_11_28/types/group_0355.py index a62a0f4d5..c0d659e2b 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0355.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0355.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0356.py b/githubkit/versions/ghec_v2022_11_28/types/group_0356.py index e75eef0ea..d4a3f647d 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0356.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0356.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0357.py b/githubkit/versions/ghec_v2022_11_28/types/group_0357.py index 1f58bd57a..1e0c6ffb3 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0357.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0357.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0358.py b/githubkit/versions/ghec_v2022_11_28/types/group_0358.py index 7f856d61c..3ca1950ab 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0358.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0358.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0359.py b/githubkit/versions/ghec_v2022_11_28/types/group_0359.py index c1346b48c..11087255d 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0359.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0359.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0360.py b/githubkit/versions/ghec_v2022_11_28/types/group_0360.py index b123e047f..71e1e834b 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0360.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0360.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0361.py b/githubkit/versions/ghec_v2022_11_28/types/group_0361.py index 6b4494b93..cf6951dd8 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0361.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0361.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0362.py b/githubkit/versions/ghec_v2022_11_28/types/group_0362.py index a6bf9a2a2..5992c8b97 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0362.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0362.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0363.py b/githubkit/versions/ghec_v2022_11_28/types/group_0363.py index ba1b54765..7c6724383 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0363.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0363.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0364.py b/githubkit/versions/ghec_v2022_11_28/types/group_0364.py index 2c3387ba5..73f3a9bb0 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0364.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0364.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0365.py b/githubkit/versions/ghec_v2022_11_28/types/group_0365.py index 84fec3b2f..2e8663f62 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0365.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0365.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0366.py b/githubkit/versions/ghec_v2022_11_28/types/group_0366.py index 606c8f752..39d621d0a 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0366.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0366.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0367.py b/githubkit/versions/ghec_v2022_11_28/types/group_0367.py index 4083ffd44..ca6514606 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0367.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0367.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0368.py b/githubkit/versions/ghec_v2022_11_28/types/group_0368.py index 188fc9833..1ea99ae28 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0368.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0368.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0369.py b/githubkit/versions/ghec_v2022_11_28/types/group_0369.py index 7358fc32a..daaabf2d4 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0369.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0369.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0370.py b/githubkit/versions/ghec_v2022_11_28/types/group_0370.py index 8fd1603ce..4ed82f50d 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0370.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0370.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0371.py b/githubkit/versions/ghec_v2022_11_28/types/group_0371.py index 30109976f..4b1b464d6 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0371.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0371.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0372.py b/githubkit/versions/ghec_v2022_11_28/types/group_0372.py index edceaa680..95ffabbe6 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0372.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0372.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0373.py b/githubkit/versions/ghec_v2022_11_28/types/group_0373.py index 5a59eb60b..847b71801 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0373.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0373.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0374.py b/githubkit/versions/ghec_v2022_11_28/types/group_0374.py index e5e5b38b7..85c9bda21 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0374.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0374.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0375.py b/githubkit/versions/ghec_v2022_11_28/types/group_0375.py index 01aec3075..5d336f185 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0375.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0375.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0376.py b/githubkit/versions/ghec_v2022_11_28/types/group_0376.py index b1715135d..5d93abb82 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0376.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0376.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0377.py b/githubkit/versions/ghec_v2022_11_28/types/group_0377.py index d1cff0d1d..f9af52b77 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0377.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0377.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0378.py b/githubkit/versions/ghec_v2022_11_28/types/group_0378.py index adf960bf8..6be52538b 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0378.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0378.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0379.py b/githubkit/versions/ghec_v2022_11_28/types/group_0379.py index 232af1a4d..a57fc4101 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0379.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0379.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0380.py b/githubkit/versions/ghec_v2022_11_28/types/group_0380.py index ae85f060e..4374b684d 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0380.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0380.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0381.py b/githubkit/versions/ghec_v2022_11_28/types/group_0381.py index fb5c94e94..767832678 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0381.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0381.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0382.py b/githubkit/versions/ghec_v2022_11_28/types/group_0382.py index 8f3ea5a5a..df0802f2e 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0382.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0382.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0383.py b/githubkit/versions/ghec_v2022_11_28/types/group_0383.py index 852cfa375..6c95fc7a9 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0383.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0383.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0384.py b/githubkit/versions/ghec_v2022_11_28/types/group_0384.py index 01ad1c974..815d5bd2e 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0384.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0384.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0385.py b/githubkit/versions/ghec_v2022_11_28/types/group_0385.py index 922c7ecd2..f892fc0d3 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0385.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0385.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0386.py b/githubkit/versions/ghec_v2022_11_28/types/group_0386.py index ee7f9f6c3..a3c3f348b 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0386.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0386.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0387.py b/githubkit/versions/ghec_v2022_11_28/types/group_0387.py index 5e1de4cf5..a90acd5c0 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0387.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0387.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0388.py b/githubkit/versions/ghec_v2022_11_28/types/group_0388.py index c13c201f5..408258a5a 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0388.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0388.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0389.py b/githubkit/versions/ghec_v2022_11_28/types/group_0389.py index eafb7dc9e..04b787e6a 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0389.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0389.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0390.py b/githubkit/versions/ghec_v2022_11_28/types/group_0390.py index edfacb98a..27605ec83 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0390.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0390.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0391.py b/githubkit/versions/ghec_v2022_11_28/types/group_0391.py index 21f97cc25..6a6fdd608 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0391.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0391.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0392.py b/githubkit/versions/ghec_v2022_11_28/types/group_0392.py index 7d2fe9341..b52264ecb 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0392.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0392.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0393.py b/githubkit/versions/ghec_v2022_11_28/types/group_0393.py index 9bd68f54f..776d76655 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0393.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0393.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0394.py b/githubkit/versions/ghec_v2022_11_28/types/group_0394.py index b7491c379..5484de1f2 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0394.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0394.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0395.py b/githubkit/versions/ghec_v2022_11_28/types/group_0395.py index 2019787ca..72d9f36cf 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0395.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0395.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0396.py b/githubkit/versions/ghec_v2022_11_28/types/group_0396.py index 409874165..639faef23 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0396.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0396.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0397.py b/githubkit/versions/ghec_v2022_11_28/types/group_0397.py index d6fcbf3be..c6ec63734 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0397.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0397.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0398.py b/githubkit/versions/ghec_v2022_11_28/types/group_0398.py index 3478c6f3f..e11faa339 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0398.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0398.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0399.py b/githubkit/versions/ghec_v2022_11_28/types/group_0399.py index 9ac59c3a8..9dc401c4d 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0399.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0399.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0400.py b/githubkit/versions/ghec_v2022_11_28/types/group_0400.py index fbb886ecf..d5d8acb4c 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0400.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0400.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0401.py b/githubkit/versions/ghec_v2022_11_28/types/group_0401.py index c2dd8b7a8..1c4516db1 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0401.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0401.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0402.py b/githubkit/versions/ghec_v2022_11_28/types/group_0402.py index 0dac6842f..0fa07a87c 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0402.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0402.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0403.py b/githubkit/versions/ghec_v2022_11_28/types/group_0403.py index 6328e97ac..91588a763 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0403.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0403.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0404.py b/githubkit/versions/ghec_v2022_11_28/types/group_0404.py index 45374f67a..ca3009859 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0404.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0404.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0405.py b/githubkit/versions/ghec_v2022_11_28/types/group_0405.py index bda494206..2c01797de 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0405.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0405.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0406.py b/githubkit/versions/ghec_v2022_11_28/types/group_0406.py index 967ba7a87..e82661c5c 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0406.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0406.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0407.py b/githubkit/versions/ghec_v2022_11_28/types/group_0407.py index 764f1b7f1..d8d89afc9 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0407.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0407.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0408.py b/githubkit/versions/ghec_v2022_11_28/types/group_0408.py index 5e50d73e6..e72c36243 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0408.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0408.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0409.py b/githubkit/versions/ghec_v2022_11_28/types/group_0409.py index 89023ce14..831afd105 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0409.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0409.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0410.py b/githubkit/versions/ghec_v2022_11_28/types/group_0410.py index f85b94f69..b97c58bd0 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0410.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0410.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0411.py b/githubkit/versions/ghec_v2022_11_28/types/group_0411.py index a4028ac3b..090ccf388 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0411.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0411.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0412.py b/githubkit/versions/ghec_v2022_11_28/types/group_0412.py index 4c55c3a8b..5537caa0a 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0412.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0412.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0413.py b/githubkit/versions/ghec_v2022_11_28/types/group_0413.py index 41cdd6ae1..0d80e2c39 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0413.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0413.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0414.py b/githubkit/versions/ghec_v2022_11_28/types/group_0414.py index 9f0ba4b31..3c9f364b6 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0414.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0414.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0415.py b/githubkit/versions/ghec_v2022_11_28/types/group_0415.py index 258d6630c..ef6a77599 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0415.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0415.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0416.py b/githubkit/versions/ghec_v2022_11_28/types/group_0416.py index e516fc170..1d0ce137c 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0416.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0416.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0417.py b/githubkit/versions/ghec_v2022_11_28/types/group_0417.py index 9c93c08c1..1eb9f2f0a 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0417.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0417.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0418.py b/githubkit/versions/ghec_v2022_11_28/types/group_0418.py index 647cc7af0..40aa69118 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0418.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0418.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0419.py b/githubkit/versions/ghec_v2022_11_28/types/group_0419.py index 165a79382..5533cbef5 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0419.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0419.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0420.py b/githubkit/versions/ghec_v2022_11_28/types/group_0420.py index c121c0420..6e41b13f0 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0420.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0420.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0421.py b/githubkit/versions/ghec_v2022_11_28/types/group_0421.py index fd34ecf2c..af0863a08 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0421.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0421.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0422.py b/githubkit/versions/ghec_v2022_11_28/types/group_0422.py index a07850540..510d4151e 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0422.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0422.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0423.py b/githubkit/versions/ghec_v2022_11_28/types/group_0423.py index df1dc8bbc..0ec91d393 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0423.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0423.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0424.py b/githubkit/versions/ghec_v2022_11_28/types/group_0424.py index 4e4d24bde..eb72f4a2a 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0424.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0424.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0425.py b/githubkit/versions/ghec_v2022_11_28/types/group_0425.py index 48dfe526c..ef29d62a8 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0425.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0425.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0426.py b/githubkit/versions/ghec_v2022_11_28/types/group_0426.py index bf935490e..ec4f405eb 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0426.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0426.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0427.py b/githubkit/versions/ghec_v2022_11_28/types/group_0427.py index a80977f0d..2431de995 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0427.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0427.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0428.py b/githubkit/versions/ghec_v2022_11_28/types/group_0428.py index 2a4ba64eb..69f38fa4d 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0428.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0428.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0429.py b/githubkit/versions/ghec_v2022_11_28/types/group_0429.py index be0fd899a..41152446c 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0429.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0429.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0430.py b/githubkit/versions/ghec_v2022_11_28/types/group_0430.py index 6988bf171..86fc29133 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0430.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0430.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0431.py b/githubkit/versions/ghec_v2022_11_28/types/group_0431.py index f071176b3..11eb1f9e1 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0431.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0431.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0432.py b/githubkit/versions/ghec_v2022_11_28/types/group_0432.py index a807e3f8f..ee2d61357 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0432.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0432.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0433.py b/githubkit/versions/ghec_v2022_11_28/types/group_0433.py index d31c9104b..388fa68e1 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0433.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0433.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0434.py b/githubkit/versions/ghec_v2022_11_28/types/group_0434.py index dc068ecc2..0b11671e5 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0434.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0434.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0435.py b/githubkit/versions/ghec_v2022_11_28/types/group_0435.py index c75744a9b..7f69dd787 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0435.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0435.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0436.py b/githubkit/versions/ghec_v2022_11_28/types/group_0436.py index fb6a2aa88..3f48a4c05 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0436.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0436.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0437.py b/githubkit/versions/ghec_v2022_11_28/types/group_0437.py index d72a7cf69..bea060fbf 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0437.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0437.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0438.py b/githubkit/versions/ghec_v2022_11_28/types/group_0438.py index 61c00603f..b2a484b31 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0438.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0438.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0439.py b/githubkit/versions/ghec_v2022_11_28/types/group_0439.py index 732238708..090bbc7f0 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0439.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0439.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0440.py b/githubkit/versions/ghec_v2022_11_28/types/group_0440.py index a8ab05467..bf6683ded 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0440.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0440.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0441.py b/githubkit/versions/ghec_v2022_11_28/types/group_0441.py index b6c19e135..10f7f7d71 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0441.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0441.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -561,7 +560,9 @@ class WebhookDeploymentCreatedPropWorkflowRunPropPullRequestsItemsPropBaseType( """WebhookDeploymentCreatedPropWorkflowRunPropPullRequestsItemsPropBase""" ref: str - repo: WebhookDeploymentCreatedPropWorkflowRunPropPullRequestsItemsPropBasePropRepoType + repo: ( + WebhookDeploymentCreatedPropWorkflowRunPropPullRequestsItemsPropBasePropRepoType + ) sha: str @@ -581,7 +582,9 @@ class WebhookDeploymentCreatedPropWorkflowRunPropPullRequestsItemsPropHeadType( """WebhookDeploymentCreatedPropWorkflowRunPropPullRequestsItemsPropHead""" ref: str - repo: WebhookDeploymentCreatedPropWorkflowRunPropPullRequestsItemsPropHeadPropRepoType + repo: ( + WebhookDeploymentCreatedPropWorkflowRunPropPullRequestsItemsPropHeadPropRepoType + ) sha: str diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0442.py b/githubkit/versions/ghec_v2022_11_28/types/group_0442.py index e911979dc..bfebf3c16 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0442.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0442.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0443.py b/githubkit/versions/ghec_v2022_11_28/types/group_0443.py index 90016bb55..474ca946d 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0443.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0443.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -422,8 +421,12 @@ class WebhookDeploymentReviewApprovedPropWorkflowRunPropPullRequestsItemsType( ): """Check Run Pull Request""" - base: WebhookDeploymentReviewApprovedPropWorkflowRunPropPullRequestsItemsPropBaseType - head: WebhookDeploymentReviewApprovedPropWorkflowRunPropPullRequestsItemsPropHeadType + base: ( + WebhookDeploymentReviewApprovedPropWorkflowRunPropPullRequestsItemsPropBaseType + ) + head: ( + WebhookDeploymentReviewApprovedPropWorkflowRunPropPullRequestsItemsPropHeadType + ) id: int number: int url: str diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0444.py b/githubkit/versions/ghec_v2022_11_28/types/group_0444.py index 0f7940875..6218c5182 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0444.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0444.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -420,8 +419,12 @@ class WebhookDeploymentReviewRejectedPropWorkflowRunPropPullRequestsItemsType( ): """Check Run Pull Request""" - base: WebhookDeploymentReviewRejectedPropWorkflowRunPropPullRequestsItemsPropBaseType - head: WebhookDeploymentReviewRejectedPropWorkflowRunPropPullRequestsItemsPropHeadType + base: ( + WebhookDeploymentReviewRejectedPropWorkflowRunPropPullRequestsItemsPropBaseType + ) + head: ( + WebhookDeploymentReviewRejectedPropWorkflowRunPropPullRequestsItemsPropHeadType + ) id: int number: int url: str diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0445.py b/githubkit/versions/ghec_v2022_11_28/types/group_0445.py index fbe8718b0..09e4fc5c0 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0445.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0445.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -409,8 +408,12 @@ class WebhookDeploymentReviewRequestedPropWorkflowRunPropPullRequestsItemsType( ): """Check Run Pull Request""" - base: WebhookDeploymentReviewRequestedPropWorkflowRunPropPullRequestsItemsPropBaseType - head: WebhookDeploymentReviewRequestedPropWorkflowRunPropPullRequestsItemsPropHeadType + base: ( + WebhookDeploymentReviewRequestedPropWorkflowRunPropPullRequestsItemsPropBaseType + ) + head: ( + WebhookDeploymentReviewRequestedPropWorkflowRunPropPullRequestsItemsPropHeadType + ) id: int number: int url: str diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0446.py b/githubkit/versions/ghec_v2022_11_28/types/group_0446.py index 9e8c923fd..4b96523ec 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0446.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0446.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0447.py b/githubkit/versions/ghec_v2022_11_28/types/group_0447.py index b4c27329c..db11199ba 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0447.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0447.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0448.py b/githubkit/versions/ghec_v2022_11_28/types/group_0448.py index 8ec13b370..4b0627394 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0448.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0448.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0449.py b/githubkit/versions/ghec_v2022_11_28/types/group_0449.py index f5c0f1462..b453338bc 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0449.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0449.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0450.py b/githubkit/versions/ghec_v2022_11_28/types/group_0450.py index 6365792f9..6b2ad6c95 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0450.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0450.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0451.py b/githubkit/versions/ghec_v2022_11_28/types/group_0451.py index 5e6390ce3..1fd3ae718 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0451.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0451.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0452.py b/githubkit/versions/ghec_v2022_11_28/types/group_0452.py index a2f549aa8..b2ec05e21 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0452.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0452.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0453.py b/githubkit/versions/ghec_v2022_11_28/types/group_0453.py index 1e2434a64..9e3375dfb 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0453.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0453.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0454.py b/githubkit/versions/ghec_v2022_11_28/types/group_0454.py index 6928e71d4..99aeff143 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0454.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0454.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0455.py b/githubkit/versions/ghec_v2022_11_28/types/group_0455.py index 8b0eddc7b..b67d3508c 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0455.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0455.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0456.py b/githubkit/versions/ghec_v2022_11_28/types/group_0456.py index be49871fd..341a7508e 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0456.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0456.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0457.py b/githubkit/versions/ghec_v2022_11_28/types/group_0457.py index b15b40f43..98e910b9c 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0457.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0457.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0458.py b/githubkit/versions/ghec_v2022_11_28/types/group_0458.py index 6662278d3..01e4ce529 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0458.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0458.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0459.py b/githubkit/versions/ghec_v2022_11_28/types/group_0459.py index c2250397b..a7deb1734 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0459.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0459.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0460.py b/githubkit/versions/ghec_v2022_11_28/types/group_0460.py index 254906527..5081625f1 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0460.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0460.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0461.py b/githubkit/versions/ghec_v2022_11_28/types/group_0461.py index 666edd493..3c99a996a 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0461.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0461.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0462.py b/githubkit/versions/ghec_v2022_11_28/types/group_0462.py index 0944e81cb..f2c434314 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0462.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0462.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0463.py b/githubkit/versions/ghec_v2022_11_28/types/group_0463.py index 01756fcd5..f9d298fe9 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0463.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0463.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0464.py b/githubkit/versions/ghec_v2022_11_28/types/group_0464.py index 045db6c7b..f90410d43 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0464.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0464.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0465.py b/githubkit/versions/ghec_v2022_11_28/types/group_0465.py index 10a7700cb..19b669765 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0465.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0465.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0466.py b/githubkit/versions/ghec_v2022_11_28/types/group_0466.py index de99b3ff5..8522371fb 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0466.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0466.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0467.py b/githubkit/versions/ghec_v2022_11_28/types/group_0467.py index 49602c912..7f3d4f899 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0467.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0467.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0468.py b/githubkit/versions/ghec_v2022_11_28/types/group_0468.py index eda5f9eea..dfeaf97af 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0468.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0468.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0469.py b/githubkit/versions/ghec_v2022_11_28/types/group_0469.py index 38d511483..779e325da 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0469.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0469.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0470.py b/githubkit/versions/ghec_v2022_11_28/types/group_0470.py index 3046ac9f1..40a719c31 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0470.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0470.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0471.py b/githubkit/versions/ghec_v2022_11_28/types/group_0471.py index 160092f96..3ecd9449e 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0471.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0471.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0472.py b/githubkit/versions/ghec_v2022_11_28/types/group_0472.py index 6f813898f..087ca178e 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0472.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0472.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0473.py b/githubkit/versions/ghec_v2022_11_28/types/group_0473.py index 6fedaa7ea..f83c89901 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0473.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0473.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0474.py b/githubkit/versions/ghec_v2022_11_28/types/group_0474.py index 6d69e2bf0..eb09b1236 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0474.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0474.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0475.py b/githubkit/versions/ghec_v2022_11_28/types/group_0475.py index cdb56662b..34a24597c 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0475.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0475.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0476.py b/githubkit/versions/ghec_v2022_11_28/types/group_0476.py index f60b4eb7f..12a04c550 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0476.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0476.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0477.py b/githubkit/versions/ghec_v2022_11_28/types/group_0477.py index 582046d8d..b49182e56 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0477.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0477.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0478.py b/githubkit/versions/ghec_v2022_11_28/types/group_0478.py index 73a7ae20b..361c8742a 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0478.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0478.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0479.py b/githubkit/versions/ghec_v2022_11_28/types/group_0479.py index 70cd4f2d5..c564872ac 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0479.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0479.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0480.py b/githubkit/versions/ghec_v2022_11_28/types/group_0480.py index 7c0d4330b..afe5096d4 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0480.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0480.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0481.py b/githubkit/versions/ghec_v2022_11_28/types/group_0481.py index 0ee8abf5f..3d23baef6 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0481.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0481.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0482.py b/githubkit/versions/ghec_v2022_11_28/types/group_0482.py index af108f402..d5d27f8c2 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0482.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0482.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0483.py b/githubkit/versions/ghec_v2022_11_28/types/group_0483.py index 52572b004..a331e20b5 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0483.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0483.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0484.py b/githubkit/versions/ghec_v2022_11_28/types/group_0484.py index 2e2c7fd2c..a08a39d8c 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0484.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0484.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0485.py b/githubkit/versions/ghec_v2022_11_28/types/group_0485.py index 0e66463ab..0cbc6f1a9 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0485.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0485.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0486.py b/githubkit/versions/ghec_v2022_11_28/types/group_0486.py index 426899ad4..6dd959aa2 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0486.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0486.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0487.py b/githubkit/versions/ghec_v2022_11_28/types/group_0487.py index 67c3a512c..44922d8a2 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0487.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0487.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0488.py b/githubkit/versions/ghec_v2022_11_28/types/group_0488.py index 832ac69f0..54abd4727 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0488.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0488.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0489.py b/githubkit/versions/ghec_v2022_11_28/types/group_0489.py index 143386a10..c30c65fc6 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0489.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0489.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0490.py b/githubkit/versions/ghec_v2022_11_28/types/group_0490.py index b7493c200..fba9682e0 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0490.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0490.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0491.py b/githubkit/versions/ghec_v2022_11_28/types/group_0491.py index 8a05252d4..e63fe7bdd 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0491.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0491.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0492.py b/githubkit/versions/ghec_v2022_11_28/types/group_0492.py index 21c6d8c00..4069c4d99 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0492.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0492.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0493.py b/githubkit/versions/ghec_v2022_11_28/types/group_0493.py index 78250f18a..a96d726fa 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0493.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0493.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0494.py b/githubkit/versions/ghec_v2022_11_28/types/group_0494.py index 55e78231d..b8a2b5b21 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0494.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0494.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0495.py b/githubkit/versions/ghec_v2022_11_28/types/group_0495.py index 0c289eac6..7c9ae718f 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0495.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0495.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0496.py b/githubkit/versions/ghec_v2022_11_28/types/group_0496.py index 1993e80dc..fc9371ed4 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0496.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0496.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0497.py b/githubkit/versions/ghec_v2022_11_28/types/group_0497.py index aa0650763..7baaa15c4 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0497.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0497.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0498.py b/githubkit/versions/ghec_v2022_11_28/types/group_0498.py index 4b0bf0ad4..8b8fbeac5 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0498.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0498.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0499.py b/githubkit/versions/ghec_v2022_11_28/types/group_0499.py index 149e36818..50e1b8aa9 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0499.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0499.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0500.py b/githubkit/versions/ghec_v2022_11_28/types/group_0500.py index 2b58ebbc6..87bde6747 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0500.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0500.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0501.py b/githubkit/versions/ghec_v2022_11_28/types/group_0501.py index 237fc5d02..ad5159b35 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0501.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0501.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0502.py b/githubkit/versions/ghec_v2022_11_28/types/group_0502.py index b37812e61..23b6327a7 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0502.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0502.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0503.py b/githubkit/versions/ghec_v2022_11_28/types/group_0503.py index 539fd099c..d74a7f31c 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0503.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0503.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0504.py b/githubkit/versions/ghec_v2022_11_28/types/group_0504.py index 6235f0666..d0b36c97e 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0504.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0504.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0505.py b/githubkit/versions/ghec_v2022_11_28/types/group_0505.py index 47e068f3f..fca483928 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0505.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0505.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0506.py b/githubkit/versions/ghec_v2022_11_28/types/group_0506.py index 1eeee8365..dc7c13f57 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0506.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0506.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0507.py b/githubkit/versions/ghec_v2022_11_28/types/group_0507.py index 017d07ad2..38591fe72 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0507.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0507.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0508.py b/githubkit/versions/ghec_v2022_11_28/types/group_0508.py index b8073582b..4197b46ce 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0508.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0508.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0509.py b/githubkit/versions/ghec_v2022_11_28/types/group_0509.py index b2c6b8902..2225d7c19 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0509.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0509.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0510.py b/githubkit/versions/ghec_v2022_11_28/types/group_0510.py index 31444a4ec..10db221c2 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0510.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0510.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0511.py b/githubkit/versions/ghec_v2022_11_28/types/group_0511.py index 02357bca3..7b4b74ff3 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0511.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0511.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0512.py b/githubkit/versions/ghec_v2022_11_28/types/group_0512.py index 692b1a39d..a238b6095 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0512.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0512.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0513.py b/githubkit/versions/ghec_v2022_11_28/types/group_0513.py index f3f2bfe6c..f9c2e25f6 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0513.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0513.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0514.py b/githubkit/versions/ghec_v2022_11_28/types/group_0514.py index 724e5495b..0ad9e63b9 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0514.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0514.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0515.py b/githubkit/versions/ghec_v2022_11_28/types/group_0515.py index 1b9b06d20..99a262c0e 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0515.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0515.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0516.py b/githubkit/versions/ghec_v2022_11_28/types/group_0516.py index 914469e24..3cca84c7e 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0516.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0516.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0517.py b/githubkit/versions/ghec_v2022_11_28/types/group_0517.py index e4ddbd1bc..223664d94 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0517.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0517.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0518.py b/githubkit/versions/ghec_v2022_11_28/types/group_0518.py index 0ecb0319f..ade3cb542 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0518.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0518.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0519.py b/githubkit/versions/ghec_v2022_11_28/types/group_0519.py index e77279853..8d51d3ebd 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0519.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0519.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0520.py b/githubkit/versions/ghec_v2022_11_28/types/group_0520.py index fe45ed69c..f783ef904 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0520.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0520.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0521.py b/githubkit/versions/ghec_v2022_11_28/types/group_0521.py index 4d05f1df5..4f14445d3 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0521.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0521.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0522.py b/githubkit/versions/ghec_v2022_11_28/types/group_0522.py index 83ebaabf7..355119e62 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0522.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0522.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0523.py b/githubkit/versions/ghec_v2022_11_28/types/group_0523.py index d1f765c6a..7b05f1bde 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0523.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0523.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0524.py b/githubkit/versions/ghec_v2022_11_28/types/group_0524.py index b22b823e7..0b848ee40 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0524.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0524.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0525.py b/githubkit/versions/ghec_v2022_11_28/types/group_0525.py index cdf8e8046..32512a608 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0525.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0525.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0526.py b/githubkit/versions/ghec_v2022_11_28/types/group_0526.py index 3ebf36cfc..054a60b7f 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0526.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0526.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0527.py b/githubkit/versions/ghec_v2022_11_28/types/group_0527.py index 178e28e20..a73f7cc15 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0527.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0527.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0528.py b/githubkit/versions/ghec_v2022_11_28/types/group_0528.py index 54265a2c0..75a1610df 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0528.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0528.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0529.py b/githubkit/versions/ghec_v2022_11_28/types/group_0529.py index 2695e316f..e7e94be02 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0529.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0529.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0530.py b/githubkit/versions/ghec_v2022_11_28/types/group_0530.py index 17a37bdac..1e1247e08 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0530.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0530.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0531.py b/githubkit/versions/ghec_v2022_11_28/types/group_0531.py index c1ab56152..658bf2024 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0531.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0531.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0532.py b/githubkit/versions/ghec_v2022_11_28/types/group_0532.py index f3a24114d..8ba576383 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0532.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0532.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0533.py b/githubkit/versions/ghec_v2022_11_28/types/group_0533.py index 4bdeb562f..d9a78ad80 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0533.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0533.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0534.py b/githubkit/versions/ghec_v2022_11_28/types/group_0534.py index 86536a6f2..52ef8ec2a 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0534.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0534.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0535.py b/githubkit/versions/ghec_v2022_11_28/types/group_0535.py index 094e5288c..c7704b47c 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0535.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0535.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0536.py b/githubkit/versions/ghec_v2022_11_28/types/group_0536.py index e57b4e482..1c6b5f6f3 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0536.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0536.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0537.py b/githubkit/versions/ghec_v2022_11_28/types/group_0537.py index fc9ae1054..cbee176de 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0537.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0537.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0538.py b/githubkit/versions/ghec_v2022_11_28/types/group_0538.py index cd00df7d7..421dcb110 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0538.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0538.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0539.py b/githubkit/versions/ghec_v2022_11_28/types/group_0539.py index 5d8c28e46..424fae1f9 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0539.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0539.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0540.py b/githubkit/versions/ghec_v2022_11_28/types/group_0540.py index 683679481..47e020975 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0540.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0540.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0541.py b/githubkit/versions/ghec_v2022_11_28/types/group_0541.py index 9d52c6bc7..502d0e057 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0541.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0541.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0542.py b/githubkit/versions/ghec_v2022_11_28/types/group_0542.py index 095ba0ba5..62dbeecab 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0542.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0542.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0543.py b/githubkit/versions/ghec_v2022_11_28/types/group_0543.py index be25659d7..e36e29460 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0543.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0543.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0544.py b/githubkit/versions/ghec_v2022_11_28/types/group_0544.py index 53d8d7d00..8db7ae892 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0544.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0544.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0545.py b/githubkit/versions/ghec_v2022_11_28/types/group_0545.py index 843be8b4b..7ee29b7ad 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0545.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0545.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0546.py b/githubkit/versions/ghec_v2022_11_28/types/group_0546.py index 5fc2c08cd..f0da10499 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0546.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0546.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0547.py b/githubkit/versions/ghec_v2022_11_28/types/group_0547.py index 348dfcdeb..e342d0903 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0547.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0547.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0548.py b/githubkit/versions/ghec_v2022_11_28/types/group_0548.py index 16359d05f..178bb4bd8 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0548.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0548.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0549.py b/githubkit/versions/ghec_v2022_11_28/types/group_0549.py index 9959433ae..3219fdf9c 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0549.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0549.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0550.py b/githubkit/versions/ghec_v2022_11_28/types/group_0550.py index 40b23283b..20ef9e20f 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0550.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0550.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0551.py b/githubkit/versions/ghec_v2022_11_28/types/group_0551.py index 66cb69552..3b8adf89f 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0551.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0551.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0552.py b/githubkit/versions/ghec_v2022_11_28/types/group_0552.py index 76f5e9d42..a378996e6 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0552.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0552.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0553.py b/githubkit/versions/ghec_v2022_11_28/types/group_0553.py index 21aeba5b5..5ef4b1170 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0553.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0553.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0554.py b/githubkit/versions/ghec_v2022_11_28/types/group_0554.py index d2ded3e4b..64ca66f8d 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0554.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0554.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0555.py b/githubkit/versions/ghec_v2022_11_28/types/group_0555.py index 02f6ef5cd..df1f6ff04 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0555.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0555.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0556.py b/githubkit/versions/ghec_v2022_11_28/types/group_0556.py index 1f472b500..223c79bab 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0556.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0556.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0557.py b/githubkit/versions/ghec_v2022_11_28/types/group_0557.py index a470b0c20..bf3c09684 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0557.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0557.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0558.py b/githubkit/versions/ghec_v2022_11_28/types/group_0558.py index 009af9827..704d6aa7d 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0558.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0558.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0559.py b/githubkit/versions/ghec_v2022_11_28/types/group_0559.py index 31ad66b11..d3a5f8761 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0559.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0559.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0560.py b/githubkit/versions/ghec_v2022_11_28/types/group_0560.py index 0a28535ed..f1013cc58 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0560.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0560.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0561.py b/githubkit/versions/ghec_v2022_11_28/types/group_0561.py index ce54e1f50..bb269d50d 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0561.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0561.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0562.py b/githubkit/versions/ghec_v2022_11_28/types/group_0562.py index c289c0666..6492b1fd3 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0562.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0562.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0563.py b/githubkit/versions/ghec_v2022_11_28/types/group_0563.py index eb4836615..8e06430c9 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0563.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0563.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0564.py b/githubkit/versions/ghec_v2022_11_28/types/group_0564.py index 6fd74ca2c..999fc4af0 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0564.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0564.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0565.py b/githubkit/versions/ghec_v2022_11_28/types/group_0565.py index 2fe0bc350..24a924023 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0565.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0565.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0566.py b/githubkit/versions/ghec_v2022_11_28/types/group_0566.py index 6b124538b..41dcb82b6 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0566.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0566.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0567.py b/githubkit/versions/ghec_v2022_11_28/types/group_0567.py index a2f6a825e..f5f519708 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0567.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0567.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0568.py b/githubkit/versions/ghec_v2022_11_28/types/group_0568.py index f279836a4..453193c4e 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0568.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0568.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0569.py b/githubkit/versions/ghec_v2022_11_28/types/group_0569.py index 5447fd835..3b9f7ceda 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0569.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0569.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0570.py b/githubkit/versions/ghec_v2022_11_28/types/group_0570.py index 10a04414d..1f98d7b18 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0570.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0570.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0571.py b/githubkit/versions/ghec_v2022_11_28/types/group_0571.py index 2e6fe51bb..3b1ef8db5 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0571.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0571.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0572.py b/githubkit/versions/ghec_v2022_11_28/types/group_0572.py index 985078ce6..c07318424 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0572.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0572.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0573.py b/githubkit/versions/ghec_v2022_11_28/types/group_0573.py index 50d9881c6..965a791aa 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0573.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0573.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0574.py b/githubkit/versions/ghec_v2022_11_28/types/group_0574.py index 37a372ecb..49214c73a 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0574.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0574.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0575.py b/githubkit/versions/ghec_v2022_11_28/types/group_0575.py index 71b4fa72e..27acaca7f 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0575.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0575.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0576.py b/githubkit/versions/ghec_v2022_11_28/types/group_0576.py index 1347d2674..1f26178ad 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0576.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0576.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0577.py b/githubkit/versions/ghec_v2022_11_28/types/group_0577.py index aa825150d..17ce83c18 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0577.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0577.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0578.py b/githubkit/versions/ghec_v2022_11_28/types/group_0578.py index 5d56bfde9..5f1bc6791 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0578.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0578.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0579.py b/githubkit/versions/ghec_v2022_11_28/types/group_0579.py index 69f9e74bd..632ead9f3 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0579.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0579.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0580.py b/githubkit/versions/ghec_v2022_11_28/types/group_0580.py index c857e5e0b..1c9e194d0 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0580.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0580.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0581.py b/githubkit/versions/ghec_v2022_11_28/types/group_0581.py index 1b885d1b4..4fcc651ea 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0581.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0581.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0582.py b/githubkit/versions/ghec_v2022_11_28/types/group_0582.py index 5b1f79ffb..6a32e09c4 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0582.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0582.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0583.py b/githubkit/versions/ghec_v2022_11_28/types/group_0583.py index 61daf992b..5f54ac7f1 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0583.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0583.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0584.py b/githubkit/versions/ghec_v2022_11_28/types/group_0584.py index b409ab6aa..fcb72bab9 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0584.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0584.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0585.py b/githubkit/versions/ghec_v2022_11_28/types/group_0585.py index 855060012..7314a8500 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0585.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0585.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0586.py b/githubkit/versions/ghec_v2022_11_28/types/group_0586.py index b1c685778..0914f9900 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0586.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0586.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0587.py b/githubkit/versions/ghec_v2022_11_28/types/group_0587.py index f224deec9..e0c82fac5 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0587.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0587.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0588.py b/githubkit/versions/ghec_v2022_11_28/types/group_0588.py index 5edf013d8..50eb3c836 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0588.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0588.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0589.py b/githubkit/versions/ghec_v2022_11_28/types/group_0589.py index c1231ff1e..80de69e9c 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0589.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0589.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0590.py b/githubkit/versions/ghec_v2022_11_28/types/group_0590.py index b24955f8c..f8bf1adaa 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0590.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0590.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0591.py b/githubkit/versions/ghec_v2022_11_28/types/group_0591.py index 79994a495..19827aede 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0591.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0591.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal @@ -17,7 +16,9 @@ class WebhookMarketplacePurchaseCancelledPropMarketplacePurchaseAllof0Type(TypedDict): """Marketplace Purchase""" - account: WebhookMarketplacePurchaseCancelledPropMarketplacePurchaseAllof0PropAccountType + account: ( + WebhookMarketplacePurchaseCancelledPropMarketplacePurchaseAllof0PropAccountType + ) billing_cycle: str free_trial_ends_on: Union[str, None] next_billing_date: NotRequired[Union[str, None]] diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0592.py b/githubkit/versions/ghec_v2022_11_28/types/group_0592.py index 7c6c189c5..6f426e3ee 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0592.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0592.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0593.py b/githubkit/versions/ghec_v2022_11_28/types/group_0593.py index 1007a8264..b4444c6e1 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0593.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0593.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal @@ -77,7 +76,9 @@ class WebhookMarketplacePurchaseChangedPropMarketplacePurchaseMergedPlanType(Typ class WebhookMarketplacePurchaseChangedPropPreviousMarketplacePurchaseType(TypedDict): """Marketplace Purchase""" - account: WebhookMarketplacePurchaseChangedPropPreviousMarketplacePurchasePropAccountType + account: ( + WebhookMarketplacePurchaseChangedPropPreviousMarketplacePurchasePropAccountType + ) billing_cycle: str free_trial_ends_on: Union[str, None] next_billing_date: NotRequired[Union[str, None]] diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0594.py b/githubkit/versions/ghec_v2022_11_28/types/group_0594.py index aa0491e70..34fffd27e 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0594.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0594.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal @@ -17,7 +16,9 @@ class WebhookMarketplacePurchaseChangedPropMarketplacePurchaseAllof0Type(TypedDict): """Marketplace Purchase""" - account: WebhookMarketplacePurchaseChangedPropMarketplacePurchaseAllof0PropAccountType + account: ( + WebhookMarketplacePurchaseChangedPropMarketplacePurchaseAllof0PropAccountType + ) billing_cycle: str free_trial_ends_on: Union[str, None] next_billing_date: NotRequired[Union[str, None]] diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0595.py b/githubkit/versions/ghec_v2022_11_28/types/group_0595.py index 9035326f0..c9b97e140 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0595.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0595.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0596.py b/githubkit/versions/ghec_v2022_11_28/types/group_0596.py index edd091972..4dfbd9d77 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0596.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0596.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal @@ -27,7 +26,9 @@ class WebhookMarketplacePurchasePendingChangeType(TypedDict): effective_date: str enterprise: NotRequired[EnterpriseWebhooksType] installation: NotRequired[SimpleInstallationType] - marketplace_purchase: WebhookMarketplacePurchasePendingChangePropMarketplacePurchaseType + marketplace_purchase: ( + WebhookMarketplacePurchasePendingChangePropMarketplacePurchaseType + ) organization: NotRequired[OrganizationSimpleWebhooksType] previous_marketplace_purchase: NotRequired[ WebhookMarketplacePurchasePendingChangePropPreviousMarketplacePurchaseType @@ -39,7 +40,9 @@ class WebhookMarketplacePurchasePendingChangeType(TypedDict): class WebhookMarketplacePurchasePendingChangePropMarketplacePurchaseType(TypedDict): """WebhookMarketplacePurchasePendingChangePropMarketplacePurchase""" - account: WebhookMarketplacePurchasePendingChangePropMarketplacePurchaseMergedAccountType + account: ( + WebhookMarketplacePurchasePendingChangePropMarketplacePurchaseMergedAccountType + ) billing_cycle: str free_trial_ends_on: Union[Union[str, None], None] next_billing_date: Union[Union[str, None], None] diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0597.py b/githubkit/versions/ghec_v2022_11_28/types/group_0597.py index 436305d95..1a30777df 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0597.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0597.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal @@ -24,7 +23,9 @@ class WebhookMarketplacePurchasePendingChangePropMarketplacePurchaseAllof0Type( free_trial_ends_on: Union[str, None] next_billing_date: NotRequired[Union[str, None]] on_free_trial: bool - plan: WebhookMarketplacePurchasePendingChangePropMarketplacePurchaseAllof0PropPlanType + plan: ( + WebhookMarketplacePurchasePendingChangePropMarketplacePurchaseAllof0PropPlanType + ) unit_count: int diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0598.py b/githubkit/versions/ghec_v2022_11_28/types/group_0598.py index 517bc7f15..d70a4471f 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0598.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0598.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0599.py b/githubkit/versions/ghec_v2022_11_28/types/group_0599.py index 41839f3e0..086f740e7 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0599.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0599.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal @@ -30,7 +29,9 @@ class WebhookMarketplacePurchasePendingChangeCancelledType(TypedDict): effective_date: str enterprise: NotRequired[EnterpriseWebhooksType] installation: NotRequired[SimpleInstallationType] - marketplace_purchase: WebhookMarketplacePurchasePendingChangeCancelledPropMarketplacePurchaseType + marketplace_purchase: ( + WebhookMarketplacePurchasePendingChangeCancelledPropMarketplacePurchaseType + ) organization: NotRequired[OrganizationSimpleWebhooksType] previous_marketplace_purchase: NotRequired[ WebhookMarketplacePurchasePendingChangeCancelledPropPreviousMarketplacePurchaseType diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0600.py b/githubkit/versions/ghec_v2022_11_28/types/group_0600.py index 22e4903e4..55b10156b 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0600.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0600.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0601.py b/githubkit/versions/ghec_v2022_11_28/types/group_0601.py index 3d58d57e8..10d95d688 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0601.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0601.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0602.py b/githubkit/versions/ghec_v2022_11_28/types/group_0602.py index c2cffe4e9..d77fdaee5 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0602.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0602.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0603.py b/githubkit/versions/ghec_v2022_11_28/types/group_0603.py index 5078fbb44..24277ae5d 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0603.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0603.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0604.py b/githubkit/versions/ghec_v2022_11_28/types/group_0604.py index 26248f159..bc6e6a9f2 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0604.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0604.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0605.py b/githubkit/versions/ghec_v2022_11_28/types/group_0605.py index 604401704..008919a32 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0605.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0605.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal @@ -17,7 +16,9 @@ class WebhookMarketplacePurchasePurchasedPropMarketplacePurchaseAllof0Type(TypedDict): """Marketplace Purchase""" - account: WebhookMarketplacePurchasePurchasedPropMarketplacePurchaseAllof0PropAccountType + account: ( + WebhookMarketplacePurchasePurchasedPropMarketplacePurchaseAllof0PropAccountType + ) billing_cycle: str free_trial_ends_on: Union[str, None] next_billing_date: NotRequired[Union[str, None]] diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0606.py b/githubkit/versions/ghec_v2022_11_28/types/group_0606.py index 60649fe3b..d52b60497 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0606.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0606.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0607.py b/githubkit/versions/ghec_v2022_11_28/types/group_0607.py index cf20ac081..a3f9fae88 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0607.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0607.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0608.py b/githubkit/versions/ghec_v2022_11_28/types/group_0608.py index f2bc694bf..410459f0b 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0608.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0608.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0609.py b/githubkit/versions/ghec_v2022_11_28/types/group_0609.py index d829110a8..1370ff8dc 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0609.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0609.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0610.py b/githubkit/versions/ghec_v2022_11_28/types/group_0610.py index 24fbe0b4b..a72ee5edc 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0610.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0610.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0611.py b/githubkit/versions/ghec_v2022_11_28/types/group_0611.py index 050f85b51..bcbea48ad 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0611.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0611.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0612.py b/githubkit/versions/ghec_v2022_11_28/types/group_0612.py index d0549e8e0..22a3c6e97 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0612.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0612.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0613.py b/githubkit/versions/ghec_v2022_11_28/types/group_0613.py index 9f5ebb9a3..2495ca8d9 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0613.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0613.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0614.py b/githubkit/versions/ghec_v2022_11_28/types/group_0614.py index ba149aeaa..53364332b 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0614.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0614.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0615.py b/githubkit/versions/ghec_v2022_11_28/types/group_0615.py index d9937f82a..43db61548 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0615.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0615.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0616.py b/githubkit/versions/ghec_v2022_11_28/types/group_0616.py index f279a8ae6..8675e3395 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0616.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0616.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0617.py b/githubkit/versions/ghec_v2022_11_28/types/group_0617.py index e7c53c5ae..df24d9195 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0617.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0617.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0618.py b/githubkit/versions/ghec_v2022_11_28/types/group_0618.py index 3d95e7c79..084393066 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0618.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0618.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0619.py b/githubkit/versions/ghec_v2022_11_28/types/group_0619.py index 92f4ee40c..baa106da4 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0619.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0619.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0620.py b/githubkit/versions/ghec_v2022_11_28/types/group_0620.py index 84bfa71d6..9e46304d2 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0620.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0620.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0621.py b/githubkit/versions/ghec_v2022_11_28/types/group_0621.py index 9836ba54b..46304f2f3 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0621.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0621.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0622.py b/githubkit/versions/ghec_v2022_11_28/types/group_0622.py index 006f61ef5..5f52c123a 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0622.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0622.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0623.py b/githubkit/versions/ghec_v2022_11_28/types/group_0623.py index f9263b005..362e22f94 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0623.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0623.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0624.py b/githubkit/versions/ghec_v2022_11_28/types/group_0624.py index 2a69190d4..2e455304d 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0624.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0624.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0625.py b/githubkit/versions/ghec_v2022_11_28/types/group_0625.py index d02dd01fc..1b64da6b7 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0625.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0625.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0626.py b/githubkit/versions/ghec_v2022_11_28/types/group_0626.py index 8c47ba09e..e3a88c403 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0626.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0626.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0627.py b/githubkit/versions/ghec_v2022_11_28/types/group_0627.py index 492741b62..20f1913b5 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0627.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0627.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0628.py b/githubkit/versions/ghec_v2022_11_28/types/group_0628.py index db2aa57f2..9a0e4303f 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0628.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0628.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0629.py b/githubkit/versions/ghec_v2022_11_28/types/group_0629.py index 29eebcf60..8466fcd10 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0629.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0629.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0630.py b/githubkit/versions/ghec_v2022_11_28/types/group_0630.py index 53ab71af3..44c4b3273 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0630.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0630.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0631.py b/githubkit/versions/ghec_v2022_11_28/types/group_0631.py index 8381f3f00..c8734f7df 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0631.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0631.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0632.py b/githubkit/versions/ghec_v2022_11_28/types/group_0632.py index a97afc1fd..a5680db7d 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0632.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0632.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0633.py b/githubkit/versions/ghec_v2022_11_28/types/group_0633.py index b21f2a003..15876debe 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0633.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0633.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0634.py b/githubkit/versions/ghec_v2022_11_28/types/group_0634.py index 8d2355d1c..570c0f716 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0634.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0634.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0635.py b/githubkit/versions/ghec_v2022_11_28/types/group_0635.py index d134e6db2..aca13930f 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0635.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0635.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0636.py b/githubkit/versions/ghec_v2022_11_28/types/group_0636.py index b146f1104..66b0c2af3 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0636.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0636.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0637.py b/githubkit/versions/ghec_v2022_11_28/types/group_0637.py index b5a121cab..42d0c4dba 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0637.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0637.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0638.py b/githubkit/versions/ghec_v2022_11_28/types/group_0638.py index 3c08db04d..2587cf1f4 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0638.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0638.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0639.py b/githubkit/versions/ghec_v2022_11_28/types/group_0639.py index 4c1ad5d20..6bac15e4f 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0639.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0639.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0640.py b/githubkit/versions/ghec_v2022_11_28/types/group_0640.py index 6fd71e408..76cec252a 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0640.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0640.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0641.py b/githubkit/versions/ghec_v2022_11_28/types/group_0641.py index 211ffb303..76f44f172 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0641.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0641.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0642.py b/githubkit/versions/ghec_v2022_11_28/types/group_0642.py index 992b39db5..a57a3b729 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0642.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0642.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0643.py b/githubkit/versions/ghec_v2022_11_28/types/group_0643.py index d42fbdd5d..fe2006629 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0643.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0643.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0644.py b/githubkit/versions/ghec_v2022_11_28/types/group_0644.py index 2c6b5773e..d474e78f4 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0644.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0644.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0645.py b/githubkit/versions/ghec_v2022_11_28/types/group_0645.py index d9596c5b0..647773ff7 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0645.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0645.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0646.py b/githubkit/versions/ghec_v2022_11_28/types/group_0646.py index 1f0db0047..c07cebb9c 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0646.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0646.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0647.py b/githubkit/versions/ghec_v2022_11_28/types/group_0647.py index 0b65f246a..0b3e375d0 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0647.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0647.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0648.py b/githubkit/versions/ghec_v2022_11_28/types/group_0648.py index c36c51fb7..2386d865b 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0648.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0648.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0649.py b/githubkit/versions/ghec_v2022_11_28/types/group_0649.py index ebeb992c0..802ec5653 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0649.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0649.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0650.py b/githubkit/versions/ghec_v2022_11_28/types/group_0650.py index b4a6f414c..8f8ef6601 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0650.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0650.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0651.py b/githubkit/versions/ghec_v2022_11_28/types/group_0651.py index f524628f7..5da6e74b3 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0651.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0651.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0652.py b/githubkit/versions/ghec_v2022_11_28/types/group_0652.py index f2978067c..6e0e3a66b 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0652.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0652.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0653.py b/githubkit/versions/ghec_v2022_11_28/types/group_0653.py index 1391be6ee..afcf8cb63 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0653.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0653.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0654.py b/githubkit/versions/ghec_v2022_11_28/types/group_0654.py index e5754ff74..6506bf493 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0654.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0654.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0655.py b/githubkit/versions/ghec_v2022_11_28/types/group_0655.py index 98001cc59..946b84590 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0655.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0655.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0656.py b/githubkit/versions/ghec_v2022_11_28/types/group_0656.py index 035589bba..846a922b1 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0656.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0656.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0657.py b/githubkit/versions/ghec_v2022_11_28/types/group_0657.py index 17e2dd0ef..39139131b 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0657.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0657.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0658.py b/githubkit/versions/ghec_v2022_11_28/types/group_0658.py index 04b809bed..38b261698 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0658.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0658.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0659.py b/githubkit/versions/ghec_v2022_11_28/types/group_0659.py index 72fc17293..2d2197bbb 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0659.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0659.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0660.py b/githubkit/versions/ghec_v2022_11_28/types/group_0660.py index 5cfcfcde3..f7c79fcc2 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0660.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0660.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0661.py b/githubkit/versions/ghec_v2022_11_28/types/group_0661.py index 94271d33b..25887bf52 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0661.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0661.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0662.py b/githubkit/versions/ghec_v2022_11_28/types/group_0662.py index ca37ea7bc..d353e6a0b 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0662.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0662.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0663.py b/githubkit/versions/ghec_v2022_11_28/types/group_0663.py index cbf741757..c2843086d 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0663.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0663.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0664.py b/githubkit/versions/ghec_v2022_11_28/types/group_0664.py index fe4132174..94940e55c 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0664.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0664.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0665.py b/githubkit/versions/ghec_v2022_11_28/types/group_0665.py index c5a5ef409..62e59da19 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0665.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0665.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0666.py b/githubkit/versions/ghec_v2022_11_28/types/group_0666.py index 70775bdc0..31f510d2f 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0666.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0666.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0667.py b/githubkit/versions/ghec_v2022_11_28/types/group_0667.py index 2d4bb27c8..719a13376 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0667.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0667.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0668.py b/githubkit/versions/ghec_v2022_11_28/types/group_0668.py index d039ebea7..8343871e4 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0668.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0668.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0669.py b/githubkit/versions/ghec_v2022_11_28/types/group_0669.py index 54c515dba..ffafdcef4 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0669.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0669.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0670.py b/githubkit/versions/ghec_v2022_11_28/types/group_0670.py index 9e967173e..a88ef82e3 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0670.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0670.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0671.py b/githubkit/versions/ghec_v2022_11_28/types/group_0671.py index d641e46b4..15cf3f18e 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0671.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0671.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -382,8 +381,12 @@ class WebhookPullRequestAssignedPropPullRequestPropLinksType(TypedDict): commits: WebhookPullRequestAssignedPropPullRequestPropLinksPropCommitsType html: WebhookPullRequestAssignedPropPullRequestPropLinksPropHtmlType issue: WebhookPullRequestAssignedPropPullRequestPropLinksPropIssueType - review_comment: WebhookPullRequestAssignedPropPullRequestPropLinksPropReviewCommentType - review_comments: WebhookPullRequestAssignedPropPullRequestPropLinksPropReviewCommentsType + review_comment: ( + WebhookPullRequestAssignedPropPullRequestPropLinksPropReviewCommentType + ) + review_comments: ( + WebhookPullRequestAssignedPropPullRequestPropLinksPropReviewCommentsType + ) self_: WebhookPullRequestAssignedPropPullRequestPropLinksPropSelfType statuses: WebhookPullRequestAssignedPropPullRequestPropLinksPropStatusesType diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0672.py b/githubkit/versions/ghec_v2022_11_28/types/group_0672.py index 599706ff4..58c1faed7 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0672.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0672.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -367,14 +366,20 @@ class WebhookPullRequestAutoMergeDisabledPropPullRequestPropUserType(TypedDict): class WebhookPullRequestAutoMergeDisabledPropPullRequestPropLinksType(TypedDict): """WebhookPullRequestAutoMergeDisabledPropPullRequestPropLinks""" - comments: WebhookPullRequestAutoMergeDisabledPropPullRequestPropLinksPropCommentsType + comments: ( + WebhookPullRequestAutoMergeDisabledPropPullRequestPropLinksPropCommentsType + ) commits: WebhookPullRequestAutoMergeDisabledPropPullRequestPropLinksPropCommitsType html: WebhookPullRequestAutoMergeDisabledPropPullRequestPropLinksPropHtmlType issue: WebhookPullRequestAutoMergeDisabledPropPullRequestPropLinksPropIssueType - review_comment: WebhookPullRequestAutoMergeDisabledPropPullRequestPropLinksPropReviewCommentType + review_comment: ( + WebhookPullRequestAutoMergeDisabledPropPullRequestPropLinksPropReviewCommentType + ) review_comments: WebhookPullRequestAutoMergeDisabledPropPullRequestPropLinksPropReviewCommentsType self_: WebhookPullRequestAutoMergeDisabledPropPullRequestPropLinksPropSelfType - statuses: WebhookPullRequestAutoMergeDisabledPropPullRequestPropLinksPropStatusesType + statuses: ( + WebhookPullRequestAutoMergeDisabledPropPullRequestPropLinksPropStatusesType + ) class WebhookPullRequestAutoMergeDisabledPropPullRequestPropLinksPropCommentsType( diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0673.py b/githubkit/versions/ghec_v2022_11_28/types/group_0673.py index 6fc8034ad..610ed904e 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0673.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0673.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -371,8 +370,12 @@ class WebhookPullRequestAutoMergeEnabledPropPullRequestPropLinksType(TypedDict): commits: WebhookPullRequestAutoMergeEnabledPropPullRequestPropLinksPropCommitsType html: WebhookPullRequestAutoMergeEnabledPropPullRequestPropLinksPropHtmlType issue: WebhookPullRequestAutoMergeEnabledPropPullRequestPropLinksPropIssueType - review_comment: WebhookPullRequestAutoMergeEnabledPropPullRequestPropLinksPropReviewCommentType - review_comments: WebhookPullRequestAutoMergeEnabledPropPullRequestPropLinksPropReviewCommentsType + review_comment: ( + WebhookPullRequestAutoMergeEnabledPropPullRequestPropLinksPropReviewCommentType + ) + review_comments: ( + WebhookPullRequestAutoMergeEnabledPropPullRequestPropLinksPropReviewCommentsType + ) self_: WebhookPullRequestAutoMergeEnabledPropPullRequestPropLinksPropSelfType statuses: WebhookPullRequestAutoMergeEnabledPropPullRequestPropLinksPropStatusesType diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0674.py b/githubkit/versions/ghec_v2022_11_28/types/group_0674.py index 2f904d4d8..4a9fb9919 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0674.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0674.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0675.py b/githubkit/versions/ghec_v2022_11_28/types/group_0675.py index e54fd28b7..acce4619e 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0675.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0675.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0676.py b/githubkit/versions/ghec_v2022_11_28/types/group_0676.py index 71e09c323..dd38bb560 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0676.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0676.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0677.py b/githubkit/versions/ghec_v2022_11_28/types/group_0677.py index 60ee1e6f4..f64a53a33 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0677.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0677.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0678.py b/githubkit/versions/ghec_v2022_11_28/types/group_0678.py index 9b6cfb856..b2c51b7b2 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0678.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0678.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0679.py b/githubkit/versions/ghec_v2022_11_28/types/group_0679.py index 0d6b7b97e..46198cdaa 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0679.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0679.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0680.py b/githubkit/versions/ghec_v2022_11_28/types/group_0680.py index 3e8d1e637..c8f570f73 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0680.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0680.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -362,8 +361,12 @@ class WebhookPullRequestDemilestonedPropPullRequestPropLinksType(TypedDict): commits: WebhookPullRequestDemilestonedPropPullRequestPropLinksPropCommitsType html: WebhookPullRequestDemilestonedPropPullRequestPropLinksPropHtmlType issue: WebhookPullRequestDemilestonedPropPullRequestPropLinksPropIssueType - review_comment: WebhookPullRequestDemilestonedPropPullRequestPropLinksPropReviewCommentType - review_comments: WebhookPullRequestDemilestonedPropPullRequestPropLinksPropReviewCommentsType + review_comment: ( + WebhookPullRequestDemilestonedPropPullRequestPropLinksPropReviewCommentType + ) + review_comments: ( + WebhookPullRequestDemilestonedPropPullRequestPropLinksPropReviewCommentsType + ) self_: WebhookPullRequestDemilestonedPropPullRequestPropLinksPropSelfType statuses: WebhookPullRequestDemilestonedPropPullRequestPropLinksPropStatusesType diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0681.py b/githubkit/versions/ghec_v2022_11_28/types/group_0681.py index 023c794d2..d5c0c548b 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0681.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0681.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -356,8 +355,12 @@ class WebhookPullRequestDequeuedPropPullRequestPropLinksType(TypedDict): commits: WebhookPullRequestDequeuedPropPullRequestPropLinksPropCommitsType html: WebhookPullRequestDequeuedPropPullRequestPropLinksPropHtmlType issue: WebhookPullRequestDequeuedPropPullRequestPropLinksPropIssueType - review_comment: WebhookPullRequestDequeuedPropPullRequestPropLinksPropReviewCommentType - review_comments: WebhookPullRequestDequeuedPropPullRequestPropLinksPropReviewCommentsType + review_comment: ( + WebhookPullRequestDequeuedPropPullRequestPropLinksPropReviewCommentType + ) + review_comments: ( + WebhookPullRequestDequeuedPropPullRequestPropLinksPropReviewCommentsType + ) self_: WebhookPullRequestDequeuedPropPullRequestPropLinksPropSelfType statuses: WebhookPullRequestDequeuedPropPullRequestPropLinksPropStatusesType diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0682.py b/githubkit/versions/ghec_v2022_11_28/types/group_0682.py index 36c783804..772c8da43 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0682.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0682.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0683.py b/githubkit/versions/ghec_v2022_11_28/types/group_0683.py index 1492c5cb0..0010b1ba3 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0683.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0683.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0684.py b/githubkit/versions/ghec_v2022_11_28/types/group_0684.py index d47284076..39fd7076f 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0684.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0684.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0685.py b/githubkit/versions/ghec_v2022_11_28/types/group_0685.py index 7e151c549..3c7ed69d1 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0685.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0685.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -355,8 +354,12 @@ class WebhookPullRequestEnqueuedPropPullRequestPropLinksType(TypedDict): commits: WebhookPullRequestEnqueuedPropPullRequestPropLinksPropCommitsType html: WebhookPullRequestEnqueuedPropPullRequestPropLinksPropHtmlType issue: WebhookPullRequestEnqueuedPropPullRequestPropLinksPropIssueType - review_comment: WebhookPullRequestEnqueuedPropPullRequestPropLinksPropReviewCommentType - review_comments: WebhookPullRequestEnqueuedPropPullRequestPropLinksPropReviewCommentsType + review_comment: ( + WebhookPullRequestEnqueuedPropPullRequestPropLinksPropReviewCommentType + ) + review_comments: ( + WebhookPullRequestEnqueuedPropPullRequestPropLinksPropReviewCommentsType + ) self_: WebhookPullRequestEnqueuedPropPullRequestPropLinksPropSelfType statuses: WebhookPullRequestEnqueuedPropPullRequestPropLinksPropStatusesType diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0686.py b/githubkit/versions/ghec_v2022_11_28/types/group_0686.py index 66ed8ddd1..1dbbdb86a 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0686.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0686.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -366,8 +365,12 @@ class WebhookPullRequestLabeledPropPullRequestPropLinksType(TypedDict): commits: WebhookPullRequestLabeledPropPullRequestPropLinksPropCommitsType html: WebhookPullRequestLabeledPropPullRequestPropLinksPropHtmlType issue: WebhookPullRequestLabeledPropPullRequestPropLinksPropIssueType - review_comment: WebhookPullRequestLabeledPropPullRequestPropLinksPropReviewCommentType - review_comments: WebhookPullRequestLabeledPropPullRequestPropLinksPropReviewCommentsType + review_comment: ( + WebhookPullRequestLabeledPropPullRequestPropLinksPropReviewCommentType + ) + review_comments: ( + WebhookPullRequestLabeledPropPullRequestPropLinksPropReviewCommentsType + ) self_: WebhookPullRequestLabeledPropPullRequestPropLinksPropSelfType statuses: WebhookPullRequestLabeledPropPullRequestPropLinksPropStatusesType diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0687.py b/githubkit/versions/ghec_v2022_11_28/types/group_0687.py index 88ed51498..701c4c870 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0687.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0687.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -353,8 +352,12 @@ class WebhookPullRequestLockedPropPullRequestPropLinksType(TypedDict): commits: WebhookPullRequestLockedPropPullRequestPropLinksPropCommitsType html: WebhookPullRequestLockedPropPullRequestPropLinksPropHtmlType issue: WebhookPullRequestLockedPropPullRequestPropLinksPropIssueType - review_comment: WebhookPullRequestLockedPropPullRequestPropLinksPropReviewCommentType - review_comments: WebhookPullRequestLockedPropPullRequestPropLinksPropReviewCommentsType + review_comment: ( + WebhookPullRequestLockedPropPullRequestPropLinksPropReviewCommentType + ) + review_comments: ( + WebhookPullRequestLockedPropPullRequestPropLinksPropReviewCommentsType + ) self_: WebhookPullRequestLockedPropPullRequestPropLinksPropSelfType statuses: WebhookPullRequestLockedPropPullRequestPropLinksPropStatusesType diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0688.py b/githubkit/versions/ghec_v2022_11_28/types/group_0688.py index e834e5499..a531482fa 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0688.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0688.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -359,8 +358,12 @@ class WebhookPullRequestMilestonedPropPullRequestPropLinksType(TypedDict): commits: WebhookPullRequestMilestonedPropPullRequestPropLinksPropCommitsType html: WebhookPullRequestMilestonedPropPullRequestPropLinksPropHtmlType issue: WebhookPullRequestMilestonedPropPullRequestPropLinksPropIssueType - review_comment: WebhookPullRequestMilestonedPropPullRequestPropLinksPropReviewCommentType - review_comments: WebhookPullRequestMilestonedPropPullRequestPropLinksPropReviewCommentsType + review_comment: ( + WebhookPullRequestMilestonedPropPullRequestPropLinksPropReviewCommentType + ) + review_comments: ( + WebhookPullRequestMilestonedPropPullRequestPropLinksPropReviewCommentsType + ) self_: WebhookPullRequestMilestonedPropPullRequestPropLinksPropSelfType statuses: WebhookPullRequestMilestonedPropPullRequestPropLinksPropStatusesType diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0689.py b/githubkit/versions/ghec_v2022_11_28/types/group_0689.py index 6bf6cf2e7..19dff26c6 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0689.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0689.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0690.py b/githubkit/versions/ghec_v2022_11_28/types/group_0690.py index 8f1c7fc81..87b1acfa6 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0690.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0690.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0691.py b/githubkit/versions/ghec_v2022_11_28/types/group_0691.py index 8a86bfa03..68d48ed00 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0691.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0691.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0692.py b/githubkit/versions/ghec_v2022_11_28/types/group_0692.py index 1a6f58a49..d847b745f 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0692.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0692.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0693.py b/githubkit/versions/ghec_v2022_11_28/types/group_0693.py index 2ceda4403..b5e93771e 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0693.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0693.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0694.py b/githubkit/versions/ghec_v2022_11_28/types/group_0694.py index 7d834b8f5..fde66824b 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0694.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0694.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0695.py b/githubkit/versions/ghec_v2022_11_28/types/group_0695.py index 3e61a1fde..84ce0fb34 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0695.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0695.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0696.py b/githubkit/versions/ghec_v2022_11_28/types/group_0696.py index 110845505..1ce4df700 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0696.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0696.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0697.py b/githubkit/versions/ghec_v2022_11_28/types/group_0697.py index 8c8005f89..105754315 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0697.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0697.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0698.py b/githubkit/versions/ghec_v2022_11_28/types/group_0698.py index 32f9414a0..ae043eaf0 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0698.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0698.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -125,7 +124,9 @@ class WebhookPullRequestReviewCommentCreatedPropCommentPropLinksType(TypedDict): """WebhookPullRequestReviewCommentCreatedPropCommentPropLinks""" html: WebhookPullRequestReviewCommentCreatedPropCommentPropLinksPropHtmlType - pull_request: WebhookPullRequestReviewCommentCreatedPropCommentPropLinksPropPullRequestType + pull_request: ( + WebhookPullRequestReviewCommentCreatedPropCommentPropLinksPropPullRequestType + ) self_: WebhookPullRequestReviewCommentCreatedPropCommentPropLinksPropSelfType @@ -447,14 +448,20 @@ class WebhookPullRequestReviewCommentCreatedPropPullRequestPropUserType(TypedDic class WebhookPullRequestReviewCommentCreatedPropPullRequestPropLinksType(TypedDict): """WebhookPullRequestReviewCommentCreatedPropPullRequestPropLinks""" - comments: WebhookPullRequestReviewCommentCreatedPropPullRequestPropLinksPropCommentsType - commits: WebhookPullRequestReviewCommentCreatedPropPullRequestPropLinksPropCommitsType + comments: ( + WebhookPullRequestReviewCommentCreatedPropPullRequestPropLinksPropCommentsType + ) + commits: ( + WebhookPullRequestReviewCommentCreatedPropPullRequestPropLinksPropCommitsType + ) html: WebhookPullRequestReviewCommentCreatedPropPullRequestPropLinksPropHtmlType issue: WebhookPullRequestReviewCommentCreatedPropPullRequestPropLinksPropIssueType review_comment: WebhookPullRequestReviewCommentCreatedPropPullRequestPropLinksPropReviewCommentType review_comments: WebhookPullRequestReviewCommentCreatedPropPullRequestPropLinksPropReviewCommentsType self_: WebhookPullRequestReviewCommentCreatedPropPullRequestPropLinksPropSelfType - statuses: WebhookPullRequestReviewCommentCreatedPropPullRequestPropLinksPropStatusesType + statuses: ( + WebhookPullRequestReviewCommentCreatedPropPullRequestPropLinksPropStatusesType + ) class WebhookPullRequestReviewCommentCreatedPropPullRequestPropLinksPropCommentsType( diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0699.py b/githubkit/versions/ghec_v2022_11_28/types/group_0699.py index e1bf4d194..b0dd183d5 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0699.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0699.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -125,7 +124,9 @@ class WebhookPullRequestReviewCommentDeletedPropCommentPropLinksType(TypedDict): """WebhookPullRequestReviewCommentDeletedPropCommentPropLinks""" html: WebhookPullRequestReviewCommentDeletedPropCommentPropLinksPropHtmlType - pull_request: WebhookPullRequestReviewCommentDeletedPropCommentPropLinksPropPullRequestType + pull_request: ( + WebhookPullRequestReviewCommentDeletedPropCommentPropLinksPropPullRequestType + ) self_: WebhookPullRequestReviewCommentDeletedPropCommentPropLinksPropSelfType @@ -447,14 +448,20 @@ class WebhookPullRequestReviewCommentDeletedPropPullRequestPropUserType(TypedDic class WebhookPullRequestReviewCommentDeletedPropPullRequestPropLinksType(TypedDict): """WebhookPullRequestReviewCommentDeletedPropPullRequestPropLinks""" - comments: WebhookPullRequestReviewCommentDeletedPropPullRequestPropLinksPropCommentsType - commits: WebhookPullRequestReviewCommentDeletedPropPullRequestPropLinksPropCommitsType + comments: ( + WebhookPullRequestReviewCommentDeletedPropPullRequestPropLinksPropCommentsType + ) + commits: ( + WebhookPullRequestReviewCommentDeletedPropPullRequestPropLinksPropCommitsType + ) html: WebhookPullRequestReviewCommentDeletedPropPullRequestPropLinksPropHtmlType issue: WebhookPullRequestReviewCommentDeletedPropPullRequestPropLinksPropIssueType review_comment: WebhookPullRequestReviewCommentDeletedPropPullRequestPropLinksPropReviewCommentType review_comments: WebhookPullRequestReviewCommentDeletedPropPullRequestPropLinksPropReviewCommentsType self_: WebhookPullRequestReviewCommentDeletedPropPullRequestPropLinksPropSelfType - statuses: WebhookPullRequestReviewCommentDeletedPropPullRequestPropLinksPropStatusesType + statuses: ( + WebhookPullRequestReviewCommentDeletedPropPullRequestPropLinksPropStatusesType + ) class WebhookPullRequestReviewCommentDeletedPropPullRequestPropLinksPropCommentsType( diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0700.py b/githubkit/versions/ghec_v2022_11_28/types/group_0700.py index f964fa406..9f8abf0af 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0700.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0700.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -141,7 +140,9 @@ class WebhookPullRequestReviewCommentEditedPropCommentPropLinksType(TypedDict): """WebhookPullRequestReviewCommentEditedPropCommentPropLinks""" html: WebhookPullRequestReviewCommentEditedPropCommentPropLinksPropHtmlType - pull_request: WebhookPullRequestReviewCommentEditedPropCommentPropLinksPropPullRequestType + pull_request: ( + WebhookPullRequestReviewCommentEditedPropCommentPropLinksPropPullRequestType + ) self_: WebhookPullRequestReviewCommentEditedPropCommentPropLinksPropSelfType @@ -463,14 +464,20 @@ class WebhookPullRequestReviewCommentEditedPropPullRequestPropUserType(TypedDict class WebhookPullRequestReviewCommentEditedPropPullRequestPropLinksType(TypedDict): """WebhookPullRequestReviewCommentEditedPropPullRequestPropLinks""" - comments: WebhookPullRequestReviewCommentEditedPropPullRequestPropLinksPropCommentsType - commits: WebhookPullRequestReviewCommentEditedPropPullRequestPropLinksPropCommitsType + comments: ( + WebhookPullRequestReviewCommentEditedPropPullRequestPropLinksPropCommentsType + ) + commits: ( + WebhookPullRequestReviewCommentEditedPropPullRequestPropLinksPropCommitsType + ) html: WebhookPullRequestReviewCommentEditedPropPullRequestPropLinksPropHtmlType issue: WebhookPullRequestReviewCommentEditedPropPullRequestPropLinksPropIssueType review_comment: WebhookPullRequestReviewCommentEditedPropPullRequestPropLinksPropReviewCommentType review_comments: WebhookPullRequestReviewCommentEditedPropPullRequestPropLinksPropReviewCommentsType self_: WebhookPullRequestReviewCommentEditedPropPullRequestPropLinksPropSelfType - statuses: WebhookPullRequestReviewCommentEditedPropPullRequestPropLinksPropStatusesType + statuses: ( + WebhookPullRequestReviewCommentEditedPropPullRequestPropLinksPropStatusesType + ) class WebhookPullRequestReviewCommentEditedPropPullRequestPropLinksPropCommentsType( diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0701.py b/githubkit/versions/ghec_v2022_11_28/types/group_0701.py index da848e902..d66dd0a21 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0701.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0701.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -92,7 +91,9 @@ class WebhookPullRequestReviewDismissedPropReviewPropLinksType(TypedDict): """WebhookPullRequestReviewDismissedPropReviewPropLinks""" html: WebhookPullRequestReviewDismissedPropReviewPropLinksPropHtmlType - pull_request: WebhookPullRequestReviewDismissedPropReviewPropLinksPropPullRequestType + pull_request: ( + WebhookPullRequestReviewDismissedPropReviewPropLinksPropPullRequestType + ) class WebhookPullRequestReviewDismissedPropReviewPropLinksPropHtmlType(TypedDict): @@ -402,8 +403,12 @@ class WebhookPullRequestReviewDismissedPropPullRequestPropLinksType(TypedDict): commits: WebhookPullRequestReviewDismissedPropPullRequestPropLinksPropCommitsType html: WebhookPullRequestReviewDismissedPropPullRequestPropLinksPropHtmlType issue: WebhookPullRequestReviewDismissedPropPullRequestPropLinksPropIssueType - review_comment: WebhookPullRequestReviewDismissedPropPullRequestPropLinksPropReviewCommentType - review_comments: WebhookPullRequestReviewDismissedPropPullRequestPropLinksPropReviewCommentsType + review_comment: ( + WebhookPullRequestReviewDismissedPropPullRequestPropLinksPropReviewCommentType + ) + review_comments: ( + WebhookPullRequestReviewDismissedPropPullRequestPropLinksPropReviewCommentsType + ) self_: WebhookPullRequestReviewDismissedPropPullRequestPropLinksPropSelfType statuses: WebhookPullRequestReviewDismissedPropPullRequestPropLinksPropStatusesType diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0702.py b/githubkit/versions/ghec_v2022_11_28/types/group_0702.py index c81e3c1de..8094b9b5b 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0702.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0702.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -408,8 +407,12 @@ class WebhookPullRequestReviewEditedPropPullRequestPropLinksType(TypedDict): commits: WebhookPullRequestReviewEditedPropPullRequestPropLinksPropCommitsType html: WebhookPullRequestReviewEditedPropPullRequestPropLinksPropHtmlType issue: WebhookPullRequestReviewEditedPropPullRequestPropLinksPropIssueType - review_comment: WebhookPullRequestReviewEditedPropPullRequestPropLinksPropReviewCommentType - review_comments: WebhookPullRequestReviewEditedPropPullRequestPropLinksPropReviewCommentsType + review_comment: ( + WebhookPullRequestReviewEditedPropPullRequestPropLinksPropReviewCommentType + ) + review_comments: ( + WebhookPullRequestReviewEditedPropPullRequestPropLinksPropReviewCommentsType + ) self_: WebhookPullRequestReviewEditedPropPullRequestPropLinksPropSelfType statuses: WebhookPullRequestReviewEditedPropPullRequestPropLinksPropStatusesType diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0703.py b/githubkit/versions/ghec_v2022_11_28/types/group_0703.py index b55336799..62be24cec 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0703.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0703.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -421,11 +420,15 @@ class WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropLinksType( comments: WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropLinksPropCommentsType commits: WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropLinksPropCommitsType - html: WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropLinksPropHtmlType + html: ( + WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropLinksPropHtmlType + ) issue: WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropLinksPropIssueType review_comment: WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropLinksPropReviewCommentType review_comments: WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropLinksPropReviewCommentsType - self_: WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropLinksPropSelfType + self_: ( + WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropLinksPropSelfType + ) statuses: WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropLinksPropStatusesType @@ -500,7 +503,9 @@ class WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropBaseType( label: str ref: str - repo: WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropBasePropRepoType + repo: ( + WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropBasePropRepoType + ) sha: str user: Union[ WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropBasePropUserType, @@ -713,7 +718,9 @@ class WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropHeadType( label: str ref: str - repo: WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropHeadPropRepoType + repo: ( + WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropHeadPropRepoType + ) sha: str user: Union[ WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropHeadPropUserType, diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0704.py b/githubkit/versions/ghec_v2022_11_28/types/group_0704.py index 0803a7ee2..3e9954824 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0704.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0704.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -437,11 +436,15 @@ class WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropLinksType( comments: WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropLinksPropCommentsType commits: WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropLinksPropCommitsType - html: WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropLinksPropHtmlType + html: ( + WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropLinksPropHtmlType + ) issue: WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropLinksPropIssueType review_comment: WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropLinksPropReviewCommentType review_comments: WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropLinksPropReviewCommentsType - self_: WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropLinksPropSelfType + self_: ( + WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropLinksPropSelfType + ) statuses: WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropLinksPropStatusesType @@ -516,7 +519,9 @@ class WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropBaseType( label: str ref: str - repo: WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropBasePropRepoType + repo: ( + WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropBasePropRepoType + ) sha: str user: Union[ WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropBasePropUserType, @@ -729,7 +734,9 @@ class WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropHeadType( label: str ref: str - repo: WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropHeadPropRepoType + repo: ( + WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropHeadPropRepoType + ) sha: str user: Union[ WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropHeadPropUserType, diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0705.py b/githubkit/versions/ghec_v2022_11_28/types/group_0705.py index d427f2ba6..fe729ea35 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0705.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0705.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -407,14 +406,20 @@ class WebhookPullRequestReviewRequestedOneof0PropPullRequestPropUserType(TypedDi class WebhookPullRequestReviewRequestedOneof0PropPullRequestPropLinksType(TypedDict): """WebhookPullRequestReviewRequestedOneof0PropPullRequestPropLinks""" - comments: WebhookPullRequestReviewRequestedOneof0PropPullRequestPropLinksPropCommentsType - commits: WebhookPullRequestReviewRequestedOneof0PropPullRequestPropLinksPropCommitsType + comments: ( + WebhookPullRequestReviewRequestedOneof0PropPullRequestPropLinksPropCommentsType + ) + commits: ( + WebhookPullRequestReviewRequestedOneof0PropPullRequestPropLinksPropCommitsType + ) html: WebhookPullRequestReviewRequestedOneof0PropPullRequestPropLinksPropHtmlType issue: WebhookPullRequestReviewRequestedOneof0PropPullRequestPropLinksPropIssueType review_comment: WebhookPullRequestReviewRequestedOneof0PropPullRequestPropLinksPropReviewCommentType review_comments: WebhookPullRequestReviewRequestedOneof0PropPullRequestPropLinksPropReviewCommentsType self_: WebhookPullRequestReviewRequestedOneof0PropPullRequestPropLinksPropSelfType - statuses: WebhookPullRequestReviewRequestedOneof0PropPullRequestPropLinksPropStatusesType + statuses: ( + WebhookPullRequestReviewRequestedOneof0PropPullRequestPropLinksPropStatusesType + ) class WebhookPullRequestReviewRequestedOneof0PropPullRequestPropLinksPropCommentsType( diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0706.py b/githubkit/versions/ghec_v2022_11_28/types/group_0706.py index 1c6b47ba8..dc7d280e9 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0706.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0706.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -420,14 +419,20 @@ class WebhookPullRequestReviewRequestedOneof1PropPullRequestPropUserType(TypedDi class WebhookPullRequestReviewRequestedOneof1PropPullRequestPropLinksType(TypedDict): """WebhookPullRequestReviewRequestedOneof1PropPullRequestPropLinks""" - comments: WebhookPullRequestReviewRequestedOneof1PropPullRequestPropLinksPropCommentsType - commits: WebhookPullRequestReviewRequestedOneof1PropPullRequestPropLinksPropCommitsType + comments: ( + WebhookPullRequestReviewRequestedOneof1PropPullRequestPropLinksPropCommentsType + ) + commits: ( + WebhookPullRequestReviewRequestedOneof1PropPullRequestPropLinksPropCommitsType + ) html: WebhookPullRequestReviewRequestedOneof1PropPullRequestPropLinksPropHtmlType issue: WebhookPullRequestReviewRequestedOneof1PropPullRequestPropLinksPropIssueType review_comment: WebhookPullRequestReviewRequestedOneof1PropPullRequestPropLinksPropReviewCommentType review_comments: WebhookPullRequestReviewRequestedOneof1PropPullRequestPropLinksPropReviewCommentsType self_: WebhookPullRequestReviewRequestedOneof1PropPullRequestPropLinksPropSelfType - statuses: WebhookPullRequestReviewRequestedOneof1PropPullRequestPropLinksPropStatusesType + statuses: ( + WebhookPullRequestReviewRequestedOneof1PropPullRequestPropLinksPropStatusesType + ) class WebhookPullRequestReviewRequestedOneof1PropPullRequestPropLinksPropCommentsType( diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0707.py b/githubkit/versions/ghec_v2022_11_28/types/group_0707.py index de01788e5..f765f3c67 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0707.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0707.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -92,7 +91,9 @@ class WebhookPullRequestReviewSubmittedPropReviewPropLinksType(TypedDict): """WebhookPullRequestReviewSubmittedPropReviewPropLinks""" html: WebhookPullRequestReviewSubmittedPropReviewPropLinksPropHtmlType - pull_request: WebhookPullRequestReviewSubmittedPropReviewPropLinksPropPullRequestType + pull_request: ( + WebhookPullRequestReviewSubmittedPropReviewPropLinksPropPullRequestType + ) class WebhookPullRequestReviewSubmittedPropReviewPropLinksPropHtmlType(TypedDict): @@ -402,8 +403,12 @@ class WebhookPullRequestReviewSubmittedPropPullRequestPropLinksType(TypedDict): commits: WebhookPullRequestReviewSubmittedPropPullRequestPropLinksPropCommitsType html: WebhookPullRequestReviewSubmittedPropPullRequestPropLinksPropHtmlType issue: WebhookPullRequestReviewSubmittedPropPullRequestPropLinksPropIssueType - review_comment: WebhookPullRequestReviewSubmittedPropPullRequestPropLinksPropReviewCommentType - review_comments: WebhookPullRequestReviewSubmittedPropPullRequestPropLinksPropReviewCommentsType + review_comment: ( + WebhookPullRequestReviewSubmittedPropPullRequestPropLinksPropReviewCommentType + ) + review_comments: ( + WebhookPullRequestReviewSubmittedPropPullRequestPropLinksPropReviewCommentsType + ) self_: WebhookPullRequestReviewSubmittedPropPullRequestPropLinksPropSelfType statuses: WebhookPullRequestReviewSubmittedPropPullRequestPropLinksPropStatusesType diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0708.py b/githubkit/versions/ghec_v2022_11_28/types/group_0708.py index 53a0b92ec..8712aab9d 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0708.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0708.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -330,14 +329,20 @@ class WebhookPullRequestReviewThreadResolvedPropPullRequestPropUserType(TypedDic class WebhookPullRequestReviewThreadResolvedPropPullRequestPropLinksType(TypedDict): """WebhookPullRequestReviewThreadResolvedPropPullRequestPropLinks""" - comments: WebhookPullRequestReviewThreadResolvedPropPullRequestPropLinksPropCommentsType - commits: WebhookPullRequestReviewThreadResolvedPropPullRequestPropLinksPropCommitsType + comments: ( + WebhookPullRequestReviewThreadResolvedPropPullRequestPropLinksPropCommentsType + ) + commits: ( + WebhookPullRequestReviewThreadResolvedPropPullRequestPropLinksPropCommitsType + ) html: WebhookPullRequestReviewThreadResolvedPropPullRequestPropLinksPropHtmlType issue: WebhookPullRequestReviewThreadResolvedPropPullRequestPropLinksPropIssueType review_comment: WebhookPullRequestReviewThreadResolvedPropPullRequestPropLinksPropReviewCommentType review_comments: WebhookPullRequestReviewThreadResolvedPropPullRequestPropLinksPropReviewCommentsType self_: WebhookPullRequestReviewThreadResolvedPropPullRequestPropLinksPropSelfType - statuses: WebhookPullRequestReviewThreadResolvedPropPullRequestPropLinksPropStatusesType + statuses: ( + WebhookPullRequestReviewThreadResolvedPropPullRequestPropLinksPropStatusesType + ) class WebhookPullRequestReviewThreadResolvedPropPullRequestPropLinksPropCommentsType( @@ -925,7 +930,9 @@ class WebhookPullRequestReviewThreadResolvedPropThreadPropCommentsItemsType(Type itself. """ - links: WebhookPullRequestReviewThreadResolvedPropThreadPropCommentsItemsPropLinksType + links: ( + WebhookPullRequestReviewThreadResolvedPropThreadPropCommentsItemsPropLinksType + ) author_association: Literal[ "COLLABORATOR", "CONTRIBUTOR", diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0709.py b/githubkit/versions/ghec_v2022_11_28/types/group_0709.py index c6bc4825a..3a9ff0e66 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0709.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0709.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -338,14 +337,20 @@ class WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropUserType(TypedD class WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropLinksType(TypedDict): """WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropLinks""" - comments: WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropLinksPropCommentsType - commits: WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropLinksPropCommitsType + comments: ( + WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropLinksPropCommentsType + ) + commits: ( + WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropLinksPropCommitsType + ) html: WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropLinksPropHtmlType issue: WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropLinksPropIssueType review_comment: WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropLinksPropReviewCommentType review_comments: WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropLinksPropReviewCommentsType self_: WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropLinksPropSelfType - statuses: WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropLinksPropStatusesType + statuses: ( + WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropLinksPropStatusesType + ) class WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropLinksPropCommentsType( @@ -935,7 +940,9 @@ class WebhookPullRequestReviewThreadUnresolvedPropThreadPropCommentsItemsType( itself. """ - links: WebhookPullRequestReviewThreadUnresolvedPropThreadPropCommentsItemsPropLinksType + links: ( + WebhookPullRequestReviewThreadUnresolvedPropThreadPropCommentsItemsPropLinksType + ) author_association: Literal[ "COLLABORATOR", "CONTRIBUTOR", diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0710.py b/githubkit/versions/ghec_v2022_11_28/types/group_0710.py index b26089c07..a25ff97ab 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0710.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0710.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -363,8 +362,12 @@ class WebhookPullRequestSynchronizePropPullRequestPropLinksType(TypedDict): commits: WebhookPullRequestSynchronizePropPullRequestPropLinksPropCommitsType html: WebhookPullRequestSynchronizePropPullRequestPropLinksPropHtmlType issue: WebhookPullRequestSynchronizePropPullRequestPropLinksPropIssueType - review_comment: WebhookPullRequestSynchronizePropPullRequestPropLinksPropReviewCommentType - review_comments: WebhookPullRequestSynchronizePropPullRequestPropLinksPropReviewCommentsType + review_comment: ( + WebhookPullRequestSynchronizePropPullRequestPropLinksPropReviewCommentType + ) + review_comments: ( + WebhookPullRequestSynchronizePropPullRequestPropLinksPropReviewCommentsType + ) self_: WebhookPullRequestSynchronizePropPullRequestPropLinksPropSelfType statuses: WebhookPullRequestSynchronizePropPullRequestPropLinksPropStatusesType diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0711.py b/githubkit/versions/ghec_v2022_11_28/types/group_0711.py index ebd137692..e87a9b668 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0711.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0711.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -386,8 +385,12 @@ class WebhookPullRequestUnassignedPropPullRequestPropLinksType(TypedDict): commits: WebhookPullRequestUnassignedPropPullRequestPropLinksPropCommitsType html: WebhookPullRequestUnassignedPropPullRequestPropLinksPropHtmlType issue: WebhookPullRequestUnassignedPropPullRequestPropLinksPropIssueType - review_comment: WebhookPullRequestUnassignedPropPullRequestPropLinksPropReviewCommentType - review_comments: WebhookPullRequestUnassignedPropPullRequestPropLinksPropReviewCommentsType + review_comment: ( + WebhookPullRequestUnassignedPropPullRequestPropLinksPropReviewCommentType + ) + review_comments: ( + WebhookPullRequestUnassignedPropPullRequestPropLinksPropReviewCommentsType + ) self_: WebhookPullRequestUnassignedPropPullRequestPropLinksPropSelfType statuses: WebhookPullRequestUnassignedPropPullRequestPropLinksPropStatusesType diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0712.py b/githubkit/versions/ghec_v2022_11_28/types/group_0712.py index ae09e8b6c..ef1be44df 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0712.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0712.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -368,8 +367,12 @@ class WebhookPullRequestUnlabeledPropPullRequestPropLinksType(TypedDict): commits: WebhookPullRequestUnlabeledPropPullRequestPropLinksPropCommitsType html: WebhookPullRequestUnlabeledPropPullRequestPropLinksPropHtmlType issue: WebhookPullRequestUnlabeledPropPullRequestPropLinksPropIssueType - review_comment: WebhookPullRequestUnlabeledPropPullRequestPropLinksPropReviewCommentType - review_comments: WebhookPullRequestUnlabeledPropPullRequestPropLinksPropReviewCommentsType + review_comment: ( + WebhookPullRequestUnlabeledPropPullRequestPropLinksPropReviewCommentType + ) + review_comments: ( + WebhookPullRequestUnlabeledPropPullRequestPropLinksPropReviewCommentsType + ) self_: WebhookPullRequestUnlabeledPropPullRequestPropLinksPropSelfType statuses: WebhookPullRequestUnlabeledPropPullRequestPropLinksPropStatusesType diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0713.py b/githubkit/versions/ghec_v2022_11_28/types/group_0713.py index b88c54d15..cdb6e1c1e 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0713.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0713.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -355,8 +354,12 @@ class WebhookPullRequestUnlockedPropPullRequestPropLinksType(TypedDict): commits: WebhookPullRequestUnlockedPropPullRequestPropLinksPropCommitsType html: WebhookPullRequestUnlockedPropPullRequestPropLinksPropHtmlType issue: WebhookPullRequestUnlockedPropPullRequestPropLinksPropIssueType - review_comment: WebhookPullRequestUnlockedPropPullRequestPropLinksPropReviewCommentType - review_comments: WebhookPullRequestUnlockedPropPullRequestPropLinksPropReviewCommentsType + review_comment: ( + WebhookPullRequestUnlockedPropPullRequestPropLinksPropReviewCommentType + ) + review_comments: ( + WebhookPullRequestUnlockedPropPullRequestPropLinksPropReviewCommentsType + ) self_: WebhookPullRequestUnlockedPropPullRequestPropLinksPropSelfType statuses: WebhookPullRequestUnlockedPropPullRequestPropLinksPropStatusesType diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0714.py b/githubkit/versions/ghec_v2022_11_28/types/group_0714.py index 0dea2c4ad..862dc0b5a 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0714.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0714.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0715.py b/githubkit/versions/ghec_v2022_11_28/types/group_0715.py index a26761c5a..90f0ecf39 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0715.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0715.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0716.py b/githubkit/versions/ghec_v2022_11_28/types/group_0716.py index 1367c89f0..45cae5e20 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0716.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0716.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0717.py b/githubkit/versions/ghec_v2022_11_28/types/group_0717.py index 5e2d9cd37..e153b38ee 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0717.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0717.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0718.py b/githubkit/versions/ghec_v2022_11_28/types/group_0718.py index a4214d2af..b18615886 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0718.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0718.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0719.py b/githubkit/versions/ghec_v2022_11_28/types/group_0719.py index c7e4b0945..65388d08f 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0719.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0719.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union @@ -30,7 +29,9 @@ class WebhookRegistryPackageUpdatedPropRegistryPackageType(TypedDict): namespace: str owner: WebhookRegistryPackageUpdatedPropRegistryPackagePropOwnerType package_type: str - package_version: WebhookRegistryPackageUpdatedPropRegistryPackagePropPackageVersionType + package_version: ( + WebhookRegistryPackageUpdatedPropRegistryPackagePropPackageVersionType + ) registry: Union[ WebhookRegistryPackageUpdatedPropRegistryPackagePropRegistryType, None ] diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0720.py b/githubkit/versions/ghec_v2022_11_28/types/group_0720.py index a18942c03..78f860dce 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0720.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0720.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union @@ -19,7 +18,9 @@ class WebhookRegistryPackageUpdatedPropRegistryPackagePropPackageVersionType(TypedDict): """WebhookRegistryPackageUpdatedPropRegistryPackagePropPackageVersion""" - author: WebhookRegistryPackageUpdatedPropRegistryPackagePropPackageVersionPropAuthorType + author: ( + WebhookRegistryPackageUpdatedPropRegistryPackagePropPackageVersionPropAuthorType + ) body: str body_html: str created_at: str diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0721.py b/githubkit/versions/ghec_v2022_11_28/types/group_0721.py index 124132cba..78904f8c5 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0721.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0721.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0722.py b/githubkit/versions/ghec_v2022_11_28/types/group_0722.py index 4184658a5..7f114906d 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0722.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0722.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0723.py b/githubkit/versions/ghec_v2022_11_28/types/group_0723.py index b2512379a..5728e0f57 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0723.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0723.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0724.py b/githubkit/versions/ghec_v2022_11_28/types/group_0724.py index 5c0c1841e..983bb78b4 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0724.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0724.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0725.py b/githubkit/versions/ghec_v2022_11_28/types/group_0725.py index 31c9875f2..2729038fb 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0725.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0725.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0726.py b/githubkit/versions/ghec_v2022_11_28/types/group_0726.py index d5fc13419..6e01cd51c 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0726.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0726.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0727.py b/githubkit/versions/ghec_v2022_11_28/types/group_0727.py index b48d0c27d..8fa6e8be1 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0727.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0727.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0728.py b/githubkit/versions/ghec_v2022_11_28/types/group_0728.py index 3b961302b..8e0bd49ed 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0728.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0728.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0729.py b/githubkit/versions/ghec_v2022_11_28/types/group_0729.py index a90c023e2..ebc9260a6 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0729.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0729.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0730.py b/githubkit/versions/ghec_v2022_11_28/types/group_0730.py index a690b5a86..020e8fcfd 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0730.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0730.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0731.py b/githubkit/versions/ghec_v2022_11_28/types/group_0731.py index 905e6609c..d9380c9c5 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0731.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0731.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0732.py b/githubkit/versions/ghec_v2022_11_28/types/group_0732.py index de0741f32..6f37ea926 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0732.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0732.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0733.py b/githubkit/versions/ghec_v2022_11_28/types/group_0733.py index f731c2f0b..f1bc58b17 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0733.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0733.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0734.py b/githubkit/versions/ghec_v2022_11_28/types/group_0734.py index aaa07ba51..90fa9f64d 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0734.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0734.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0735.py b/githubkit/versions/ghec_v2022_11_28/types/group_0735.py index 07a4c9a55..5686bf6dc 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0735.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0735.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0736.py b/githubkit/versions/ghec_v2022_11_28/types/group_0736.py index f19ba73a4..b42f5c267 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0736.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0736.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0737.py b/githubkit/versions/ghec_v2022_11_28/types/group_0737.py index 28b66da33..3014c280b 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0737.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0737.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0738.py b/githubkit/versions/ghec_v2022_11_28/types/group_0738.py index eaf6ebb92..0b85cf4b2 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0738.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0738.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0739.py b/githubkit/versions/ghec_v2022_11_28/types/group_0739.py index 460e75837..84fb9e78d 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0739.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0739.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0740.py b/githubkit/versions/ghec_v2022_11_28/types/group_0740.py index 85271a825..88bb08f33 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0740.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0740.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0741.py b/githubkit/versions/ghec_v2022_11_28/types/group_0741.py index 004e99244..00a1ccdc9 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0741.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0741.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0742.py b/githubkit/versions/ghec_v2022_11_28/types/group_0742.py index caf578534..63a9c51d9 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0742.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0742.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0743.py b/githubkit/versions/ghec_v2022_11_28/types/group_0743.py index 49e1cfaad..ef93d24fa 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0743.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0743.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0744.py b/githubkit/versions/ghec_v2022_11_28/types/group_0744.py index 4de355a49..18f28bde8 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0744.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0744.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0745.py b/githubkit/versions/ghec_v2022_11_28/types/group_0745.py index 9810aafdd..6e687495b 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0745.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0745.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0746.py b/githubkit/versions/ghec_v2022_11_28/types/group_0746.py index 6023941ec..2033f72f0 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0746.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0746.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0747.py b/githubkit/versions/ghec_v2022_11_28/types/group_0747.py index eb8155552..bd3df91fe 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0747.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0747.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0748.py b/githubkit/versions/ghec_v2022_11_28/types/group_0748.py index 66bb72a64..d983abf48 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0748.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0748.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0749.py b/githubkit/versions/ghec_v2022_11_28/types/group_0749.py index 845e5a6e9..9dc0e5596 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0749.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0749.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0750.py b/githubkit/versions/ghec_v2022_11_28/types/group_0750.py index 87002e1e6..462fe3e59 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0750.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0750.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0751.py b/githubkit/versions/ghec_v2022_11_28/types/group_0751.py index 794889134..8dddbbb94 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0751.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0751.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0752.py b/githubkit/versions/ghec_v2022_11_28/types/group_0752.py index 5214dc071..66b8fd1b5 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0752.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0752.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0753.py b/githubkit/versions/ghec_v2022_11_28/types/group_0753.py index adf8a01fb..dc0b511cd 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0753.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0753.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0755.py b/githubkit/versions/ghec_v2022_11_28/types/group_0755.py index 5fd475fed..93c8ee73a 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0755.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0755.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0756.py b/githubkit/versions/ghec_v2022_11_28/types/group_0756.py index c84415ee0..0c7a73457 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0756.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0756.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0757.py b/githubkit/versions/ghec_v2022_11_28/types/group_0757.py index 331cfc956..346d129dd 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0757.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0757.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0758.py b/githubkit/versions/ghec_v2022_11_28/types/group_0758.py index b5f0693d4..1f33fc926 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0758.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0758.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0759.py b/githubkit/versions/ghec_v2022_11_28/types/group_0759.py index a77933605..23761dd90 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0759.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0759.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0760.py b/githubkit/versions/ghec_v2022_11_28/types/group_0760.py index 5aed8d56a..690cd81f8 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0760.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0760.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0761.py b/githubkit/versions/ghec_v2022_11_28/types/group_0761.py index 58971a025..14b1294cc 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0761.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0761.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0762.py b/githubkit/versions/ghec_v2022_11_28/types/group_0762.py index 882549376..600f6f2aa 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0762.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0762.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0763.py b/githubkit/versions/ghec_v2022_11_28/types/group_0763.py index 66d9a4ca2..261e36c8d 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0763.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0763.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0764.py b/githubkit/versions/ghec_v2022_11_28/types/group_0764.py index 38be56935..0a61e68c9 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0764.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0764.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0765.py b/githubkit/versions/ghec_v2022_11_28/types/group_0765.py index 6d9d9fd5e..1da023227 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0765.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0765.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0766.py b/githubkit/versions/ghec_v2022_11_28/types/group_0766.py index 3359feb57..ff8f96a1e 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0766.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0766.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0767.py b/githubkit/versions/ghec_v2022_11_28/types/group_0767.py index c851211b3..b5b5d093d 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0767.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0767.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0768.py b/githubkit/versions/ghec_v2022_11_28/types/group_0768.py index b2b2ba6a8..4bf422658 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0768.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0768.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0769.py b/githubkit/versions/ghec_v2022_11_28/types/group_0769.py index 92a4dc5db..b17152345 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0769.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0769.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0770.py b/githubkit/versions/ghec_v2022_11_28/types/group_0770.py index f64008d52..d3705134d 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0770.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0770.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0771.py b/githubkit/versions/ghec_v2022_11_28/types/group_0771.py index 41466ce7c..d484d78bb 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0771.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0771.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0772.py b/githubkit/versions/ghec_v2022_11_28/types/group_0772.py index d208a2a68..1fc474bf1 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0772.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0772.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0773.py b/githubkit/versions/ghec_v2022_11_28/types/group_0773.py index 667ecf80d..6ac0078f7 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0773.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0773.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0774.py b/githubkit/versions/ghec_v2022_11_28/types/group_0774.py index 01edd386b..c9db80249 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0774.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0774.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0775.py b/githubkit/versions/ghec_v2022_11_28/types/group_0775.py index 87e0a3c81..405fbd0c5 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0775.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0775.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0776.py b/githubkit/versions/ghec_v2022_11_28/types/group_0776.py index 615bb5d81..50e77c908 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0776.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0776.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0777.py b/githubkit/versions/ghec_v2022_11_28/types/group_0777.py index 067b5f529..1c3870dca 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0777.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0777.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0778.py b/githubkit/versions/ghec_v2022_11_28/types/group_0778.py index c188b2031..e0f681505 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0778.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0778.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0779.py b/githubkit/versions/ghec_v2022_11_28/types/group_0779.py index 9f8543468..57e879999 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0779.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0779.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0780.py b/githubkit/versions/ghec_v2022_11_28/types/group_0780.py index 26b0ed007..f5be6c3cd 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0780.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0780.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0781.py b/githubkit/versions/ghec_v2022_11_28/types/group_0781.py index 5bb7bd610..25e875473 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0781.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0781.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0782.py b/githubkit/versions/ghec_v2022_11_28/types/group_0782.py index ff6c8acc7..46b01f28d 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0782.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0782.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0783.py b/githubkit/versions/ghec_v2022_11_28/types/group_0783.py index 2005e6d29..ea276b437 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0783.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0783.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0784.py b/githubkit/versions/ghec_v2022_11_28/types/group_0784.py index b5f2e60dd..7bc5f917d 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0784.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0784.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0785.py b/githubkit/versions/ghec_v2022_11_28/types/group_0785.py index 5db510774..707171802 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0785.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0785.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0786.py b/githubkit/versions/ghec_v2022_11_28/types/group_0786.py index 153fad265..b72123385 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0786.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0786.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0787.py b/githubkit/versions/ghec_v2022_11_28/types/group_0787.py index 0f903c1b8..6220dc3fd 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0787.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0787.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0788.py b/githubkit/versions/ghec_v2022_11_28/types/group_0788.py index a3791cb6d..c1d127c0e 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0788.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0788.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0789.py b/githubkit/versions/ghec_v2022_11_28/types/group_0789.py index 7feb1d882..8e517fbfc 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0789.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0789.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0790.py b/githubkit/versions/ghec_v2022_11_28/types/group_0790.py index 34fef4623..270a31b5a 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0790.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0790.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0791.py b/githubkit/versions/ghec_v2022_11_28/types/group_0791.py index 5ffb557c2..ebe11b85d 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0791.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0791.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0792.py b/githubkit/versions/ghec_v2022_11_28/types/group_0792.py index d147797d6..4c3c84e39 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0792.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0792.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0793.py b/githubkit/versions/ghec_v2022_11_28/types/group_0793.py index 48cf89757..d5c747d6f 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0793.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0793.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0794.py b/githubkit/versions/ghec_v2022_11_28/types/group_0794.py index 9f2b6bc99..a260daab4 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0794.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0794.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0795.py b/githubkit/versions/ghec_v2022_11_28/types/group_0795.py index c57bd34e2..9482ffa98 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0795.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0795.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0796.py b/githubkit/versions/ghec_v2022_11_28/types/group_0796.py index 3239b4c2c..610466abc 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0796.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0796.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0797.py b/githubkit/versions/ghec_v2022_11_28/types/group_0797.py index 7e02fb74a..aabdc158b 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0797.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0797.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0798.py b/githubkit/versions/ghec_v2022_11_28/types/group_0798.py index 1b41e5945..b6a464121 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0798.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0798.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0799.py b/githubkit/versions/ghec_v2022_11_28/types/group_0799.py index ac419cc3e..2024fe15d 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0799.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0799.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0800.py b/githubkit/versions/ghec_v2022_11_28/types/group_0800.py index 8c2dc3088..ce9c33c3c 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0800.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0800.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0801.py b/githubkit/versions/ghec_v2022_11_28/types/group_0801.py index d9ed99023..1b2b41a57 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0801.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0801.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0802.py b/githubkit/versions/ghec_v2022_11_28/types/group_0802.py index d0bf9f28b..531b0200f 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0802.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0802.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0803.py b/githubkit/versions/ghec_v2022_11_28/types/group_0803.py index c2c313194..d7359a570 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0803.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0803.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0804.py b/githubkit/versions/ghec_v2022_11_28/types/group_0804.py index 3266d3cd4..f2596f10a 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0804.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0804.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0805.py b/githubkit/versions/ghec_v2022_11_28/types/group_0805.py index ef2c5e620..d0ed13edc 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0805.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0805.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0806.py b/githubkit/versions/ghec_v2022_11_28/types/group_0806.py index 038149faf..700df4814 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0806.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0806.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0807.py b/githubkit/versions/ghec_v2022_11_28/types/group_0807.py index 2121d716b..4dbc1df67 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0807.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0807.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0808.py b/githubkit/versions/ghec_v2022_11_28/types/group_0808.py index 9950edc3d..76f0c62ad 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0808.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0808.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0809.py b/githubkit/versions/ghec_v2022_11_28/types/group_0809.py index 54195208a..830c46a8b 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0809.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0809.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0810.py b/githubkit/versions/ghec_v2022_11_28/types/group_0810.py index 41c8ff4b0..f610374fb 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0810.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0810.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0811.py b/githubkit/versions/ghec_v2022_11_28/types/group_0811.py index c01a2b47c..257d22185 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0811.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0811.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0812.py b/githubkit/versions/ghec_v2022_11_28/types/group_0812.py index 06f44cff8..aab36d9f8 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0812.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0812.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0813.py b/githubkit/versions/ghec_v2022_11_28/types/group_0813.py index ee5dd1e8a..19cbee4e2 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0813.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0813.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0814.py b/githubkit/versions/ghec_v2022_11_28/types/group_0814.py index d42541f1c..983acb648 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0814.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0814.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0815.py b/githubkit/versions/ghec_v2022_11_28/types/group_0815.py index 318e06c19..6d8f6e0a2 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0815.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0815.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0816.py b/githubkit/versions/ghec_v2022_11_28/types/group_0816.py index ca3801297..b4e2a6c51 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0816.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0816.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0817.py b/githubkit/versions/ghec_v2022_11_28/types/group_0817.py index fdb23257d..54848ad34 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0817.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0817.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0818.py b/githubkit/versions/ghec_v2022_11_28/types/group_0818.py index d48131ed3..1dccbc1b0 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0818.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0818.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0819.py b/githubkit/versions/ghec_v2022_11_28/types/group_0819.py index 8f5fc29f4..c220c03ca 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0819.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0819.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0820.py b/githubkit/versions/ghec_v2022_11_28/types/group_0820.py index bbaf4086c..749d29b10 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0820.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0820.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0821.py b/githubkit/versions/ghec_v2022_11_28/types/group_0821.py index bdfaee93d..35c65ab1c 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0821.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0821.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0822.py b/githubkit/versions/ghec_v2022_11_28/types/group_0822.py index ed087b383..2b2b072f9 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0822.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0822.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0823.py b/githubkit/versions/ghec_v2022_11_28/types/group_0823.py index 848b5d4d7..ddbeca3b7 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0823.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0823.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0824.py b/githubkit/versions/ghec_v2022_11_28/types/group_0824.py index 0e64b06b1..cacfe5363 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0824.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0824.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0825.py b/githubkit/versions/ghec_v2022_11_28/types/group_0825.py index 80ba52b2b..8ea8b11cc 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0825.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0825.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0826.py b/githubkit/versions/ghec_v2022_11_28/types/group_0826.py index 8e5eb293c..b2190c31c 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0826.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0826.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0827.py b/githubkit/versions/ghec_v2022_11_28/types/group_0827.py index 23f40c6e3..75b561d5f 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0827.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0827.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0828.py b/githubkit/versions/ghec_v2022_11_28/types/group_0828.py index 7a68aa431..342fee780 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0828.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0828.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0829.py b/githubkit/versions/ghec_v2022_11_28/types/group_0829.py index 05e7a55a1..058da261a 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0829.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0829.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0830.py b/githubkit/versions/ghec_v2022_11_28/types/group_0830.py index 523dae81e..e83cdb3bd 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0830.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0830.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0831.py b/githubkit/versions/ghec_v2022_11_28/types/group_0831.py index b227e6b04..0eb2657aa 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0831.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0831.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0832.py b/githubkit/versions/ghec_v2022_11_28/types/group_0832.py index 646ae30ab..e8ea67ce9 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0832.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0832.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0833.py b/githubkit/versions/ghec_v2022_11_28/types/group_0833.py index 43e618bcf..87c26731d 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0833.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0833.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -114,7 +113,9 @@ class WebhookWorkflowRunCompletedPropWorkflowRunMergedHeadCommitType(TypedDict): """WebhookWorkflowRunCompletedPropWorkflowRunMergedHeadCommit""" author: WebhookWorkflowRunCompletedPropWorkflowRunMergedHeadCommitPropAuthorType - committer: WebhookWorkflowRunCompletedPropWorkflowRunMergedHeadCommitPropCommitterType + committer: ( + WebhookWorkflowRunCompletedPropWorkflowRunMergedHeadCommitPropCommitterType + ) id: str message: str timestamp: str diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0834.py b/githubkit/versions/ghec_v2022_11_28/types/group_0834.py index 40f53c1bc..df8218ec3 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0834.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0834.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -48,7 +47,9 @@ class WebhookWorkflowRunCompletedPropWorkflowRunAllof0Type(TypedDict): event: str head_branch: Union[str, None] head_commit: WebhookWorkflowRunCompletedPropWorkflowRunAllof0PropHeadCommitType - head_repository: WebhookWorkflowRunCompletedPropWorkflowRunAllof0PropHeadRepositoryType + head_repository: ( + WebhookWorkflowRunCompletedPropWorkflowRunAllof0PropHeadRepositoryType + ) head_sha: str html_url: str id: int @@ -144,7 +145,9 @@ class WebhookWorkflowRunCompletedPropWorkflowRunAllof0PropHeadCommitType(TypedDi """SimpleCommit""" author: WebhookWorkflowRunCompletedPropWorkflowRunAllof0PropHeadCommitPropAuthorType - committer: WebhookWorkflowRunCompletedPropWorkflowRunAllof0PropHeadCommitPropCommitterType + committer: ( + WebhookWorkflowRunCompletedPropWorkflowRunAllof0PropHeadCommitPropCommitterType + ) id: str message: str timestamp: str diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0835.py b/githubkit/versions/ghec_v2022_11_28/types/group_0835.py index 7a92776b5..28811a7d7 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0835.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0835.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0836.py b/githubkit/versions/ghec_v2022_11_28/types/group_0836.py index 671a22e9a..2701a8c69 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0836.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0836.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0837.py b/githubkit/versions/ghec_v2022_11_28/types/group_0837.py index eca6121fb..dff2a3e5f 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0837.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0837.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0838.py b/githubkit/versions/ghec_v2022_11_28/types/group_0838.py index 9fb38ffb6..e6b56bf2a 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0838.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0838.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0839.py b/githubkit/versions/ghec_v2022_11_28/types/group_0839.py index 84738200b..d347d46d4 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0839.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0839.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0840.py b/githubkit/versions/ghec_v2022_11_28/types/group_0840.py index 65e28bea1..7f1570bfb 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0840.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0840.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0841.py b/githubkit/versions/ghec_v2022_11_28/types/group_0841.py index 40acb3393..30847f9b5 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0841.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0841.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -78,7 +77,9 @@ class WebhookWorkflowRunInProgressPropWorkflowRunType(TypedDict): run_number: int run_started_at: datetime status: Literal["requested", "in_progress", "completed", "queued", "pending"] - triggering_actor: WebhookWorkflowRunInProgressPropWorkflowRunMergedTriggeringActorType + triggering_actor: ( + WebhookWorkflowRunInProgressPropWorkflowRunMergedTriggeringActorType + ) updated_at: datetime url: str workflow_id: int @@ -115,7 +116,9 @@ class WebhookWorkflowRunInProgressPropWorkflowRunMergedHeadCommitType(TypedDict) """WebhookWorkflowRunInProgressPropWorkflowRunMergedHeadCommit""" author: WebhookWorkflowRunInProgressPropWorkflowRunMergedHeadCommitPropAuthorType - committer: WebhookWorkflowRunInProgressPropWorkflowRunMergedHeadCommitPropCommitterType + committer: ( + WebhookWorkflowRunInProgressPropWorkflowRunMergedHeadCommitPropCommitterType + ) id: str message: str timestamp: str diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0842.py b/githubkit/versions/ghec_v2022_11_28/types/group_0842.py index b94fb9d1b..be144f916 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0842.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0842.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -48,7 +47,9 @@ class WebhookWorkflowRunInProgressPropWorkflowRunAllof0Type(TypedDict): event: str head_branch: Union[str, None] head_commit: WebhookWorkflowRunInProgressPropWorkflowRunAllof0PropHeadCommitType - head_repository: WebhookWorkflowRunInProgressPropWorkflowRunAllof0PropHeadRepositoryType + head_repository: ( + WebhookWorkflowRunInProgressPropWorkflowRunAllof0PropHeadRepositoryType + ) head_sha: str html_url: str id: int @@ -141,8 +142,12 @@ class WebhookWorkflowRunInProgressPropWorkflowRunAllof0PropTriggeringActorType( class WebhookWorkflowRunInProgressPropWorkflowRunAllof0PropHeadCommitType(TypedDict): """SimpleCommit""" - author: WebhookWorkflowRunInProgressPropWorkflowRunAllof0PropHeadCommitPropAuthorType - committer: WebhookWorkflowRunInProgressPropWorkflowRunAllof0PropHeadCommitPropCommitterType + author: ( + WebhookWorkflowRunInProgressPropWorkflowRunAllof0PropHeadCommitPropAuthorType + ) + committer: ( + WebhookWorkflowRunInProgressPropWorkflowRunAllof0PropHeadCommitPropCommitterType + ) id: str message: str timestamp: str diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0843.py b/githubkit/versions/ghec_v2022_11_28/types/group_0843.py index e484bd578..5630095c5 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0843.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0843.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0844.py b/githubkit/versions/ghec_v2022_11_28/types/group_0844.py index a8847c5fd..7f4dd1e39 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0844.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0844.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0845.py b/githubkit/versions/ghec_v2022_11_28/types/group_0845.py index fc96d5dab..3f28dd082 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0845.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0845.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0846.py b/githubkit/versions/ghec_v2022_11_28/types/group_0846.py index 16fc47e3f..d75afe787 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0846.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0846.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0847.py b/githubkit/versions/ghec_v2022_11_28/types/group_0847.py index e33898ce7..bbab77020 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0847.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0847.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0848.py b/githubkit/versions/ghec_v2022_11_28/types/group_0848.py index 6aa28213e..8b3f68f70 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0848.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0848.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0849.py b/githubkit/versions/ghec_v2022_11_28/types/group_0849.py index b811dec0a..136b8f69e 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0849.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0849.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0850.py b/githubkit/versions/ghec_v2022_11_28/types/group_0850.py index a72e9853f..528a915b7 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0850.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0850.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0851.py b/githubkit/versions/ghec_v2022_11_28/types/group_0851.py index 216b03eaf..8c1c8c418 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0851.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0851.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0852.py b/githubkit/versions/ghec_v2022_11_28/types/group_0852.py index 2420f7122..24eb9bac1 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0852.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0852.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0853.py b/githubkit/versions/ghec_v2022_11_28/types/group_0853.py index e702daad9..02bda8c69 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0853.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0853.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0854.py b/githubkit/versions/ghec_v2022_11_28/types/group_0854.py index b9fe3cde9..fad60868e 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0854.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0854.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0855.py b/githubkit/versions/ghec_v2022_11_28/types/group_0855.py index 356c41967..c0bad1ae1 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0855.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0855.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0856.py b/githubkit/versions/ghec_v2022_11_28/types/group_0856.py index fc515f81e..8a68cb8df 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0856.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0856.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0857.py b/githubkit/versions/ghec_v2022_11_28/types/group_0857.py index d777b3a1c..8e0b6ce68 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0857.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0857.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0858.py b/githubkit/versions/ghec_v2022_11_28/types/group_0858.py index cf3bffe39..9af931f5d 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0858.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0858.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0859.py b/githubkit/versions/ghec_v2022_11_28/types/group_0859.py index af8c92abd..54e9d814e 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0859.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0859.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0860.py b/githubkit/versions/ghec_v2022_11_28/types/group_0860.py index 2f7fe140d..ed4e3fa56 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0860.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0860.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0861.py b/githubkit/versions/ghec_v2022_11_28/types/group_0861.py index 1a1f79a2e..ee2c6552e 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0861.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0861.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0862.py b/githubkit/versions/ghec_v2022_11_28/types/group_0862.py index 0e0cf2890..988167f7a 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0862.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0862.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0863.py b/githubkit/versions/ghec_v2022_11_28/types/group_0863.py index ab8abd216..dee414f38 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0863.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0863.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0864.py b/githubkit/versions/ghec_v2022_11_28/types/group_0864.py index 52baec113..7a505c29e 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0864.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0864.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0865.py b/githubkit/versions/ghec_v2022_11_28/types/group_0865.py index 77d3c3e13..09b306237 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0865.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0865.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0866.py b/githubkit/versions/ghec_v2022_11_28/types/group_0866.py index f111bdbd7..573b9ac36 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0866.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0866.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0867.py b/githubkit/versions/ghec_v2022_11_28/types/group_0867.py index b0a57d22f..12e8f5a3f 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0867.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0867.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0868.py b/githubkit/versions/ghec_v2022_11_28/types/group_0868.py index c7e19ef53..67b63c8cd 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0868.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0868.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0869.py b/githubkit/versions/ghec_v2022_11_28/types/group_0869.py index 22eb0bff8..9a8a59ba8 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0869.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0869.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0870.py b/githubkit/versions/ghec_v2022_11_28/types/group_0870.py index c914668fd..d71afc412 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0870.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0870.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0871.py b/githubkit/versions/ghec_v2022_11_28/types/group_0871.py index d54908f29..94482eaad 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0871.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0871.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0872.py b/githubkit/versions/ghec_v2022_11_28/types/group_0872.py index 914fc5584..fc0cc2bd6 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0872.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0872.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0873.py b/githubkit/versions/ghec_v2022_11_28/types/group_0873.py index 3dd33986a..502c3d741 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0873.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0873.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0874.py b/githubkit/versions/ghec_v2022_11_28/types/group_0874.py index c79f6e769..002b112a6 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0874.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0874.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0875.py b/githubkit/versions/ghec_v2022_11_28/types/group_0875.py index 4c535b4c9..7e04c23b0 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0875.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0875.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0876.py b/githubkit/versions/ghec_v2022_11_28/types/group_0876.py index 700569dc5..d93d5a677 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0876.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0876.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0877.py b/githubkit/versions/ghec_v2022_11_28/types/group_0877.py index 2330ce852..f260004a7 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0877.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0877.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0878.py b/githubkit/versions/ghec_v2022_11_28/types/group_0878.py index 2570acc66..a1449d86c 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0878.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0878.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0879.py b/githubkit/versions/ghec_v2022_11_28/types/group_0879.py index c6e2f9c91..8f9809a85 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0879.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0879.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0880.py b/githubkit/versions/ghec_v2022_11_28/types/group_0880.py index b18636bcd..c1d56fb20 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0880.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0880.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0881.py b/githubkit/versions/ghec_v2022_11_28/types/group_0881.py index 2117a9827..320e5859f 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0881.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0881.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0882.py b/githubkit/versions/ghec_v2022_11_28/types/group_0882.py index af75e6317..054661ac7 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0882.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0882.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0883.py b/githubkit/versions/ghec_v2022_11_28/types/group_0883.py index c4702de9d..39ac46ae2 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0883.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0883.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0884.py b/githubkit/versions/ghec_v2022_11_28/types/group_0884.py index 4ee58c5f8..10e6b69c7 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0884.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0884.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0885.py b/githubkit/versions/ghec_v2022_11_28/types/group_0885.py index e229b60e8..0e16da280 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0885.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0885.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0886.py b/githubkit/versions/ghec_v2022_11_28/types/group_0886.py index c6a74d3e5..247364e10 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0886.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0886.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0887.py b/githubkit/versions/ghec_v2022_11_28/types/group_0887.py index 908d0e4d6..b40e83f9e 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0887.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0887.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0888.py b/githubkit/versions/ghec_v2022_11_28/types/group_0888.py index 8c6984201..36e560089 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0888.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0888.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0889.py b/githubkit/versions/ghec_v2022_11_28/types/group_0889.py index c0531787f..d14e27254 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0889.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0889.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0890.py b/githubkit/versions/ghec_v2022_11_28/types/group_0890.py index f95320ade..6a192d917 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0890.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0890.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0891.py b/githubkit/versions/ghec_v2022_11_28/types/group_0891.py index d7218ea75..118efc90d 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0891.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0891.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0892.py b/githubkit/versions/ghec_v2022_11_28/types/group_0892.py index 8fe18f9c6..00d36424e 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0892.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0892.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0893.py b/githubkit/versions/ghec_v2022_11_28/types/group_0893.py index 854b9dce9..057fcec7d 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0893.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0893.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0894.py b/githubkit/versions/ghec_v2022_11_28/types/group_0894.py index fc223db7d..dbf4b3831 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0894.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0894.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0895.py b/githubkit/versions/ghec_v2022_11_28/types/group_0895.py index 93c89909d..0a9b8d49f 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0895.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0895.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0896.py b/githubkit/versions/ghec_v2022_11_28/types/group_0896.py index ef39baab6..44b5ee2bd 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0896.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0896.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0897.py b/githubkit/versions/ghec_v2022_11_28/types/group_0897.py index 578521331..98ce02d41 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0897.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0897.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0898.py b/githubkit/versions/ghec_v2022_11_28/types/group_0898.py index ee52b58cd..21a8bd2c8 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0898.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0898.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0899.py b/githubkit/versions/ghec_v2022_11_28/types/group_0899.py index 031e8a2bd..8d8bb2860 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0899.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0899.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0900.py b/githubkit/versions/ghec_v2022_11_28/types/group_0900.py index 862abe804..f661ee239 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0900.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0900.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0901.py b/githubkit/versions/ghec_v2022_11_28/types/group_0901.py index 652fc7cdd..924099c88 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0901.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0901.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0902.py b/githubkit/versions/ghec_v2022_11_28/types/group_0902.py index da75ac3f5..d0bd67035 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0902.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0902.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0903.py b/githubkit/versions/ghec_v2022_11_28/types/group_0903.py index ac6a3b1cd..a113cf382 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0903.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0903.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0904.py b/githubkit/versions/ghec_v2022_11_28/types/group_0904.py index 3dcfca7b8..eca351801 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0904.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0904.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0905.py b/githubkit/versions/ghec_v2022_11_28/types/group_0905.py index 6a275ec26..501b19b50 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0905.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0905.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0906.py b/githubkit/versions/ghec_v2022_11_28/types/group_0906.py index bc1532441..a31968bb1 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0906.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0906.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0907.py b/githubkit/versions/ghec_v2022_11_28/types/group_0907.py index 324a6e6f4..2e71259c6 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0907.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0907.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0908.py b/githubkit/versions/ghec_v2022_11_28/types/group_0908.py index 3d27187a5..011a4a449 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0908.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0908.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0909.py b/githubkit/versions/ghec_v2022_11_28/types/group_0909.py index 31ff1b6ba..bace6b655 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0909.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0909.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0910.py b/githubkit/versions/ghec_v2022_11_28/types/group_0910.py index 4aec7347a..6323f1787 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0910.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0910.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0911.py b/githubkit/versions/ghec_v2022_11_28/types/group_0911.py index d570dab8a..669cd0638 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0911.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0911.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0912.py b/githubkit/versions/ghec_v2022_11_28/types/group_0912.py index d7605228c..bf80fe0df 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0912.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0912.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0913.py b/githubkit/versions/ghec_v2022_11_28/types/group_0913.py index e1a707287..dd70527c5 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0913.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0913.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0914.py b/githubkit/versions/ghec_v2022_11_28/types/group_0914.py index 02844fabb..d5461732e 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0914.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0914.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0915.py b/githubkit/versions/ghec_v2022_11_28/types/group_0915.py index ad8188282..7038b96c8 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0915.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0915.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0916.py b/githubkit/versions/ghec_v2022_11_28/types/group_0916.py index 1433f3051..864991692 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0916.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0916.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0917.py b/githubkit/versions/ghec_v2022_11_28/types/group_0917.py index c456f7f30..11890a4e9 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0917.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0917.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0918.py b/githubkit/versions/ghec_v2022_11_28/types/group_0918.py index 860deb451..ecb5a7ff7 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0918.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0918.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0919.py b/githubkit/versions/ghec_v2022_11_28/types/group_0919.py index cd937cbb8..343148794 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0919.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0919.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0920.py b/githubkit/versions/ghec_v2022_11_28/types/group_0920.py index 698e384d0..9f9f2b273 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0920.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0920.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0921.py b/githubkit/versions/ghec_v2022_11_28/types/group_0921.py index 70a93d119..df9701450 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0921.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0921.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0922.py b/githubkit/versions/ghec_v2022_11_28/types/group_0922.py index 9324958dc..65e18be0b 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0922.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0922.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0923.py b/githubkit/versions/ghec_v2022_11_28/types/group_0923.py index 838545650..bc6a55ac2 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0923.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0923.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0924.py b/githubkit/versions/ghec_v2022_11_28/types/group_0924.py index 8e82cd5aa..f5fc4cf2b 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0924.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0924.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0925.py b/githubkit/versions/ghec_v2022_11_28/types/group_0925.py index 0283e93b3..7d801be5e 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0925.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0925.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0926.py b/githubkit/versions/ghec_v2022_11_28/types/group_0926.py index 050c21592..ad2745b9f 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0926.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0926.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0927.py b/githubkit/versions/ghec_v2022_11_28/types/group_0927.py index 6c2b679af..2c06d525c 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0927.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0927.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0928.py b/githubkit/versions/ghec_v2022_11_28/types/group_0928.py index ee9ce9269..d2bc78059 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0928.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0928.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0929.py b/githubkit/versions/ghec_v2022_11_28/types/group_0929.py index 53f9e5106..c59c644d1 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0929.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0929.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0930.py b/githubkit/versions/ghec_v2022_11_28/types/group_0930.py index 217d4574c..b06b1b236 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0930.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0930.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0931.py b/githubkit/versions/ghec_v2022_11_28/types/group_0931.py index 4788504ff..146387615 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0931.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0931.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0932.py b/githubkit/versions/ghec_v2022_11_28/types/group_0932.py index 0e65e1e9e..099772a96 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0932.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0932.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0933.py b/githubkit/versions/ghec_v2022_11_28/types/group_0933.py index d201c082e..a4754484f 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0933.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0933.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0934.py b/githubkit/versions/ghec_v2022_11_28/types/group_0934.py index 5effab034..eb6772b44 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0934.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0934.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0935.py b/githubkit/versions/ghec_v2022_11_28/types/group_0935.py index e55b78a3b..a60a75348 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0935.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0935.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0936.py b/githubkit/versions/ghec_v2022_11_28/types/group_0936.py index 38cdb8581..20b1891ca 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0936.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0936.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0937.py b/githubkit/versions/ghec_v2022_11_28/types/group_0937.py index 1b469291b..122ba557e 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0937.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0937.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0938.py b/githubkit/versions/ghec_v2022_11_28/types/group_0938.py index 35bc54d9d..11e886a2e 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0938.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0938.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0939.py b/githubkit/versions/ghec_v2022_11_28/types/group_0939.py index cf7cd1cd1..7e5067447 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0939.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0939.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0940.py b/githubkit/versions/ghec_v2022_11_28/types/group_0940.py index 79f46921c..6cb3bd343 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0940.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0940.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0941.py b/githubkit/versions/ghec_v2022_11_28/types/group_0941.py index 884165801..5916d7d10 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0941.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0941.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0942.py b/githubkit/versions/ghec_v2022_11_28/types/group_0942.py index 16c7a61b8..53e71b67a 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0942.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0942.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0943.py b/githubkit/versions/ghec_v2022_11_28/types/group_0943.py index 2140d1c67..70575aa9b 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0943.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0943.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0944.py b/githubkit/versions/ghec_v2022_11_28/types/group_0944.py index cee5ba215..8a9c0bc90 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0944.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0944.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0945.py b/githubkit/versions/ghec_v2022_11_28/types/group_0945.py index 1f67277db..f222d73fb 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0945.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0945.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0946.py b/githubkit/versions/ghec_v2022_11_28/types/group_0946.py index 7b5f2aba3..174eddcfe 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0946.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0946.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0947.py b/githubkit/versions/ghec_v2022_11_28/types/group_0947.py index f177c275e..7b35bcb3e 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0947.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0947.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0948.py b/githubkit/versions/ghec_v2022_11_28/types/group_0948.py index 78d449430..76bef7987 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0948.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0948.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0949.py b/githubkit/versions/ghec_v2022_11_28/types/group_0949.py index 6f6ef9908..5de4170f2 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0949.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0949.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0950.py b/githubkit/versions/ghec_v2022_11_28/types/group_0950.py index 696320087..c6b448fef 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0950.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0950.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0951.py b/githubkit/versions/ghec_v2022_11_28/types/group_0951.py index 70fdbf3e1..606354a4b 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0951.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0951.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0952.py b/githubkit/versions/ghec_v2022_11_28/types/group_0952.py index 9e5bb7e69..4fc23e50a 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0952.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0952.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0953.py b/githubkit/versions/ghec_v2022_11_28/types/group_0953.py index ecbb7bc2c..23297838b 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0953.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0953.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0954.py b/githubkit/versions/ghec_v2022_11_28/types/group_0954.py index ff2f440ae..32c37cd97 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0954.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0954.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0955.py b/githubkit/versions/ghec_v2022_11_28/types/group_0955.py index c034ebbf7..afad09a25 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0955.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0955.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0956.py b/githubkit/versions/ghec_v2022_11_28/types/group_0956.py index 620a1ba0a..604d2b1ba 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0956.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0956.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0957.py b/githubkit/versions/ghec_v2022_11_28/types/group_0957.py index d4c68d4d8..cf991e210 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0957.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0957.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0958.py b/githubkit/versions/ghec_v2022_11_28/types/group_0958.py index 12b6475c4..5669d7dd3 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0958.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0958.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0959.py b/githubkit/versions/ghec_v2022_11_28/types/group_0959.py index b3d07a00d..4f19ca86e 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0959.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0959.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0960.py b/githubkit/versions/ghec_v2022_11_28/types/group_0960.py index 7dabff681..ee474cb50 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0960.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0960.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0961.py b/githubkit/versions/ghec_v2022_11_28/types/group_0961.py index 0e11a3415..d785671fa 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0961.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0961.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0962.py b/githubkit/versions/ghec_v2022_11_28/types/group_0962.py index 9d7055873..2bfa5cbd0 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0962.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0962.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0963.py b/githubkit/versions/ghec_v2022_11_28/types/group_0963.py index 6b777f694..19f0b0ccd 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0963.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0963.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0964.py b/githubkit/versions/ghec_v2022_11_28/types/group_0964.py index 097f7dfcb..81e2f4f67 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0964.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0964.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0965.py b/githubkit/versions/ghec_v2022_11_28/types/group_0965.py index 16c90dda0..555845d86 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0965.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0965.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0966.py b/githubkit/versions/ghec_v2022_11_28/types/group_0966.py index 1cab94140..a05290583 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0966.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0966.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0967.py b/githubkit/versions/ghec_v2022_11_28/types/group_0967.py index ce8ca280f..a6b974137 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0967.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0967.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0968.py b/githubkit/versions/ghec_v2022_11_28/types/group_0968.py index 0e4dd09e2..937b98f91 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0968.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0968.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0969.py b/githubkit/versions/ghec_v2022_11_28/types/group_0969.py index 5d4d35390..c71526f64 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0969.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0969.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0970.py b/githubkit/versions/ghec_v2022_11_28/types/group_0970.py index 071f7e5d3..2c9744c1c 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0970.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0970.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0971.py b/githubkit/versions/ghec_v2022_11_28/types/group_0971.py index c491612dd..3551630af 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0971.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0971.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0972.py b/githubkit/versions/ghec_v2022_11_28/types/group_0972.py index d80ae424e..4e75e8844 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0972.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0972.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0973.py b/githubkit/versions/ghec_v2022_11_28/types/group_0973.py index 713c37d04..42d481609 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0973.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0973.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0974.py b/githubkit/versions/ghec_v2022_11_28/types/group_0974.py index 92851f188..0851e1500 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0974.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0974.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0975.py b/githubkit/versions/ghec_v2022_11_28/types/group_0975.py index a719f5fcc..be0b0a638 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0975.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0975.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0976.py b/githubkit/versions/ghec_v2022_11_28/types/group_0976.py index 9fb26dff4..5ef349fe1 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0976.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0976.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0977.py b/githubkit/versions/ghec_v2022_11_28/types/group_0977.py index 3dd4b096c..90b8767cf 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0977.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0977.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0978.py b/githubkit/versions/ghec_v2022_11_28/types/group_0978.py index 7b3411c89..201f880aa 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0978.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0978.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0979.py b/githubkit/versions/ghec_v2022_11_28/types/group_0979.py index aab72785e..6ae64aa6a 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0979.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0979.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0980.py b/githubkit/versions/ghec_v2022_11_28/types/group_0980.py index ec162004a..7c136f63a 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0980.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0980.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0981.py b/githubkit/versions/ghec_v2022_11_28/types/group_0981.py index 8dccc2af0..dd0f1fcf5 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0981.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0981.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0982.py b/githubkit/versions/ghec_v2022_11_28/types/group_0982.py index 308b5aec6..b4b6ae8c8 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0982.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0982.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0983.py b/githubkit/versions/ghec_v2022_11_28/types/group_0983.py index 257f1c5f4..62ebaaaef 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0983.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0983.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0984.py b/githubkit/versions/ghec_v2022_11_28/types/group_0984.py index 8a1184658..1fdc1bf2e 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0984.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0984.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0985.py b/githubkit/versions/ghec_v2022_11_28/types/group_0985.py index 7c0d38880..93c271e2e 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0985.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0985.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0986.py b/githubkit/versions/ghec_v2022_11_28/types/group_0986.py index 5561f2247..ff00e5f62 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0986.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0986.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0987.py b/githubkit/versions/ghec_v2022_11_28/types/group_0987.py index bbef99611..1eee63273 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0987.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0987.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0988.py b/githubkit/versions/ghec_v2022_11_28/types/group_0988.py index 8f49796e9..7df563c61 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0988.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0988.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0989.py b/githubkit/versions/ghec_v2022_11_28/types/group_0989.py index a32a7a11e..9109dd1f5 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0989.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0989.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0990.py b/githubkit/versions/ghec_v2022_11_28/types/group_0990.py index 1470b8065..c0a6113f3 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0990.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0990.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0991.py b/githubkit/versions/ghec_v2022_11_28/types/group_0991.py index 704571160..86724eccf 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0991.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0991.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0992.py b/githubkit/versions/ghec_v2022_11_28/types/group_0992.py index 84ba5f1f3..42de766b0 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0992.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0992.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0993.py b/githubkit/versions/ghec_v2022_11_28/types/group_0993.py index 6f2af9bcc..8c02d8953 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0993.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0993.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0994.py b/githubkit/versions/ghec_v2022_11_28/types/group_0994.py index c7a7e149a..f63d55222 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0994.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0994.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0995.py b/githubkit/versions/ghec_v2022_11_28/types/group_0995.py index bd151b263..0d09bf2be 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0995.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0995.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0996.py b/githubkit/versions/ghec_v2022_11_28/types/group_0996.py index dccdf7750..943ee8298 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0996.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0996.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0997.py b/githubkit/versions/ghec_v2022_11_28/types/group_0997.py index bf1cba7d4..2956c520b 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0997.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0997.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0998.py b/githubkit/versions/ghec_v2022_11_28/types/group_0998.py index 96fd7cd22..47a8c99be 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0998.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0998.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0999.py b/githubkit/versions/ghec_v2022_11_28/types/group_0999.py index bd0bda622..515a56143 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0999.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_0999.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1000.py b/githubkit/versions/ghec_v2022_11_28/types/group_1000.py index b0a6cf878..086058a3d 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1000.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1000.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1001.py b/githubkit/versions/ghec_v2022_11_28/types/group_1001.py index cc559d5aa..a82dcbc99 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1001.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1001.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1002.py b/githubkit/versions/ghec_v2022_11_28/types/group_1002.py index 0464ea768..402ca4b69 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1002.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1002.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1003.py b/githubkit/versions/ghec_v2022_11_28/types/group_1003.py index 2661ec116..97ef4a4a4 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1003.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1003.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1004.py b/githubkit/versions/ghec_v2022_11_28/types/group_1004.py index ae9f503f0..cfeabe90a 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1004.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1004.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1005.py b/githubkit/versions/ghec_v2022_11_28/types/group_1005.py index fdade5188..1162ab0c2 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1005.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1005.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1006.py b/githubkit/versions/ghec_v2022_11_28/types/group_1006.py index 2a3a5688e..350559b72 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1006.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1006.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1007.py b/githubkit/versions/ghec_v2022_11_28/types/group_1007.py index 45918e917..c5167638c 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1007.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1007.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1008.py b/githubkit/versions/ghec_v2022_11_28/types/group_1008.py index bed8b79ad..f959974ea 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1008.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1008.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1009.py b/githubkit/versions/ghec_v2022_11_28/types/group_1009.py index c139e27b7..17bc732df 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1009.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1009.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1010.py b/githubkit/versions/ghec_v2022_11_28/types/group_1010.py index 9b8fb6450..88fd8a6dd 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1010.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1010.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1011.py b/githubkit/versions/ghec_v2022_11_28/types/group_1011.py index 90f8ca4f1..c33d4529b 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1011.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1011.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1012.py b/githubkit/versions/ghec_v2022_11_28/types/group_1012.py index c62f3b40c..1160daba0 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1012.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1012.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1013.py b/githubkit/versions/ghec_v2022_11_28/types/group_1013.py index c17377f8d..8a5712a8c 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1013.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1013.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1014.py b/githubkit/versions/ghec_v2022_11_28/types/group_1014.py index 83497b42f..c1ad71389 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1014.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1014.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1015.py b/githubkit/versions/ghec_v2022_11_28/types/group_1015.py index 261682118..7ef23fb71 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1015.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1015.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1016.py b/githubkit/versions/ghec_v2022_11_28/types/group_1016.py index bf792537b..a5b1bcda1 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1016.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1016.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1017.py b/githubkit/versions/ghec_v2022_11_28/types/group_1017.py index cc51a021f..ad7d7d522 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1017.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1017.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1018.py b/githubkit/versions/ghec_v2022_11_28/types/group_1018.py index 7e664c1da..20e7c3509 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1018.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1018.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1019.py b/githubkit/versions/ghec_v2022_11_28/types/group_1019.py index b51635d01..08a15748d 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1019.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1019.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1020.py b/githubkit/versions/ghec_v2022_11_28/types/group_1020.py index 3811b3b8e..3c58b5c31 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1020.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1020.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1021.py b/githubkit/versions/ghec_v2022_11_28/types/group_1021.py index 6f654a714..a77eacf3e 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1021.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1021.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1022.py b/githubkit/versions/ghec_v2022_11_28/types/group_1022.py index b28da6a2b..5daf56489 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1022.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1022.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1023.py b/githubkit/versions/ghec_v2022_11_28/types/group_1023.py index d341d170d..d51a66b7c 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1023.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1023.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1024.py b/githubkit/versions/ghec_v2022_11_28/types/group_1024.py index bafee8058..39cfa7c56 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1024.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1024.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1025.py b/githubkit/versions/ghec_v2022_11_28/types/group_1025.py index 22547de71..f36c7fdb0 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1025.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1025.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1026.py b/githubkit/versions/ghec_v2022_11_28/types/group_1026.py index 2670c88c3..b350535de 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1026.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1026.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1027.py b/githubkit/versions/ghec_v2022_11_28/types/group_1027.py index a4f390cd8..2d802b1fa 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1027.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1027.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1028.py b/githubkit/versions/ghec_v2022_11_28/types/group_1028.py index 871222bd1..ad870a329 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1028.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1028.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1029.py b/githubkit/versions/ghec_v2022_11_28/types/group_1029.py index 816954158..633ffe55f 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1029.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1029.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1030.py b/githubkit/versions/ghec_v2022_11_28/types/group_1030.py index 00898f425..0e54dbe56 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1030.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1030.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1031.py b/githubkit/versions/ghec_v2022_11_28/types/group_1031.py index c43eae168..c8d87b3e2 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1031.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1031.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1032.py b/githubkit/versions/ghec_v2022_11_28/types/group_1032.py index e05b82156..8ec4d5ff7 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1032.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1032.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1033.py b/githubkit/versions/ghec_v2022_11_28/types/group_1033.py index c86799ecf..4c0d1741f 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1033.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1033.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1034.py b/githubkit/versions/ghec_v2022_11_28/types/group_1034.py index 30e292d2e..d1f4b8ce2 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1034.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1034.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1035.py b/githubkit/versions/ghec_v2022_11_28/types/group_1035.py index 1640137ff..26651df87 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1035.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1035.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1036.py b/githubkit/versions/ghec_v2022_11_28/types/group_1036.py index ebeb7c22e..20edcde18 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1036.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1036.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1037.py b/githubkit/versions/ghec_v2022_11_28/types/group_1037.py index a68df4c91..b46802659 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1037.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1037.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1038.py b/githubkit/versions/ghec_v2022_11_28/types/group_1038.py index 0d7fcbfa6..78164b5f0 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1038.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1038.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1039.py b/githubkit/versions/ghec_v2022_11_28/types/group_1039.py index fdd5fe696..eaa80b847 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1039.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1039.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1040.py b/githubkit/versions/ghec_v2022_11_28/types/group_1040.py index b45ae696c..4ac805ebb 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1040.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1040.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1041.py b/githubkit/versions/ghec_v2022_11_28/types/group_1041.py index 0d1464cde..f4f9ec07a 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1041.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1041.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1042.py b/githubkit/versions/ghec_v2022_11_28/types/group_1042.py index 117df0ab2..adfbad53d 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1042.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1042.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1043.py b/githubkit/versions/ghec_v2022_11_28/types/group_1043.py index c3e1d8e56..5fbd6cf0c 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1043.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1043.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1044.py b/githubkit/versions/ghec_v2022_11_28/types/group_1044.py index 287ec5525..5d8ac49c1 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1044.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1044.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1045.py b/githubkit/versions/ghec_v2022_11_28/types/group_1045.py index 8acb9323d..ef98987e3 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1045.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1045.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1046.py b/githubkit/versions/ghec_v2022_11_28/types/group_1046.py index 9bcebd241..712881641 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1046.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1046.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1047.py b/githubkit/versions/ghec_v2022_11_28/types/group_1047.py index abe858343..aa6436005 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1047.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1047.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1048.py b/githubkit/versions/ghec_v2022_11_28/types/group_1048.py index 650041259..5cd0c722e 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1048.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1048.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1049.py b/githubkit/versions/ghec_v2022_11_28/types/group_1049.py index e771f01b4..7d05a6c23 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1049.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1049.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1050.py b/githubkit/versions/ghec_v2022_11_28/types/group_1050.py index 5acc6a507..ded7468cd 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1050.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1050.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1051.py b/githubkit/versions/ghec_v2022_11_28/types/group_1051.py index 8a2ace4eb..aae507935 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1051.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1051.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1052.py b/githubkit/versions/ghec_v2022_11_28/types/group_1052.py index 30549cbb9..e18caccbe 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1052.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1052.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1053.py b/githubkit/versions/ghec_v2022_11_28/types/group_1053.py index 6c3a27959..a33cbd9bf 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1053.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1053.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1054.py b/githubkit/versions/ghec_v2022_11_28/types/group_1054.py index 58b81a8b5..4c82ea53d 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1054.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1054.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1055.py b/githubkit/versions/ghec_v2022_11_28/types/group_1055.py index 819ece5c0..127388d30 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1055.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1055.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1056.py b/githubkit/versions/ghec_v2022_11_28/types/group_1056.py index b9a939c07..3048a3c3a 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1056.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1056.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1057.py b/githubkit/versions/ghec_v2022_11_28/types/group_1057.py index 068a0537e..25f26d78b 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1057.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1057.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1058.py b/githubkit/versions/ghec_v2022_11_28/types/group_1058.py index 0ef8dcc37..ce91eec32 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1058.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1058.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1059.py b/githubkit/versions/ghec_v2022_11_28/types/group_1059.py index da7c88e84..64def9673 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1059.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1059.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1060.py b/githubkit/versions/ghec_v2022_11_28/types/group_1060.py index fe0f09862..4d90b2ac0 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1060.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1060.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1061.py b/githubkit/versions/ghec_v2022_11_28/types/group_1061.py index 7a0cfc0cb..2242ad973 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1061.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1061.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1062.py b/githubkit/versions/ghec_v2022_11_28/types/group_1062.py index 45d3357fe..952a58aa5 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1062.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1062.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1063.py b/githubkit/versions/ghec_v2022_11_28/types/group_1063.py index 69392919c..e6000744d 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1063.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1063.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1064.py b/githubkit/versions/ghec_v2022_11_28/types/group_1064.py index 74c7369f7..b01790e23 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1064.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1064.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1065.py b/githubkit/versions/ghec_v2022_11_28/types/group_1065.py index c0360a9e5..b77f06192 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1065.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1065.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1066.py b/githubkit/versions/ghec_v2022_11_28/types/group_1066.py index 133a1ff5d..6e9243ec2 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1066.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1066.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1067.py b/githubkit/versions/ghec_v2022_11_28/types/group_1067.py index 862d708ee..614766fa1 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1067.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1067.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1068.py b/githubkit/versions/ghec_v2022_11_28/types/group_1068.py index 5f52ed22b..31c81fc99 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1068.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1068.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1069.py b/githubkit/versions/ghec_v2022_11_28/types/group_1069.py index 58ad91dcc..bf2c3b692 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1069.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1069.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1070.py b/githubkit/versions/ghec_v2022_11_28/types/group_1070.py index 12d95cb76..28590d115 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1070.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1070.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1071.py b/githubkit/versions/ghec_v2022_11_28/types/group_1071.py index deed780da..3528cd768 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1071.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1071.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1072.py b/githubkit/versions/ghec_v2022_11_28/types/group_1072.py index 85bc95fac..b65e8765b 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1072.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1072.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1073.py b/githubkit/versions/ghec_v2022_11_28/types/group_1073.py index 1681b6117..aa86463eb 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1073.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1073.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1074.py b/githubkit/versions/ghec_v2022_11_28/types/group_1074.py index e5e89ad1b..2bd8ed4d2 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1074.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1074.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1075.py b/githubkit/versions/ghec_v2022_11_28/types/group_1075.py index e2dff45d1..cc7b8d3ce 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1075.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1075.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1076.py b/githubkit/versions/ghec_v2022_11_28/types/group_1076.py index 9e59147f1..3ec440fb1 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1076.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1076.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1077.py b/githubkit/versions/ghec_v2022_11_28/types/group_1077.py index cd959c494..8bb81a17a 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1077.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1077.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1078.py b/githubkit/versions/ghec_v2022_11_28/types/group_1078.py index 3587bd05a..f3a29926f 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1078.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1078.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1079.py b/githubkit/versions/ghec_v2022_11_28/types/group_1079.py index 6288a8b33..c1fff1a36 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1079.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1079.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1080.py b/githubkit/versions/ghec_v2022_11_28/types/group_1080.py index dc218d370..8bba2acbd 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1080.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1080.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1081.py b/githubkit/versions/ghec_v2022_11_28/types/group_1081.py index 904b00e2f..dcd2ec0cb 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1081.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1081.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1082.py b/githubkit/versions/ghec_v2022_11_28/types/group_1082.py index fd22b529e..166b3b1b7 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1082.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1082.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1083.py b/githubkit/versions/ghec_v2022_11_28/types/group_1083.py index 48dcdb55b..aa4d83aff 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1083.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1083.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1084.py b/githubkit/versions/ghec_v2022_11_28/types/group_1084.py index d475e3e0b..c7aa1330c 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1084.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1084.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1085.py b/githubkit/versions/ghec_v2022_11_28/types/group_1085.py index 8b693e857..fe54aa32e 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1085.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1085.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1086.py b/githubkit/versions/ghec_v2022_11_28/types/group_1086.py index 6b0bfc1ff..a8fe4c648 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1086.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1086.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1087.py b/githubkit/versions/ghec_v2022_11_28/types/group_1087.py index 18d04b2f9..3f4bc96d4 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1087.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1087.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1088.py b/githubkit/versions/ghec_v2022_11_28/types/group_1088.py index cfdb170e0..a7b95ac0e 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1088.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1088.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1089.py b/githubkit/versions/ghec_v2022_11_28/types/group_1089.py index 108641b17..8c044b8a1 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1089.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1089.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1090.py b/githubkit/versions/ghec_v2022_11_28/types/group_1090.py index 9ce129566..40367efa2 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1090.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1090.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1091.py b/githubkit/versions/ghec_v2022_11_28/types/group_1091.py index 1df0dc5de..ea3f1020c 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1091.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1091.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1092.py b/githubkit/versions/ghec_v2022_11_28/types/group_1092.py index 711be0b0d..f3821d41d 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1092.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1092.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1093.py b/githubkit/versions/ghec_v2022_11_28/types/group_1093.py index 152ce6738..f8207f6ea 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1093.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1093.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1094.py b/githubkit/versions/ghec_v2022_11_28/types/group_1094.py index 2cfc09e6d..ca60a7364 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1094.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1094.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1095.py b/githubkit/versions/ghec_v2022_11_28/types/group_1095.py index 1dc0ba2a1..de920e175 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1095.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1095.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1096.py b/githubkit/versions/ghec_v2022_11_28/types/group_1096.py index 50e4c4bb6..5fcbc4ed3 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1096.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1096.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1097.py b/githubkit/versions/ghec_v2022_11_28/types/group_1097.py index 1c8956203..4b0c546c3 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1097.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1097.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1098.py b/githubkit/versions/ghec_v2022_11_28/types/group_1098.py index be84721fd..77f77960c 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1098.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1098.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1099.py b/githubkit/versions/ghec_v2022_11_28/types/group_1099.py index 4d1511245..38ef471b7 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1099.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1099.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1100.py b/githubkit/versions/ghec_v2022_11_28/types/group_1100.py index fbb2884f2..e318c7fed 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1100.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1100.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1101.py b/githubkit/versions/ghec_v2022_11_28/types/group_1101.py index 415609efa..ef1108543 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1101.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1101.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1102.py b/githubkit/versions/ghec_v2022_11_28/types/group_1102.py index 23d83158c..2585a1e0c 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1102.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1102.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1103.py b/githubkit/versions/ghec_v2022_11_28/types/group_1103.py index c1093ec22..79fa1e54c 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1103.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1103.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1104.py b/githubkit/versions/ghec_v2022_11_28/types/group_1104.py index cae2513ac..793244215 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1104.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1104.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1105.py b/githubkit/versions/ghec_v2022_11_28/types/group_1105.py index c627444fd..4b61c7722 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1105.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1105.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1106.py b/githubkit/versions/ghec_v2022_11_28/types/group_1106.py index b7cd67fa2..36bd0305e 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1106.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1106.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1107.py b/githubkit/versions/ghec_v2022_11_28/types/group_1107.py index 64e92660f..6e7f8a784 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1107.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1107.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1108.py b/githubkit/versions/ghec_v2022_11_28/types/group_1108.py index d8edb96e3..6872247a2 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1108.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1108.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1109.py b/githubkit/versions/ghec_v2022_11_28/types/group_1109.py index b294cc291..a190e2d44 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1109.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1109.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1110.py b/githubkit/versions/ghec_v2022_11_28/types/group_1110.py index 57dbbe3da..5d8ff2645 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1110.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1110.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1111.py b/githubkit/versions/ghec_v2022_11_28/types/group_1111.py index fe8169fa6..fa5cbfe49 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1111.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1111.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1112.py b/githubkit/versions/ghec_v2022_11_28/types/group_1112.py index dd73b1c02..2ae5bd4d6 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1112.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1112.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1113.py b/githubkit/versions/ghec_v2022_11_28/types/group_1113.py index 555e9ff27..fe512af8d 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1113.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1113.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1114.py b/githubkit/versions/ghec_v2022_11_28/types/group_1114.py index 690160417..ac724c353 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1114.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1114.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1115.py b/githubkit/versions/ghec_v2022_11_28/types/group_1115.py index d0cf2cee2..68b37cb55 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1115.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1115.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1116.py b/githubkit/versions/ghec_v2022_11_28/types/group_1116.py index d35437178..7dd5af8e7 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1116.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1116.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1117.py b/githubkit/versions/ghec_v2022_11_28/types/group_1117.py index 6b2f601b9..d926c03f7 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1117.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1117.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1118.py b/githubkit/versions/ghec_v2022_11_28/types/group_1118.py index f4843d139..7c0be85f3 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1118.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1118.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1119.py b/githubkit/versions/ghec_v2022_11_28/types/group_1119.py index c36267a8e..153effb7c 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1119.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1119.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1120.py b/githubkit/versions/ghec_v2022_11_28/types/group_1120.py index 5d505e5fa..cd3deab02 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1120.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1120.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1121.py b/githubkit/versions/ghec_v2022_11_28/types/group_1121.py index 913b13b45..7d5de74b3 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1121.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1121.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1122.py b/githubkit/versions/ghec_v2022_11_28/types/group_1122.py index a561202d9..e3eccf5d7 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1122.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1122.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1123.py b/githubkit/versions/ghec_v2022_11_28/types/group_1123.py index 5a4657a6a..8ca8ba3b9 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1123.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1123.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1124.py b/githubkit/versions/ghec_v2022_11_28/types/group_1124.py index 05a6dc4a8..593e91a95 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1124.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1124.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1125.py b/githubkit/versions/ghec_v2022_11_28/types/group_1125.py index e9480fbd6..2ac3c62ba 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1125.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1125.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1126.py b/githubkit/versions/ghec_v2022_11_28/types/group_1126.py index 556fbfc11..76dfbb4a7 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1126.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1126.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1127.py b/githubkit/versions/ghec_v2022_11_28/types/group_1127.py index 7279f3c47..87aeeb413 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1127.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1127.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1128.py b/githubkit/versions/ghec_v2022_11_28/types/group_1128.py index 12c7debf5..b8cc49b80 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1128.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1128.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1129.py b/githubkit/versions/ghec_v2022_11_28/types/group_1129.py index 2349fbebf..93491698d 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1129.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1129.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1130.py b/githubkit/versions/ghec_v2022_11_28/types/group_1130.py index e29e00872..c22c267f3 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1130.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1130.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1131.py b/githubkit/versions/ghec_v2022_11_28/types/group_1131.py index c9e36fc3a..36b3e70e4 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1131.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1131.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1132.py b/githubkit/versions/ghec_v2022_11_28/types/group_1132.py index b2faaf4af..bf845492c 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1132.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1132.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1133.py b/githubkit/versions/ghec_v2022_11_28/types/group_1133.py index 1cd13adcb..e4301f5c1 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1133.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1133.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1134.py b/githubkit/versions/ghec_v2022_11_28/types/group_1134.py index 3818d84ff..160987b13 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1134.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1134.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1135.py b/githubkit/versions/ghec_v2022_11_28/types/group_1135.py index c917f0c09..4dc9e5008 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1135.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1135.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1136.py b/githubkit/versions/ghec_v2022_11_28/types/group_1136.py index 30dea6fdb..a7f3437b1 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1136.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1136.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1137.py b/githubkit/versions/ghec_v2022_11_28/types/group_1137.py index 6e76a9eeb..2bc8bc97e 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1137.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1137.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1138.py b/githubkit/versions/ghec_v2022_11_28/types/group_1138.py index e3710d65f..3a373298b 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1138.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1138.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1139.py b/githubkit/versions/ghec_v2022_11_28/types/group_1139.py index 8f3238433..fdc9c5a0e 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1139.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1139.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1140.py b/githubkit/versions/ghec_v2022_11_28/types/group_1140.py index 477a5dec0..f027d8849 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1140.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1140.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1141.py b/githubkit/versions/ghec_v2022_11_28/types/group_1141.py index 92a258259..430b6639e 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1141.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1141.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1142.py b/githubkit/versions/ghec_v2022_11_28/types/group_1142.py index 7e1831086..12d07d173 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1142.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1142.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1143.py b/githubkit/versions/ghec_v2022_11_28/types/group_1143.py index 57f2d7b78..a84cf2d89 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1143.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1143.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1144.py b/githubkit/versions/ghec_v2022_11_28/types/group_1144.py index 2527b7e9a..1d45bd83c 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1144.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1144.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1145.py b/githubkit/versions/ghec_v2022_11_28/types/group_1145.py index fe6b8ffce..020f5596d 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1145.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1145.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1146.py b/githubkit/versions/ghec_v2022_11_28/types/group_1146.py index dedcae57e..1046c3f1e 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1146.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1146.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1147.py b/githubkit/versions/ghec_v2022_11_28/types/group_1147.py index dba3f9887..05cccf0c0 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1147.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1147.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1148.py b/githubkit/versions/ghec_v2022_11_28/types/group_1148.py index 5fb29f806..6b49304a1 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1148.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1148.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1149.py b/githubkit/versions/ghec_v2022_11_28/types/group_1149.py index c31bec6c5..db429f41c 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1149.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1149.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1150.py b/githubkit/versions/ghec_v2022_11_28/types/group_1150.py index 87560833c..20f8615d9 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1150.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1150.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1151.py b/githubkit/versions/ghec_v2022_11_28/types/group_1151.py index 145bf3fad..6be5b5e11 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1151.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1151.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1152.py b/githubkit/versions/ghec_v2022_11_28/types/group_1152.py index 654284edb..ad449b3dd 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1152.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1152.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1153.py b/githubkit/versions/ghec_v2022_11_28/types/group_1153.py index af92b1480..14ed366af 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1153.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1153.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1154.py b/githubkit/versions/ghec_v2022_11_28/types/group_1154.py index f43fe162b..951aca8ca 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1154.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1154.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1155.py b/githubkit/versions/ghec_v2022_11_28/types/group_1155.py index a146deba2..fc4fe244b 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1155.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1155.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1156.py b/githubkit/versions/ghec_v2022_11_28/types/group_1156.py index 9a7c95d97..d85bf8d37 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1156.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1156.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1157.py b/githubkit/versions/ghec_v2022_11_28/types/group_1157.py index 7a29be627..c29bd6849 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1157.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1157.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1158.py b/githubkit/versions/ghec_v2022_11_28/types/group_1158.py index 950f4b40e..6f338363d 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1158.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1158.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1159.py b/githubkit/versions/ghec_v2022_11_28/types/group_1159.py index e3537225d..6dd2f6735 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1159.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1159.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1160.py b/githubkit/versions/ghec_v2022_11_28/types/group_1160.py index f8a3375fb..48f7d82ce 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1160.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1160.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1161.py b/githubkit/versions/ghec_v2022_11_28/types/group_1161.py index 3378016b8..9e6d26d8a 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1161.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1161.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1162.py b/githubkit/versions/ghec_v2022_11_28/types/group_1162.py index 44a765f5f..492fdc91e 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1162.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1162.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1163.py b/githubkit/versions/ghec_v2022_11_28/types/group_1163.py index c0ccfadd0..681ccb3a7 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1163.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1163.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1164.py b/githubkit/versions/ghec_v2022_11_28/types/group_1164.py index 516626851..75339e545 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1164.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1164.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1165.py b/githubkit/versions/ghec_v2022_11_28/types/group_1165.py index 622cdcdcb..0b51fb534 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1165.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1165.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1166.py b/githubkit/versions/ghec_v2022_11_28/types/group_1166.py index 3b46d29ca..b4e292586 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1166.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1166.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1167.py b/githubkit/versions/ghec_v2022_11_28/types/group_1167.py index bced0a12d..c39deeb1d 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1167.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1167.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1168.py b/githubkit/versions/ghec_v2022_11_28/types/group_1168.py index 54115ac7d..8ca10d594 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1168.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1168.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1169.py b/githubkit/versions/ghec_v2022_11_28/types/group_1169.py index c5d79eb08..b589c2a6a 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1169.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1169.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1170.py b/githubkit/versions/ghec_v2022_11_28/types/group_1170.py index 5cd13e5ce..46f00fe63 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1170.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1170.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1171.py b/githubkit/versions/ghec_v2022_11_28/types/group_1171.py index b7b0754a6..2797e0af9 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1171.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1171.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1172.py b/githubkit/versions/ghec_v2022_11_28/types/group_1172.py index de4b41533..49b6126e3 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1172.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1172.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1173.py b/githubkit/versions/ghec_v2022_11_28/types/group_1173.py index 85bb4522d..aba26488a 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1173.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1173.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1174.py b/githubkit/versions/ghec_v2022_11_28/types/group_1174.py index 8a17e3dc8..ea06c9bbf 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1174.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1174.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1175.py b/githubkit/versions/ghec_v2022_11_28/types/group_1175.py index f2c3784d8..02edb1cc8 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1175.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1175.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1176.py b/githubkit/versions/ghec_v2022_11_28/types/group_1176.py index 99968f904..8ac2e4896 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1176.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1176.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1177.py b/githubkit/versions/ghec_v2022_11_28/types/group_1177.py index 22c08e6b4..206f6e4e5 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1177.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1177.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1178.py b/githubkit/versions/ghec_v2022_11_28/types/group_1178.py index f395c451c..fd87b040e 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1178.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1178.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1179.py b/githubkit/versions/ghec_v2022_11_28/types/group_1179.py index 129410372..5f68e3fc2 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1179.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1179.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1180.py b/githubkit/versions/ghec_v2022_11_28/types/group_1180.py index 70cbcbd4c..2b78f607c 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1180.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1180.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1181.py b/githubkit/versions/ghec_v2022_11_28/types/group_1181.py index 4bcf64f7a..a5b98bc3c 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1181.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1181.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1182.py b/githubkit/versions/ghec_v2022_11_28/types/group_1182.py index 73e1db68c..6c7bf1615 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1182.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1182.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1183.py b/githubkit/versions/ghec_v2022_11_28/types/group_1183.py index 8263ef829..dc342bf35 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1183.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1183.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1184.py b/githubkit/versions/ghec_v2022_11_28/types/group_1184.py index 9dba2bf07..cf235f497 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1184.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1184.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1185.py b/githubkit/versions/ghec_v2022_11_28/types/group_1185.py index f30ce0a02..6c62a2d33 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1185.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1185.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1186.py b/githubkit/versions/ghec_v2022_11_28/types/group_1186.py index 2ecb5405a..f7e1dab5d 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1186.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1186.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1187.py b/githubkit/versions/ghec_v2022_11_28/types/group_1187.py index 1e73e509a..f19c47f29 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1187.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1187.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1188.py b/githubkit/versions/ghec_v2022_11_28/types/group_1188.py index 0a3f1c490..623f6ef5e 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1188.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1188.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1189.py b/githubkit/versions/ghec_v2022_11_28/types/group_1189.py index 66ebfb278..b46628249 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1189.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1189.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1190.py b/githubkit/versions/ghec_v2022_11_28/types/group_1190.py index 836ff2110..fe3ecda22 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1190.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1190.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1191.py b/githubkit/versions/ghec_v2022_11_28/types/group_1191.py index eddf8d23d..adf5558f2 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1191.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1191.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1192.py b/githubkit/versions/ghec_v2022_11_28/types/group_1192.py index 5985a14a4..741f85377 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1192.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1192.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1193.py b/githubkit/versions/ghec_v2022_11_28/types/group_1193.py index 5f45042d6..76706bdf0 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1193.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1193.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1194.py b/githubkit/versions/ghec_v2022_11_28/types/group_1194.py index fa6c83797..a7b448531 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1194.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1194.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1195.py b/githubkit/versions/ghec_v2022_11_28/types/group_1195.py index 83ac42250..c3eff10ec 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1195.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1195.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1196.py b/githubkit/versions/ghec_v2022_11_28/types/group_1196.py index 089774821..64abc4546 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1196.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1196.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1197.py b/githubkit/versions/ghec_v2022_11_28/types/group_1197.py index 061661d7b..a8c57fcc3 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1197.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1197.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1198.py b/githubkit/versions/ghec_v2022_11_28/types/group_1198.py index 764d8ef5d..9f9dd053b 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1198.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1198.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1199.py b/githubkit/versions/ghec_v2022_11_28/types/group_1199.py index ab2ff8c68..01b3a0e4d 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1199.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1199.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1200.py b/githubkit/versions/ghec_v2022_11_28/types/group_1200.py index db4b1ebca..718052573 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1200.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1200.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1201.py b/githubkit/versions/ghec_v2022_11_28/types/group_1201.py index 73e4a33df..4d601de18 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1201.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1201.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1202.py b/githubkit/versions/ghec_v2022_11_28/types/group_1202.py index 269f41c45..788630d15 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1202.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1202.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1203.py b/githubkit/versions/ghec_v2022_11_28/types/group_1203.py index 6b7a948a0..7b85c56d3 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1203.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1203.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1204.py b/githubkit/versions/ghec_v2022_11_28/types/group_1204.py index 7bbe9d87e..e15229eae 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1204.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1204.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1205.py b/githubkit/versions/ghec_v2022_11_28/types/group_1205.py index 756ea73c6..ee2d5aa51 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1205.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1205.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1206.py b/githubkit/versions/ghec_v2022_11_28/types/group_1206.py index ee7ed7d16..4e43f5e67 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1206.py +++ b/githubkit/versions/ghec_v2022_11_28/types/group_1206.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/_namespace.py b/githubkit/versions/ghec_v2022_11_28/webhooks/_namespace.py index c5da46b25..a6868dc01 100644 --- a/githubkit/versions/ghec_v2022_11_28/webhooks/_namespace.py +++ b/githubkit/versions/ghec_v2022_11_28/webhooks/_namespace.py @@ -266,465 +266,401 @@ def parse_without_name(payload: Union[str, bytes]) -> "WebhookEvent": @staticmethod def parse( name: Literal["branch_protection_configuration"], payload: Union[str, bytes] - ) -> "BranchProtectionConfigurationEvent": - ... + ) -> "BranchProtectionConfigurationEvent": ... @overload @staticmethod def parse( name: Literal["branch_protection_rule"], payload: Union[str, bytes] - ) -> "BranchProtectionRuleEvent": - ... + ) -> "BranchProtectionRuleEvent": ... @overload @staticmethod def parse( name: Literal["check_run"], payload: Union[str, bytes] - ) -> "CheckRunEvent": - ... + ) -> "CheckRunEvent": ... @overload @staticmethod def parse( name: Literal["check_suite"], payload: Union[str, bytes] - ) -> "CheckSuiteEvent": - ... + ) -> "CheckSuiteEvent": ... @overload @staticmethod def parse( name: Literal["code_scanning_alert"], payload: Union[str, bytes] - ) -> "CodeScanningAlertEvent": - ... + ) -> "CodeScanningAlertEvent": ... @overload @staticmethod def parse( name: Literal["commit_comment"], payload: Union[str, bytes] - ) -> "CommitCommentEvent": - ... + ) -> "CommitCommentEvent": ... @overload @staticmethod - def parse(name: Literal["create"], payload: Union[str, bytes]) -> "CreateEvent": - ... + def parse(name: Literal["create"], payload: Union[str, bytes]) -> "CreateEvent": ... @overload @staticmethod def parse( name: Literal["custom_property"], payload: Union[str, bytes] - ) -> "CustomPropertyEvent": - ... + ) -> "CustomPropertyEvent": ... @overload @staticmethod def parse( name: Literal["custom_property_values"], payload: Union[str, bytes] - ) -> "CustomPropertyValuesEvent": - ... + ) -> "CustomPropertyValuesEvent": ... @overload @staticmethod - def parse(name: Literal["delete"], payload: Union[str, bytes]) -> "DeleteEvent": - ... + def parse(name: Literal["delete"], payload: Union[str, bytes]) -> "DeleteEvent": ... @overload @staticmethod def parse( name: Literal["dependabot_alert"], payload: Union[str, bytes] - ) -> "DependabotAlertEvent": - ... + ) -> "DependabotAlertEvent": ... @overload @staticmethod def parse( name: Literal["deploy_key"], payload: Union[str, bytes] - ) -> "DeployKeyEvent": - ... + ) -> "DeployKeyEvent": ... @overload @staticmethod def parse( name: Literal["deployment"], payload: Union[str, bytes] - ) -> "DeploymentEvent": - ... + ) -> "DeploymentEvent": ... @overload @staticmethod def parse( name: Literal["deployment_protection_rule"], payload: Union[str, bytes] - ) -> "DeploymentProtectionRuleEvent": - ... + ) -> "DeploymentProtectionRuleEvent": ... @overload @staticmethod def parse( name: Literal["deployment_review"], payload: Union[str, bytes] - ) -> "DeploymentReviewEvent": - ... + ) -> "DeploymentReviewEvent": ... @overload @staticmethod def parse( name: Literal["deployment_status"], payload: Union[str, bytes] - ) -> "DeploymentStatusEvent": - ... + ) -> "DeploymentStatusEvent": ... @overload @staticmethod def parse( name: Literal["discussion"], payload: Union[str, bytes] - ) -> "DiscussionEvent": - ... + ) -> "DiscussionEvent": ... @overload @staticmethod def parse( name: Literal["discussion_comment"], payload: Union[str, bytes] - ) -> "DiscussionCommentEvent": - ... + ) -> "DiscussionCommentEvent": ... @overload @staticmethod - def parse(name: Literal["fork"], payload: Union[str, bytes]) -> "ForkEvent": - ... + def parse(name: Literal["fork"], payload: Union[str, bytes]) -> "ForkEvent": ... @overload @staticmethod def parse( name: Literal["github_app_authorization"], payload: Union[str, bytes] - ) -> "GithubAppAuthorizationEvent": - ... + ) -> "GithubAppAuthorizationEvent": ... @overload @staticmethod - def parse(name: Literal["gollum"], payload: Union[str, bytes]) -> "GollumEvent": - ... + def parse(name: Literal["gollum"], payload: Union[str, bytes]) -> "GollumEvent": ... @overload @staticmethod def parse( name: Literal["installation"], payload: Union[str, bytes] - ) -> "InstallationEvent": - ... + ) -> "InstallationEvent": ... @overload @staticmethod def parse( name: Literal["installation_repositories"], payload: Union[str, bytes] - ) -> "InstallationRepositoriesEvent": - ... + ) -> "InstallationRepositoriesEvent": ... @overload @staticmethod def parse( name: Literal["installation_target"], payload: Union[str, bytes] - ) -> "InstallationTargetEvent": - ... + ) -> "InstallationTargetEvent": ... @overload @staticmethod def parse( name: Literal["issue_comment"], payload: Union[str, bytes] - ) -> "IssueCommentEvent": - ... + ) -> "IssueCommentEvent": ... @overload @staticmethod - def parse(name: Literal["issues"], payload: Union[str, bytes]) -> "IssuesEvent": - ... + def parse(name: Literal["issues"], payload: Union[str, bytes]) -> "IssuesEvent": ... @overload @staticmethod - def parse(name: Literal["label"], payload: Union[str, bytes]) -> "LabelEvent": - ... + def parse(name: Literal["label"], payload: Union[str, bytes]) -> "LabelEvent": ... @overload @staticmethod def parse( name: Literal["marketplace_purchase"], payload: Union[str, bytes] - ) -> "MarketplacePurchaseEvent": - ... + ) -> "MarketplacePurchaseEvent": ... @overload @staticmethod - def parse(name: Literal["member"], payload: Union[str, bytes]) -> "MemberEvent": - ... + def parse(name: Literal["member"], payload: Union[str, bytes]) -> "MemberEvent": ... @overload @staticmethod def parse( name: Literal["membership"], payload: Union[str, bytes] - ) -> "MembershipEvent": - ... + ) -> "MembershipEvent": ... @overload @staticmethod def parse( name: Literal["merge_group"], payload: Union[str, bytes] - ) -> "MergeGroupEvent": - ... + ) -> "MergeGroupEvent": ... @overload @staticmethod - def parse(name: Literal["meta"], payload: Union[str, bytes]) -> "MetaEvent": - ... + def parse(name: Literal["meta"], payload: Union[str, bytes]) -> "MetaEvent": ... @overload @staticmethod def parse( name: Literal["milestone"], payload: Union[str, bytes] - ) -> "MilestoneEvent": - ... + ) -> "MilestoneEvent": ... @overload @staticmethod def parse( name: Literal["org_block"], payload: Union[str, bytes] - ) -> "OrgBlockEvent": - ... + ) -> "OrgBlockEvent": ... @overload @staticmethod def parse( name: Literal["organization"], payload: Union[str, bytes] - ) -> "OrganizationEvent": - ... + ) -> "OrganizationEvent": ... @overload @staticmethod - def parse(name: Literal["package"], payload: Union[str, bytes]) -> "PackageEvent": - ... + def parse( + name: Literal["package"], payload: Union[str, bytes] + ) -> "PackageEvent": ... @overload @staticmethod def parse( name: Literal["page_build"], payload: Union[str, bytes] - ) -> "PageBuildEvent": - ... + ) -> "PageBuildEvent": ... @overload @staticmethod def parse( name: Literal["personal_access_token_request"], payload: Union[str, bytes] - ) -> "PersonalAccessTokenRequestEvent": - ... + ) -> "PersonalAccessTokenRequestEvent": ... @overload @staticmethod - def parse(name: Literal["ping"], payload: Union[str, bytes]) -> "PingEvent": - ... + def parse(name: Literal["ping"], payload: Union[str, bytes]) -> "PingEvent": ... @overload @staticmethod def parse( name: Literal["project_card"], payload: Union[str, bytes] - ) -> "ProjectCardEvent": - ... + ) -> "ProjectCardEvent": ... @overload @staticmethod - def parse(name: Literal["project"], payload: Union[str, bytes]) -> "ProjectEvent": - ... + def parse( + name: Literal["project"], payload: Union[str, bytes] + ) -> "ProjectEvent": ... @overload @staticmethod def parse( name: Literal["project_column"], payload: Union[str, bytes] - ) -> "ProjectColumnEvent": - ... + ) -> "ProjectColumnEvent": ... @overload @staticmethod def parse( name: Literal["projects_v2"], payload: Union[str, bytes] - ) -> "ProjectsV2Event": - ... + ) -> "ProjectsV2Event": ... @overload @staticmethod def parse( name: Literal["projects_v2_item"], payload: Union[str, bytes] - ) -> "ProjectsV2ItemEvent": - ... + ) -> "ProjectsV2ItemEvent": ... @overload @staticmethod - def parse(name: Literal["public"], payload: Union[str, bytes]) -> "PublicEvent": - ... + def parse(name: Literal["public"], payload: Union[str, bytes]) -> "PublicEvent": ... @overload @staticmethod def parse( name: Literal["pull_request"], payload: Union[str, bytes] - ) -> "PullRequestEvent": - ... + ) -> "PullRequestEvent": ... @overload @staticmethod def parse( name: Literal["pull_request_review_comment"], payload: Union[str, bytes] - ) -> "PullRequestReviewCommentEvent": - ... + ) -> "PullRequestReviewCommentEvent": ... @overload @staticmethod def parse( name: Literal["pull_request_review"], payload: Union[str, bytes] - ) -> "PullRequestReviewEvent": - ... + ) -> "PullRequestReviewEvent": ... @overload @staticmethod def parse( name: Literal["pull_request_review_thread"], payload: Union[str, bytes] - ) -> "PullRequestReviewThreadEvent": - ... + ) -> "PullRequestReviewThreadEvent": ... @overload @staticmethod - def parse(name: Literal["push"], payload: Union[str, bytes]) -> "PushEvent": - ... + def parse(name: Literal["push"], payload: Union[str, bytes]) -> "PushEvent": ... @overload @staticmethod def parse( name: Literal["registry_package"], payload: Union[str, bytes] - ) -> "RegistryPackageEvent": - ... + ) -> "RegistryPackageEvent": ... @overload @staticmethod - def parse(name: Literal["release"], payload: Union[str, bytes]) -> "ReleaseEvent": - ... + def parse( + name: Literal["release"], payload: Union[str, bytes] + ) -> "ReleaseEvent": ... @overload @staticmethod def parse( name: Literal["repository_advisory"], payload: Union[str, bytes] - ) -> "RepositoryAdvisoryEvent": - ... + ) -> "RepositoryAdvisoryEvent": ... @overload @staticmethod def parse( name: Literal["repository"], payload: Union[str, bytes] - ) -> "RepositoryEvent": - ... + ) -> "RepositoryEvent": ... @overload @staticmethod def parse( name: Literal["repository_dispatch"], payload: Union[str, bytes] - ) -> "RepositoryDispatchEvent": - ... + ) -> "RepositoryDispatchEvent": ... @overload @staticmethod def parse( name: Literal["repository_import"], payload: Union[str, bytes] - ) -> "RepositoryImportEvent": - ... + ) -> "RepositoryImportEvent": ... @overload @staticmethod def parse( name: Literal["repository_ruleset"], payload: Union[str, bytes] - ) -> "RepositoryRulesetEvent": - ... + ) -> "RepositoryRulesetEvent": ... @overload @staticmethod def parse( name: Literal["repository_vulnerability_alert"], payload: Union[str, bytes] - ) -> "RepositoryVulnerabilityAlertEvent": - ... + ) -> "RepositoryVulnerabilityAlertEvent": ... @overload @staticmethod def parse( name: Literal["secret_scanning_alert"], payload: Union[str, bytes] - ) -> "SecretScanningAlertEvent": - ... + ) -> "SecretScanningAlertEvent": ... @overload @staticmethod def parse( name: Literal["secret_scanning_alert_location"], payload: Union[str, bytes] - ) -> "SecretScanningAlertLocationEvent": - ... + ) -> "SecretScanningAlertLocationEvent": ... @overload @staticmethod def parse( name: Literal["security_advisory"], payload: Union[str, bytes] - ) -> "SecurityAdvisoryEvent": - ... + ) -> "SecurityAdvisoryEvent": ... @overload @staticmethod def parse( name: Literal["security_and_analysis"], payload: Union[str, bytes] - ) -> "SecurityAndAnalysisEvent": - ... + ) -> "SecurityAndAnalysisEvent": ... @overload @staticmethod def parse( name: Literal["sponsorship"], payload: Union[str, bytes] - ) -> "SponsorshipEvent": - ... + ) -> "SponsorshipEvent": ... @overload @staticmethod - def parse(name: Literal["star"], payload: Union[str, bytes]) -> "StarEvent": - ... + def parse(name: Literal["star"], payload: Union[str, bytes]) -> "StarEvent": ... @overload @staticmethod - def parse(name: Literal["status"], payload: Union[str, bytes]) -> "StatusEvent": - ... + def parse(name: Literal["status"], payload: Union[str, bytes]) -> "StatusEvent": ... @overload @staticmethod - def parse(name: Literal["team_add"], payload: Union[str, bytes]) -> "TeamAddEvent": - ... + def parse( + name: Literal["team_add"], payload: Union[str, bytes] + ) -> "TeamAddEvent": ... @overload @staticmethod - def parse(name: Literal["team"], payload: Union[str, bytes]) -> "TeamEvent": - ... + def parse(name: Literal["team"], payload: Union[str, bytes]) -> "TeamEvent": ... @overload @staticmethod - def parse(name: Literal["watch"], payload: Union[str, bytes]) -> "WatchEvent": - ... + def parse(name: Literal["watch"], payload: Union[str, bytes]) -> "WatchEvent": ... @overload @staticmethod def parse( name: Literal["workflow_dispatch"], payload: Union[str, bytes] - ) -> "WorkflowDispatchEvent": - ... + ) -> "WorkflowDispatchEvent": ... @overload @staticmethod def parse( name: Literal["workflow_job"], payload: Union[str, bytes] - ) -> "WorkflowJobEvent": - ... + ) -> "WorkflowJobEvent": ... @overload @staticmethod def parse( name: Literal["workflow_run"], payload: Union[str, bytes] - ) -> "WorkflowRunEvent": - ... + ) -> "WorkflowRunEvent": ... @overload @staticmethod - def parse(name: EventNameType, payload: Union[str, bytes]) -> "WebhookEvent": - ... + def parse(name: EventNameType, payload: Union[str, bytes]) -> "WebhookEvent": ... @staticmethod def parse(name: EventNameType, payload: Union[str, bytes]) -> "WebhookEvent": @@ -762,465 +698,415 @@ def parse_obj_without_name(payload: Dict[str, Any]) -> "WebhookEvent": @staticmethod def parse_obj( name: Literal["branch_protection_configuration"], payload: Dict[str, Any] - ) -> "BranchProtectionConfigurationEvent": - ... + ) -> "BranchProtectionConfigurationEvent": ... @overload @staticmethod def parse_obj( name: Literal["branch_protection_rule"], payload: Dict[str, Any] - ) -> "BranchProtectionRuleEvent": - ... + ) -> "BranchProtectionRuleEvent": ... @overload @staticmethod def parse_obj( name: Literal["check_run"], payload: Dict[str, Any] - ) -> "CheckRunEvent": - ... + ) -> "CheckRunEvent": ... @overload @staticmethod def parse_obj( name: Literal["check_suite"], payload: Dict[str, Any] - ) -> "CheckSuiteEvent": - ... + ) -> "CheckSuiteEvent": ... @overload @staticmethod def parse_obj( name: Literal["code_scanning_alert"], payload: Dict[str, Any] - ) -> "CodeScanningAlertEvent": - ... + ) -> "CodeScanningAlertEvent": ... @overload @staticmethod def parse_obj( name: Literal["commit_comment"], payload: Dict[str, Any] - ) -> "CommitCommentEvent": - ... + ) -> "CommitCommentEvent": ... @overload @staticmethod - def parse_obj(name: Literal["create"], payload: Dict[str, Any]) -> "CreateEvent": - ... + def parse_obj( + name: Literal["create"], payload: Dict[str, Any] + ) -> "CreateEvent": ... @overload @staticmethod def parse_obj( name: Literal["custom_property"], payload: Dict[str, Any] - ) -> "CustomPropertyEvent": - ... + ) -> "CustomPropertyEvent": ... @overload @staticmethod def parse_obj( name: Literal["custom_property_values"], payload: Dict[str, Any] - ) -> "CustomPropertyValuesEvent": - ... + ) -> "CustomPropertyValuesEvent": ... @overload @staticmethod - def parse_obj(name: Literal["delete"], payload: Dict[str, Any]) -> "DeleteEvent": - ... + def parse_obj( + name: Literal["delete"], payload: Dict[str, Any] + ) -> "DeleteEvent": ... @overload @staticmethod def parse_obj( name: Literal["dependabot_alert"], payload: Dict[str, Any] - ) -> "DependabotAlertEvent": - ... + ) -> "DependabotAlertEvent": ... @overload @staticmethod def parse_obj( name: Literal["deploy_key"], payload: Dict[str, Any] - ) -> "DeployKeyEvent": - ... + ) -> "DeployKeyEvent": ... @overload @staticmethod def parse_obj( name: Literal["deployment"], payload: Dict[str, Any] - ) -> "DeploymentEvent": - ... + ) -> "DeploymentEvent": ... @overload @staticmethod def parse_obj( name: Literal["deployment_protection_rule"], payload: Dict[str, Any] - ) -> "DeploymentProtectionRuleEvent": - ... + ) -> "DeploymentProtectionRuleEvent": ... @overload @staticmethod def parse_obj( name: Literal["deployment_review"], payload: Dict[str, Any] - ) -> "DeploymentReviewEvent": - ... + ) -> "DeploymentReviewEvent": ... @overload @staticmethod def parse_obj( name: Literal["deployment_status"], payload: Dict[str, Any] - ) -> "DeploymentStatusEvent": - ... + ) -> "DeploymentStatusEvent": ... @overload @staticmethod def parse_obj( name: Literal["discussion"], payload: Dict[str, Any] - ) -> "DiscussionEvent": - ... + ) -> "DiscussionEvent": ... @overload @staticmethod def parse_obj( name: Literal["discussion_comment"], payload: Dict[str, Any] - ) -> "DiscussionCommentEvent": - ... + ) -> "DiscussionCommentEvent": ... @overload @staticmethod - def parse_obj(name: Literal["fork"], payload: Dict[str, Any]) -> "ForkEvent": - ... + def parse_obj(name: Literal["fork"], payload: Dict[str, Any]) -> "ForkEvent": ... @overload @staticmethod def parse_obj( name: Literal["github_app_authorization"], payload: Dict[str, Any] - ) -> "GithubAppAuthorizationEvent": - ... + ) -> "GithubAppAuthorizationEvent": ... @overload @staticmethod - def parse_obj(name: Literal["gollum"], payload: Dict[str, Any]) -> "GollumEvent": - ... + def parse_obj( + name: Literal["gollum"], payload: Dict[str, Any] + ) -> "GollumEvent": ... @overload @staticmethod def parse_obj( name: Literal["installation"], payload: Dict[str, Any] - ) -> "InstallationEvent": - ... + ) -> "InstallationEvent": ... @overload @staticmethod def parse_obj( name: Literal["installation_repositories"], payload: Dict[str, Any] - ) -> "InstallationRepositoriesEvent": - ... + ) -> "InstallationRepositoriesEvent": ... @overload @staticmethod def parse_obj( name: Literal["installation_target"], payload: Dict[str, Any] - ) -> "InstallationTargetEvent": - ... + ) -> "InstallationTargetEvent": ... @overload @staticmethod def parse_obj( name: Literal["issue_comment"], payload: Dict[str, Any] - ) -> "IssueCommentEvent": - ... + ) -> "IssueCommentEvent": ... @overload @staticmethod - def parse_obj(name: Literal["issues"], payload: Dict[str, Any]) -> "IssuesEvent": - ... + def parse_obj( + name: Literal["issues"], payload: Dict[str, Any] + ) -> "IssuesEvent": ... @overload @staticmethod - def parse_obj(name: Literal["label"], payload: Dict[str, Any]) -> "LabelEvent": - ... + def parse_obj(name: Literal["label"], payload: Dict[str, Any]) -> "LabelEvent": ... @overload @staticmethod def parse_obj( name: Literal["marketplace_purchase"], payload: Dict[str, Any] - ) -> "MarketplacePurchaseEvent": - ... + ) -> "MarketplacePurchaseEvent": ... @overload @staticmethod - def parse_obj(name: Literal["member"], payload: Dict[str, Any]) -> "MemberEvent": - ... + def parse_obj( + name: Literal["member"], payload: Dict[str, Any] + ) -> "MemberEvent": ... @overload @staticmethod def parse_obj( name: Literal["membership"], payload: Dict[str, Any] - ) -> "MembershipEvent": - ... + ) -> "MembershipEvent": ... @overload @staticmethod def parse_obj( name: Literal["merge_group"], payload: Dict[str, Any] - ) -> "MergeGroupEvent": - ... + ) -> "MergeGroupEvent": ... @overload @staticmethod - def parse_obj(name: Literal["meta"], payload: Dict[str, Any]) -> "MetaEvent": - ... + def parse_obj(name: Literal["meta"], payload: Dict[str, Any]) -> "MetaEvent": ... @overload @staticmethod def parse_obj( name: Literal["milestone"], payload: Dict[str, Any] - ) -> "MilestoneEvent": - ... + ) -> "MilestoneEvent": ... @overload @staticmethod def parse_obj( name: Literal["org_block"], payload: Dict[str, Any] - ) -> "OrgBlockEvent": - ... + ) -> "OrgBlockEvent": ... @overload @staticmethod def parse_obj( name: Literal["organization"], payload: Dict[str, Any] - ) -> "OrganizationEvent": - ... + ) -> "OrganizationEvent": ... @overload @staticmethod - def parse_obj(name: Literal["package"], payload: Dict[str, Any]) -> "PackageEvent": - ... + def parse_obj( + name: Literal["package"], payload: Dict[str, Any] + ) -> "PackageEvent": ... @overload @staticmethod def parse_obj( name: Literal["page_build"], payload: Dict[str, Any] - ) -> "PageBuildEvent": - ... + ) -> "PageBuildEvent": ... @overload @staticmethod def parse_obj( name: Literal["personal_access_token_request"], payload: Dict[str, Any] - ) -> "PersonalAccessTokenRequestEvent": - ... + ) -> "PersonalAccessTokenRequestEvent": ... @overload @staticmethod - def parse_obj(name: Literal["ping"], payload: Dict[str, Any]) -> "PingEvent": - ... + def parse_obj(name: Literal["ping"], payload: Dict[str, Any]) -> "PingEvent": ... @overload @staticmethod def parse_obj( name: Literal["project_card"], payload: Dict[str, Any] - ) -> "ProjectCardEvent": - ... + ) -> "ProjectCardEvent": ... @overload @staticmethod - def parse_obj(name: Literal["project"], payload: Dict[str, Any]) -> "ProjectEvent": - ... + def parse_obj( + name: Literal["project"], payload: Dict[str, Any] + ) -> "ProjectEvent": ... @overload @staticmethod def parse_obj( name: Literal["project_column"], payload: Dict[str, Any] - ) -> "ProjectColumnEvent": - ... + ) -> "ProjectColumnEvent": ... @overload @staticmethod def parse_obj( name: Literal["projects_v2"], payload: Dict[str, Any] - ) -> "ProjectsV2Event": - ... + ) -> "ProjectsV2Event": ... @overload @staticmethod def parse_obj( name: Literal["projects_v2_item"], payload: Dict[str, Any] - ) -> "ProjectsV2ItemEvent": - ... + ) -> "ProjectsV2ItemEvent": ... @overload @staticmethod - def parse_obj(name: Literal["public"], payload: Dict[str, Any]) -> "PublicEvent": - ... + def parse_obj( + name: Literal["public"], payload: Dict[str, Any] + ) -> "PublicEvent": ... @overload @staticmethod def parse_obj( name: Literal["pull_request"], payload: Dict[str, Any] - ) -> "PullRequestEvent": - ... + ) -> "PullRequestEvent": ... @overload @staticmethod def parse_obj( name: Literal["pull_request_review_comment"], payload: Dict[str, Any] - ) -> "PullRequestReviewCommentEvent": - ... + ) -> "PullRequestReviewCommentEvent": ... @overload @staticmethod def parse_obj( name: Literal["pull_request_review"], payload: Dict[str, Any] - ) -> "PullRequestReviewEvent": - ... + ) -> "PullRequestReviewEvent": ... @overload @staticmethod def parse_obj( name: Literal["pull_request_review_thread"], payload: Dict[str, Any] - ) -> "PullRequestReviewThreadEvent": - ... + ) -> "PullRequestReviewThreadEvent": ... @overload @staticmethod - def parse_obj(name: Literal["push"], payload: Dict[str, Any]) -> "PushEvent": - ... + def parse_obj(name: Literal["push"], payload: Dict[str, Any]) -> "PushEvent": ... @overload @staticmethod def parse_obj( name: Literal["registry_package"], payload: Dict[str, Any] - ) -> "RegistryPackageEvent": - ... + ) -> "RegistryPackageEvent": ... @overload @staticmethod - def parse_obj(name: Literal["release"], payload: Dict[str, Any]) -> "ReleaseEvent": - ... + def parse_obj( + name: Literal["release"], payload: Dict[str, Any] + ) -> "ReleaseEvent": ... @overload @staticmethod def parse_obj( name: Literal["repository_advisory"], payload: Dict[str, Any] - ) -> "RepositoryAdvisoryEvent": - ... + ) -> "RepositoryAdvisoryEvent": ... @overload @staticmethod def parse_obj( name: Literal["repository"], payload: Dict[str, Any] - ) -> "RepositoryEvent": - ... + ) -> "RepositoryEvent": ... @overload @staticmethod def parse_obj( name: Literal["repository_dispatch"], payload: Dict[str, Any] - ) -> "RepositoryDispatchEvent": - ... + ) -> "RepositoryDispatchEvent": ... @overload @staticmethod def parse_obj( name: Literal["repository_import"], payload: Dict[str, Any] - ) -> "RepositoryImportEvent": - ... + ) -> "RepositoryImportEvent": ... @overload @staticmethod def parse_obj( name: Literal["repository_ruleset"], payload: Dict[str, Any] - ) -> "RepositoryRulesetEvent": - ... + ) -> "RepositoryRulesetEvent": ... @overload @staticmethod def parse_obj( name: Literal["repository_vulnerability_alert"], payload: Dict[str, Any] - ) -> "RepositoryVulnerabilityAlertEvent": - ... + ) -> "RepositoryVulnerabilityAlertEvent": ... @overload @staticmethod def parse_obj( name: Literal["secret_scanning_alert"], payload: Dict[str, Any] - ) -> "SecretScanningAlertEvent": - ... + ) -> "SecretScanningAlertEvent": ... @overload @staticmethod def parse_obj( name: Literal["secret_scanning_alert_location"], payload: Dict[str, Any] - ) -> "SecretScanningAlertLocationEvent": - ... + ) -> "SecretScanningAlertLocationEvent": ... @overload @staticmethod def parse_obj( name: Literal["security_advisory"], payload: Dict[str, Any] - ) -> "SecurityAdvisoryEvent": - ... + ) -> "SecurityAdvisoryEvent": ... @overload @staticmethod def parse_obj( name: Literal["security_and_analysis"], payload: Dict[str, Any] - ) -> "SecurityAndAnalysisEvent": - ... + ) -> "SecurityAndAnalysisEvent": ... @overload @staticmethod def parse_obj( name: Literal["sponsorship"], payload: Dict[str, Any] - ) -> "SponsorshipEvent": - ... + ) -> "SponsorshipEvent": ... @overload @staticmethod - def parse_obj(name: Literal["star"], payload: Dict[str, Any]) -> "StarEvent": - ... + def parse_obj(name: Literal["star"], payload: Dict[str, Any]) -> "StarEvent": ... @overload @staticmethod - def parse_obj(name: Literal["status"], payload: Dict[str, Any]) -> "StatusEvent": - ... + def parse_obj( + name: Literal["status"], payload: Dict[str, Any] + ) -> "StatusEvent": ... @overload @staticmethod - def parse_obj(name: Literal["team_add"], payload: Dict[str, Any]) -> "TeamAddEvent": - ... + def parse_obj( + name: Literal["team_add"], payload: Dict[str, Any] + ) -> "TeamAddEvent": ... @overload @staticmethod - def parse_obj(name: Literal["team"], payload: Dict[str, Any]) -> "TeamEvent": - ... + def parse_obj(name: Literal["team"], payload: Dict[str, Any]) -> "TeamEvent": ... @overload @staticmethod - def parse_obj(name: Literal["watch"], payload: Dict[str, Any]) -> "WatchEvent": - ... + def parse_obj(name: Literal["watch"], payload: Dict[str, Any]) -> "WatchEvent": ... @overload @staticmethod def parse_obj( name: Literal["workflow_dispatch"], payload: Dict[str, Any] - ) -> "WorkflowDispatchEvent": - ... + ) -> "WorkflowDispatchEvent": ... @overload @staticmethod def parse_obj( name: Literal["workflow_job"], payload: Dict[str, Any] - ) -> "WorkflowJobEvent": - ... + ) -> "WorkflowJobEvent": ... @overload @staticmethod def parse_obj( name: Literal["workflow_run"], payload: Dict[str, Any] - ) -> "WorkflowRunEvent": - ... + ) -> "WorkflowRunEvent": ... @overload @staticmethod - def parse_obj(name: EventNameType, payload: Dict[str, Any]) -> "WebhookEvent": - ... + def parse_obj(name: EventNameType, payload: Dict[str, Any]) -> "WebhookEvent": ... @staticmethod def parse_obj(name: EventNameType, payload: Dict[str, Any]) -> "WebhookEvent": @@ -1278,9 +1164,11 @@ def sign( ) hmac_hex = hmac.new( secret.encode("utf-8"), - norm_payload.encode("utf-8") - if isinstance(norm_payload, str) - else norm_payload, + ( + norm_payload.encode("utf-8") + if isinstance(norm_payload, str) + else norm_payload + ), method, ).hexdigest() return f"{method}={hmac_hex}" diff --git a/githubkit/versions/rest.py b/githubkit/versions/rest.py index d831d0c93..1a65e12a2 100644 --- a/githubkit/versions/rest.py +++ b/githubkit/versions/rest.py @@ -21,8 +21,7 @@ if TYPE_CHECKING: - class _VersionProxy(V20221128RestNamespace): - ... + class _VersionProxy(V20221128RestNamespace): ... else: _VersionProxy = object @@ -56,18 +55,15 @@ def _github(self) -> "GitHubCore": ) @overload - def __call__(self, version: Literal["2022-11-28"]) -> "V20221128RestNamespace": - ... + def __call__(self, version: Literal["2022-11-28"]) -> "V20221128RestNamespace": ... @overload def __call__( self, version: Literal["ghec-2022-11-28"] - ) -> "GhecV20221128RestNamespace": - ... + ) -> "GhecV20221128RestNamespace": ... @overload - def __call__(self) -> "V20221128RestNamespace": - ... + def __call__(self) -> "V20221128RestNamespace": ... def __call__(self, version: VERSION_TYPE = LATEST_VERSION) -> Any: g = self._github diff --git a/githubkit/versions/v2022_11_28/models/group_0000.py b/githubkit/versions/v2022_11_28/models/group_0000.py index af5ba0f4a..f4b942313 100644 --- a/githubkit/versions/v2022_11_28/models/group_0000.py +++ b/githubkit/versions/v2022_11_28/models/group_0000.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0001.py b/githubkit/versions/v2022_11_28/models/group_0001.py index 9b91e00f5..f328dde28 100644 --- a/githubkit/versions/v2022_11_28/models/group_0001.py +++ b/githubkit/versions/v2022_11_28/models/group_0001.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0002.py b/githubkit/versions/v2022_11_28/models/group_0002.py index 4e3daf8bc..496517e26 100644 --- a/githubkit/versions/v2022_11_28/models/group_0002.py +++ b/githubkit/versions/v2022_11_28/models/group_0002.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0003.py b/githubkit/versions/v2022_11_28/models/group_0003.py index 71d27b404..149873db5 100644 --- a/githubkit/versions/v2022_11_28/models/group_0003.py +++ b/githubkit/versions/v2022_11_28/models/group_0003.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0004.py b/githubkit/versions/v2022_11_28/models/group_0004.py index 49ae0eafd..7df9e36cc 100644 --- a/githubkit/versions/v2022_11_28/models/group_0004.py +++ b/githubkit/versions/v2022_11_28/models/group_0004.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0005.py b/githubkit/versions/v2022_11_28/models/group_0005.py index 25db849a5..05d6a38e5 100644 --- a/githubkit/versions/v2022_11_28/models/group_0005.py +++ b/githubkit/versions/v2022_11_28/models/group_0005.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0006.py b/githubkit/versions/v2022_11_28/models/group_0006.py index a9ea7812e..11beacd57 100644 --- a/githubkit/versions/v2022_11_28/models/group_0006.py +++ b/githubkit/versions/v2022_11_28/models/group_0006.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0007.py b/githubkit/versions/v2022_11_28/models/group_0007.py index da1465cb6..983bd7573 100644 --- a/githubkit/versions/v2022_11_28/models/group_0007.py +++ b/githubkit/versions/v2022_11_28/models/group_0007.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0008.py b/githubkit/versions/v2022_11_28/models/group_0008.py index f8d61d80d..46a040e46 100644 --- a/githubkit/versions/v2022_11_28/models/group_0008.py +++ b/githubkit/versions/v2022_11_28/models/group_0008.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0009.py b/githubkit/versions/v2022_11_28/models/group_0009.py index d0fdb3f79..da977efaa 100644 --- a/githubkit/versions/v2022_11_28/models/group_0009.py +++ b/githubkit/versions/v2022_11_28/models/group_0009.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/v2022_11_28/models/group_0010.py b/githubkit/versions/v2022_11_28/models/group_0010.py index 3aa5d17b8..0e9b5b95b 100644 --- a/githubkit/versions/v2022_11_28/models/group_0010.py +++ b/githubkit/versions/v2022_11_28/models/group_0010.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/v2022_11_28/models/group_0011.py b/githubkit/versions/v2022_11_28/models/group_0011.py index 6bcc0d822..2971a7707 100644 --- a/githubkit/versions/v2022_11_28/models/group_0011.py +++ b/githubkit/versions/v2022_11_28/models/group_0011.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0012.py b/githubkit/versions/v2022_11_28/models/group_0012.py index 0bbcddf97..5fc898085 100644 --- a/githubkit/versions/v2022_11_28/models/group_0012.py +++ b/githubkit/versions/v2022_11_28/models/group_0012.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0013.py b/githubkit/versions/v2022_11_28/models/group_0013.py index e2c45b1ef..18bb77d78 100644 --- a/githubkit/versions/v2022_11_28/models/group_0013.py +++ b/githubkit/versions/v2022_11_28/models/group_0013.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0014.py b/githubkit/versions/v2022_11_28/models/group_0014.py index fc11c591e..a52e43ec6 100644 --- a/githubkit/versions/v2022_11_28/models/group_0014.py +++ b/githubkit/versions/v2022_11_28/models/group_0014.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal @@ -161,11 +160,11 @@ class AppPermissions(GitHubModel): default=UNSET, description="The level of permission to grant the access token for viewing and managing fine-grained personal access token requests to an organization.", ) - organization_personal_access_token_requests: Missing[ - Literal["read", "write"] - ] = Field( - default=UNSET, - description="The level of permission to grant the access token for viewing and managing fine-grained personal access tokens that have been approved by an organization.", + organization_personal_access_token_requests: Missing[Literal["read", "write"]] = ( + Field( + default=UNSET, + description="The level of permission to grant the access token for viewing and managing fine-grained personal access tokens that have been approved by an organization.", + ) ) organization_plan: Missing[Literal["read"]] = Field( default=UNSET, diff --git a/githubkit/versions/v2022_11_28/models/group_0015.py b/githubkit/versions/v2022_11_28/models/group_0015.py index 36627e183..3f03da45d 100644 --- a/githubkit/versions/v2022_11_28/models/group_0015.py +++ b/githubkit/versions/v2022_11_28/models/group_0015.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0016.py b/githubkit/versions/v2022_11_28/models/group_0016.py index 6a1b1ffbb..cde4cf931 100644 --- a/githubkit/versions/v2022_11_28/models/group_0016.py +++ b/githubkit/versions/v2022_11_28/models/group_0016.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0017.py b/githubkit/versions/v2022_11_28/models/group_0017.py index 7cd4b26bf..d4e1cd8bd 100644 --- a/githubkit/versions/v2022_11_28/models/group_0017.py +++ b/githubkit/versions/v2022_11_28/models/group_0017.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -148,11 +147,11 @@ class Repository(GitHubModel): default=UNSET, description="Whether a squash merge commit can use the pull request title as default. **This property has been deprecated. Please use `squash_merge_commit_title` instead.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) squash_merge_commit_message: Missing[ Literal["PR_BODY", "COMMIT_MESSAGES", "BLANK"] diff --git a/githubkit/versions/v2022_11_28/models/group_0018.py b/githubkit/versions/v2022_11_28/models/group_0018.py index 4ea3882df..d0815277b 100644 --- a/githubkit/versions/v2022_11_28/models/group_0018.py +++ b/githubkit/versions/v2022_11_28/models/group_0018.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0019.py b/githubkit/versions/v2022_11_28/models/group_0019.py index 813bd274a..3d62be535 100644 --- a/githubkit/versions/v2022_11_28/models/group_0019.py +++ b/githubkit/versions/v2022_11_28/models/group_0019.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0020.py b/githubkit/versions/v2022_11_28/models/group_0020.py index ba9a4b3e1..1aca25526 100644 --- a/githubkit/versions/v2022_11_28/models/group_0020.py +++ b/githubkit/versions/v2022_11_28/models/group_0020.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0021.py b/githubkit/versions/v2022_11_28/models/group_0021.py index 5f435597d..d3be8c786 100644 --- a/githubkit/versions/v2022_11_28/models/group_0021.py +++ b/githubkit/versions/v2022_11_28/models/group_0021.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0022.py b/githubkit/versions/v2022_11_28/models/group_0022.py index a9d78a859..ab9d22e40 100644 --- a/githubkit/versions/v2022_11_28/models/group_0022.py +++ b/githubkit/versions/v2022_11_28/models/group_0022.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0023.py b/githubkit/versions/v2022_11_28/models/group_0023.py index 1768f70e5..7cae710bd 100644 --- a/githubkit/versions/v2022_11_28/models/group_0023.py +++ b/githubkit/versions/v2022_11_28/models/group_0023.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0024.py b/githubkit/versions/v2022_11_28/models/group_0024.py index 0ef4137f2..1612d3026 100644 --- a/githubkit/versions/v2022_11_28/models/group_0024.py +++ b/githubkit/versions/v2022_11_28/models/group_0024.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0025.py b/githubkit/versions/v2022_11_28/models/group_0025.py index 9edee1429..ff820726e 100644 --- a/githubkit/versions/v2022_11_28/models/group_0025.py +++ b/githubkit/versions/v2022_11_28/models/group_0025.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0026.py b/githubkit/versions/v2022_11_28/models/group_0026.py index b1e723986..5c6be8292 100644 --- a/githubkit/versions/v2022_11_28/models/group_0026.py +++ b/githubkit/versions/v2022_11_28/models/group_0026.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0027.py b/githubkit/versions/v2022_11_28/models/group_0027.py index d55d5e8bd..b77c0064b 100644 --- a/githubkit/versions/v2022_11_28/models/group_0027.py +++ b/githubkit/versions/v2022_11_28/models/group_0027.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0028.py b/githubkit/versions/v2022_11_28/models/group_0028.py index b74343b14..f0cc1608d 100644 --- a/githubkit/versions/v2022_11_28/models/group_0028.py +++ b/githubkit/versions/v2022_11_28/models/group_0028.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0029.py b/githubkit/versions/v2022_11_28/models/group_0029.py index 415f5664a..aaa404eeb 100644 --- a/githubkit/versions/v2022_11_28/models/group_0029.py +++ b/githubkit/versions/v2022_11_28/models/group_0029.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0030.py b/githubkit/versions/v2022_11_28/models/group_0030.py index e70aed601..990c5e783 100644 --- a/githubkit/versions/v2022_11_28/models/group_0030.py +++ b/githubkit/versions/v2022_11_28/models/group_0030.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0031.py b/githubkit/versions/v2022_11_28/models/group_0031.py index 475bcd423..15de25f0c 100644 --- a/githubkit/versions/v2022_11_28/models/group_0031.py +++ b/githubkit/versions/v2022_11_28/models/group_0031.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0032.py b/githubkit/versions/v2022_11_28/models/group_0032.py index d52ba5e23..d723b51dc 100644 --- a/githubkit/versions/v2022_11_28/models/group_0032.py +++ b/githubkit/versions/v2022_11_28/models/group_0032.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0033.py b/githubkit/versions/v2022_11_28/models/group_0033.py index 0559e7be1..fd85f1373 100644 --- a/githubkit/versions/v2022_11_28/models/group_0033.py +++ b/githubkit/versions/v2022_11_28/models/group_0033.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0034.py b/githubkit/versions/v2022_11_28/models/group_0034.py index d6849b639..1d6d2893c 100644 --- a/githubkit/versions/v2022_11_28/models/group_0034.py +++ b/githubkit/versions/v2022_11_28/models/group_0034.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0035.py b/githubkit/versions/v2022_11_28/models/group_0035.py index 2d879842b..776e42f4f 100644 --- a/githubkit/versions/v2022_11_28/models/group_0035.py +++ b/githubkit/versions/v2022_11_28/models/group_0035.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0036.py b/githubkit/versions/v2022_11_28/models/group_0036.py index 470a66584..6a092e39d 100644 --- a/githubkit/versions/v2022_11_28/models/group_0036.py +++ b/githubkit/versions/v2022_11_28/models/group_0036.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0037.py b/githubkit/versions/v2022_11_28/models/group_0037.py index 86c0d9243..583006545 100644 --- a/githubkit/versions/v2022_11_28/models/group_0037.py +++ b/githubkit/versions/v2022_11_28/models/group_0037.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0038.py b/githubkit/versions/v2022_11_28/models/group_0038.py index 998703cff..94caec0b4 100644 --- a/githubkit/versions/v2022_11_28/models/group_0038.py +++ b/githubkit/versions/v2022_11_28/models/group_0038.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0039.py b/githubkit/versions/v2022_11_28/models/group_0039.py index 67f984119..df09f74a0 100644 --- a/githubkit/versions/v2022_11_28/models/group_0039.py +++ b/githubkit/versions/v2022_11_28/models/group_0039.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0040.py b/githubkit/versions/v2022_11_28/models/group_0040.py index 9787982cd..3f9dcc0fb 100644 --- a/githubkit/versions/v2022_11_28/models/group_0040.py +++ b/githubkit/versions/v2022_11_28/models/group_0040.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0041.py b/githubkit/versions/v2022_11_28/models/group_0041.py index 8f90bcb4b..32e3658f4 100644 --- a/githubkit/versions/v2022_11_28/models/group_0041.py +++ b/githubkit/versions/v2022_11_28/models/group_0041.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0042.py b/githubkit/versions/v2022_11_28/models/group_0042.py index 284f03c42..3fa53b8b7 100644 --- a/githubkit/versions/v2022_11_28/models/group_0042.py +++ b/githubkit/versions/v2022_11_28/models/group_0042.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0043.py b/githubkit/versions/v2022_11_28/models/group_0043.py index 76af94eeb..68fca7a2b 100644 --- a/githubkit/versions/v2022_11_28/models/group_0043.py +++ b/githubkit/versions/v2022_11_28/models/group_0043.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0044.py b/githubkit/versions/v2022_11_28/models/group_0044.py index 3fd2aa147..1922e917d 100644 --- a/githubkit/versions/v2022_11_28/models/group_0044.py +++ b/githubkit/versions/v2022_11_28/models/group_0044.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/v2022_11_28/models/group_0045.py b/githubkit/versions/v2022_11_28/models/group_0045.py index 68813b088..d49a37f42 100644 --- a/githubkit/versions/v2022_11_28/models/group_0045.py +++ b/githubkit/versions/v2022_11_28/models/group_0045.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0046.py b/githubkit/versions/v2022_11_28/models/group_0046.py index b50a6f4ca..adca7558a 100644 --- a/githubkit/versions/v2022_11_28/models/group_0046.py +++ b/githubkit/versions/v2022_11_28/models/group_0046.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0047.py b/githubkit/versions/v2022_11_28/models/group_0047.py index 1fc5b8c98..377dcbf55 100644 --- a/githubkit/versions/v2022_11_28/models/group_0047.py +++ b/githubkit/versions/v2022_11_28/models/group_0047.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0048.py b/githubkit/versions/v2022_11_28/models/group_0048.py index 5f92d6390..57f6dcc19 100644 --- a/githubkit/versions/v2022_11_28/models/group_0048.py +++ b/githubkit/versions/v2022_11_28/models/group_0048.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0049.py b/githubkit/versions/v2022_11_28/models/group_0049.py index bec244977..6e6d859ec 100644 --- a/githubkit/versions/v2022_11_28/models/group_0049.py +++ b/githubkit/versions/v2022_11_28/models/group_0049.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0050.py b/githubkit/versions/v2022_11_28/models/group_0050.py index 1857fe47b..c455a3207 100644 --- a/githubkit/versions/v2022_11_28/models/group_0050.py +++ b/githubkit/versions/v2022_11_28/models/group_0050.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0051.py b/githubkit/versions/v2022_11_28/models/group_0051.py index b58c6a662..d981a76fc 100644 --- a/githubkit/versions/v2022_11_28/models/group_0051.py +++ b/githubkit/versions/v2022_11_28/models/group_0051.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0052.py b/githubkit/versions/v2022_11_28/models/group_0052.py index f3bc225e5..c7f24dd2f 100644 --- a/githubkit/versions/v2022_11_28/models/group_0052.py +++ b/githubkit/versions/v2022_11_28/models/group_0052.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0053.py b/githubkit/versions/v2022_11_28/models/group_0053.py index 4861c779f..c454530e4 100644 --- a/githubkit/versions/v2022_11_28/models/group_0053.py +++ b/githubkit/versions/v2022_11_28/models/group_0053.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0054.py b/githubkit/versions/v2022_11_28/models/group_0054.py index 653c2c624..0faeb8276 100644 --- a/githubkit/versions/v2022_11_28/models/group_0054.py +++ b/githubkit/versions/v2022_11_28/models/group_0054.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0055.py b/githubkit/versions/v2022_11_28/models/group_0055.py index edf6967a1..cb271d715 100644 --- a/githubkit/versions/v2022_11_28/models/group_0055.py +++ b/githubkit/versions/v2022_11_28/models/group_0055.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0056.py b/githubkit/versions/v2022_11_28/models/group_0056.py index d187005ca..c4eca12ed 100644 --- a/githubkit/versions/v2022_11_28/models/group_0056.py +++ b/githubkit/versions/v2022_11_28/models/group_0056.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from githubkit.compat import GitHubModel, model_rebuild diff --git a/githubkit/versions/v2022_11_28/models/group_0057.py b/githubkit/versions/v2022_11_28/models/group_0057.py index 71935d026..b6ec716a4 100644 --- a/githubkit/versions/v2022_11_28/models/group_0057.py +++ b/githubkit/versions/v2022_11_28/models/group_0057.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0058.py b/githubkit/versions/v2022_11_28/models/group_0058.py index 12603c67e..9bfb09225 100644 --- a/githubkit/versions/v2022_11_28/models/group_0058.py +++ b/githubkit/versions/v2022_11_28/models/group_0058.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0059.py b/githubkit/versions/v2022_11_28/models/group_0059.py index c1e6eecd4..0ec430210 100644 --- a/githubkit/versions/v2022_11_28/models/group_0059.py +++ b/githubkit/versions/v2022_11_28/models/group_0059.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0060.py b/githubkit/versions/v2022_11_28/models/group_0060.py index a41ee96a0..8784bbb2a 100644 --- a/githubkit/versions/v2022_11_28/models/group_0060.py +++ b/githubkit/versions/v2022_11_28/models/group_0060.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0061.py b/githubkit/versions/v2022_11_28/models/group_0061.py index 18cccd438..f7d1b8ea9 100644 --- a/githubkit/versions/v2022_11_28/models/group_0061.py +++ b/githubkit/versions/v2022_11_28/models/group_0061.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0062.py b/githubkit/versions/v2022_11_28/models/group_0062.py index 3005a3d3e..32e884150 100644 --- a/githubkit/versions/v2022_11_28/models/group_0062.py +++ b/githubkit/versions/v2022_11_28/models/group_0062.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0063.py b/githubkit/versions/v2022_11_28/models/group_0063.py index 3c3d62fac..59d2cb03a 100644 --- a/githubkit/versions/v2022_11_28/models/group_0063.py +++ b/githubkit/versions/v2022_11_28/models/group_0063.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0064.py b/githubkit/versions/v2022_11_28/models/group_0064.py index b4acbdf44..0dedb86e7 100644 --- a/githubkit/versions/v2022_11_28/models/group_0064.py +++ b/githubkit/versions/v2022_11_28/models/group_0064.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0065.py b/githubkit/versions/v2022_11_28/models/group_0065.py index a9c12ef99..b8d8694be 100644 --- a/githubkit/versions/v2022_11_28/models/group_0065.py +++ b/githubkit/versions/v2022_11_28/models/group_0065.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0066.py b/githubkit/versions/v2022_11_28/models/group_0066.py index 7ea4894b7..3187592df 100644 --- a/githubkit/versions/v2022_11_28/models/group_0066.py +++ b/githubkit/versions/v2022_11_28/models/group_0066.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0067.py b/githubkit/versions/v2022_11_28/models/group_0067.py index c9183126b..99ef5d566 100644 --- a/githubkit/versions/v2022_11_28/models/group_0067.py +++ b/githubkit/versions/v2022_11_28/models/group_0067.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0068.py b/githubkit/versions/v2022_11_28/models/group_0068.py index fe77ff783..5ad0792e6 100644 --- a/githubkit/versions/v2022_11_28/models/group_0068.py +++ b/githubkit/versions/v2022_11_28/models/group_0068.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0069.py b/githubkit/versions/v2022_11_28/models/group_0069.py index 81d2c1cfd..10da327d7 100644 --- a/githubkit/versions/v2022_11_28/models/group_0069.py +++ b/githubkit/versions/v2022_11_28/models/group_0069.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -59,11 +58,11 @@ class CodeScanningOrganizationAlertItems(GitHubModel): ] = Field( description="**Required when the state is dismissed.** The reason for dismissing or closing the alert." ) - dismissed_comment: Missing[ - Union[Annotated[str, Field(max_length=280)], None] - ] = Field( - default=UNSET, - description="The dismissal comment associated with the dismissal of the alert.", + dismissed_comment: Missing[Union[Annotated[str, Field(max_length=280)], None]] = ( + Field( + default=UNSET, + description="The dismissal comment associated with the dismissal of the alert.", + ) ) rule: CodeScanningAlertRuleSummary = Field() tool: CodeScanningAnalysisTool = Field() diff --git a/githubkit/versions/v2022_11_28/models/group_0070.py b/githubkit/versions/v2022_11_28/models/group_0070.py index 6ca0056da..4fbdf9f60 100644 --- a/githubkit/versions/v2022_11_28/models/group_0070.py +++ b/githubkit/versions/v2022_11_28/models/group_0070.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0071.py b/githubkit/versions/v2022_11_28/models/group_0071.py index 6c28cfe05..4d6b65b92 100644 --- a/githubkit/versions/v2022_11_28/models/group_0071.py +++ b/githubkit/versions/v2022_11_28/models/group_0071.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0072.py b/githubkit/versions/v2022_11_28/models/group_0072.py index 63c780af6..61840d31d 100644 --- a/githubkit/versions/v2022_11_28/models/group_0072.py +++ b/githubkit/versions/v2022_11_28/models/group_0072.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0073.py b/githubkit/versions/v2022_11_28/models/group_0073.py index d8216d948..638c75792 100644 --- a/githubkit/versions/v2022_11_28/models/group_0073.py +++ b/githubkit/versions/v2022_11_28/models/group_0073.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal @@ -30,10 +29,10 @@ class CopilotOrganizationDetails(ExtraGitHubModel): title="Copilot Business Seat Breakdown", description="The breakdown of Copilot Business seats for the organization.", ) - public_code_suggestions: Literal[ - "allow", "block", "unconfigured", "unknown" - ] = Field( - description="The organization policy for allowing or disallowing Copilot to make suggestions that match public code." + public_code_suggestions: Literal["allow", "block", "unconfigured", "unknown"] = ( + Field( + description="The organization policy for allowing or disallowing Copilot to make suggestions that match public code." + ) ) ide_chat: Missing[Literal["enabled", "disabled", "unconfigured"]] = Field( default=UNSET, diff --git a/githubkit/versions/v2022_11_28/models/group_0074.py b/githubkit/versions/v2022_11_28/models/group_0074.py index 13ce011fc..5a2cdf61e 100644 --- a/githubkit/versions/v2022_11_28/models/group_0074.py +++ b/githubkit/versions/v2022_11_28/models/group_0074.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0075.py b/githubkit/versions/v2022_11_28/models/group_0075.py index 9448b15da..5be0ec8a6 100644 --- a/githubkit/versions/v2022_11_28/models/group_0075.py +++ b/githubkit/versions/v2022_11_28/models/group_0075.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0076.py b/githubkit/versions/v2022_11_28/models/group_0076.py index daf5d6546..d1f368554 100644 --- a/githubkit/versions/v2022_11_28/models/group_0076.py +++ b/githubkit/versions/v2022_11_28/models/group_0076.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/v2022_11_28/models/group_0077.py b/githubkit/versions/v2022_11_28/models/group_0077.py index 0f029b4f5..a7dfe2e7d 100644 --- a/githubkit/versions/v2022_11_28/models/group_0077.py +++ b/githubkit/versions/v2022_11_28/models/group_0077.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0078.py b/githubkit/versions/v2022_11_28/models/group_0078.py index 2f76dd139..88a401356 100644 --- a/githubkit/versions/v2022_11_28/models/group_0078.py +++ b/githubkit/versions/v2022_11_28/models/group_0078.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0079.py b/githubkit/versions/v2022_11_28/models/group_0079.py index fe4fba0e2..1f1596144 100644 --- a/githubkit/versions/v2022_11_28/models/group_0079.py +++ b/githubkit/versions/v2022_11_28/models/group_0079.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0080.py b/githubkit/versions/v2022_11_28/models/group_0080.py index db07b4648..ad190d5de 100644 --- a/githubkit/versions/v2022_11_28/models/group_0080.py +++ b/githubkit/versions/v2022_11_28/models/group_0080.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0081.py b/githubkit/versions/v2022_11_28/models/group_0081.py index 9db787b94..9b7c2e376 100644 --- a/githubkit/versions/v2022_11_28/models/group_0081.py +++ b/githubkit/versions/v2022_11_28/models/group_0081.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0082.py b/githubkit/versions/v2022_11_28/models/group_0082.py index e80e4e95f..691af00f1 100644 --- a/githubkit/versions/v2022_11_28/models/group_0082.py +++ b/githubkit/versions/v2022_11_28/models/group_0082.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0083.py b/githubkit/versions/v2022_11_28/models/group_0083.py index 9e7d2460d..e6f9743e0 100644 --- a/githubkit/versions/v2022_11_28/models/group_0083.py +++ b/githubkit/versions/v2022_11_28/models/group_0083.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0084.py b/githubkit/versions/v2022_11_28/models/group_0084.py index 085ceffab..90b3e4df8 100644 --- a/githubkit/versions/v2022_11_28/models/group_0084.py +++ b/githubkit/versions/v2022_11_28/models/group_0084.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0085.py b/githubkit/versions/v2022_11_28/models/group_0085.py index f75f1ae8e..d92a39bb6 100644 --- a/githubkit/versions/v2022_11_28/models/group_0085.py +++ b/githubkit/versions/v2022_11_28/models/group_0085.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0086.py b/githubkit/versions/v2022_11_28/models/group_0086.py index bd3451b63..73cbad8d5 100644 --- a/githubkit/versions/v2022_11_28/models/group_0086.py +++ b/githubkit/versions/v2022_11_28/models/group_0086.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0087.py b/githubkit/versions/v2022_11_28/models/group_0087.py index 228496c93..7284dd91d 100644 --- a/githubkit/versions/v2022_11_28/models/group_0087.py +++ b/githubkit/versions/v2022_11_28/models/group_0087.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0088.py b/githubkit/versions/v2022_11_28/models/group_0088.py index f7ea75b0b..3fdddf239 100644 --- a/githubkit/versions/v2022_11_28/models/group_0088.py +++ b/githubkit/versions/v2022_11_28/models/group_0088.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0089.py b/githubkit/versions/v2022_11_28/models/group_0089.py index fb76e6e91..a4c5c0aa0 100644 --- a/githubkit/versions/v2022_11_28/models/group_0089.py +++ b/githubkit/versions/v2022_11_28/models/group_0089.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0090.py b/githubkit/versions/v2022_11_28/models/group_0090.py index 40b608b1e..1003eee7e 100644 --- a/githubkit/versions/v2022_11_28/models/group_0090.py +++ b/githubkit/versions/v2022_11_28/models/group_0090.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0091.py b/githubkit/versions/v2022_11_28/models/group_0091.py index ee57af35a..a77c789fe 100644 --- a/githubkit/versions/v2022_11_28/models/group_0091.py +++ b/githubkit/versions/v2022_11_28/models/group_0091.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0092.py b/githubkit/versions/v2022_11_28/models/group_0092.py index bfe110c98..9b8b64121 100644 --- a/githubkit/versions/v2022_11_28/models/group_0092.py +++ b/githubkit/versions/v2022_11_28/models/group_0092.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/v2022_11_28/models/group_0093.py b/githubkit/versions/v2022_11_28/models/group_0093.py index f1b694b62..67b56b31d 100644 --- a/githubkit/versions/v2022_11_28/models/group_0093.py +++ b/githubkit/versions/v2022_11_28/models/group_0093.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0094.py b/githubkit/versions/v2022_11_28/models/group_0094.py index 0a04558da..35b60a16d 100644 --- a/githubkit/versions/v2022_11_28/models/group_0094.py +++ b/githubkit/versions/v2022_11_28/models/group_0094.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0095.py b/githubkit/versions/v2022_11_28/models/group_0095.py index 776180cf5..25d501513 100644 --- a/githubkit/versions/v2022_11_28/models/group_0095.py +++ b/githubkit/versions/v2022_11_28/models/group_0095.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -122,11 +121,11 @@ class FullRepository(GitHubModel): allow_merge_commit: Missing[bool] = Field(default=UNSET) allow_update_branch: Missing[bool] = Field(default=UNSET) use_squash_pr_title_as_default: Missing[bool] = Field(default=UNSET) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) squash_merge_commit_message: Missing[ Literal["PR_BODY", "COMMIT_MESSAGES", "BLANK"] diff --git a/githubkit/versions/v2022_11_28/models/group_0096.py b/githubkit/versions/v2022_11_28/models/group_0096.py index d46037915..eebae53bb 100644 --- a/githubkit/versions/v2022_11_28/models/group_0096.py +++ b/githubkit/versions/v2022_11_28/models/group_0096.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0097.py b/githubkit/versions/v2022_11_28/models/group_0097.py index 6afe4aeae..272d75eec 100644 --- a/githubkit/versions/v2022_11_28/models/group_0097.py +++ b/githubkit/versions/v2022_11_28/models/group_0097.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0098.py b/githubkit/versions/v2022_11_28/models/group_0098.py index d30a66de3..cac223a59 100644 --- a/githubkit/versions/v2022_11_28/models/group_0098.py +++ b/githubkit/versions/v2022_11_28/models/group_0098.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0099.py b/githubkit/versions/v2022_11_28/models/group_0099.py index 8ba8f8cc4..705a9843f 100644 --- a/githubkit/versions/v2022_11_28/models/group_0099.py +++ b/githubkit/versions/v2022_11_28/models/group_0099.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0100.py b/githubkit/versions/v2022_11_28/models/group_0100.py index b10044900..5729a4ea4 100644 --- a/githubkit/versions/v2022_11_28/models/group_0100.py +++ b/githubkit/versions/v2022_11_28/models/group_0100.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0101.py b/githubkit/versions/v2022_11_28/models/group_0101.py index 744c9bd0c..a4f2493f8 100644 --- a/githubkit/versions/v2022_11_28/models/group_0101.py +++ b/githubkit/versions/v2022_11_28/models/group_0101.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0102.py b/githubkit/versions/v2022_11_28/models/group_0102.py index 4b4ead950..cdb3781a4 100644 --- a/githubkit/versions/v2022_11_28/models/group_0102.py +++ b/githubkit/versions/v2022_11_28/models/group_0102.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0103.py b/githubkit/versions/v2022_11_28/models/group_0103.py index 6cdbbcb9b..044be564a 100644 --- a/githubkit/versions/v2022_11_28/models/group_0103.py +++ b/githubkit/versions/v2022_11_28/models/group_0103.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0104.py b/githubkit/versions/v2022_11_28/models/group_0104.py index 9076ce84a..78f66546d 100644 --- a/githubkit/versions/v2022_11_28/models/group_0104.py +++ b/githubkit/versions/v2022_11_28/models/group_0104.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0105.py b/githubkit/versions/v2022_11_28/models/group_0105.py index 7c89a729a..f8ea76c29 100644 --- a/githubkit/versions/v2022_11_28/models/group_0105.py +++ b/githubkit/versions/v2022_11_28/models/group_0105.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0106.py b/githubkit/versions/v2022_11_28/models/group_0106.py index ea90365fd..914170aec 100644 --- a/githubkit/versions/v2022_11_28/models/group_0106.py +++ b/githubkit/versions/v2022_11_28/models/group_0106.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0107.py b/githubkit/versions/v2022_11_28/models/group_0107.py index 671112aed..050994ef3 100644 --- a/githubkit/versions/v2022_11_28/models/group_0107.py +++ b/githubkit/versions/v2022_11_28/models/group_0107.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0108.py b/githubkit/versions/v2022_11_28/models/group_0108.py index 7035fd8bf..66a5f8402 100644 --- a/githubkit/versions/v2022_11_28/models/group_0108.py +++ b/githubkit/versions/v2022_11_28/models/group_0108.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0109.py b/githubkit/versions/v2022_11_28/models/group_0109.py index 47a72331a..2c6f9a782 100644 --- a/githubkit/versions/v2022_11_28/models/group_0109.py +++ b/githubkit/versions/v2022_11_28/models/group_0109.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0110.py b/githubkit/versions/v2022_11_28/models/group_0110.py index 04a4d53ae..24be869ac 100644 --- a/githubkit/versions/v2022_11_28/models/group_0110.py +++ b/githubkit/versions/v2022_11_28/models/group_0110.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0111.py b/githubkit/versions/v2022_11_28/models/group_0111.py index 5f2a8f8dc..5a1b53ca6 100644 --- a/githubkit/versions/v2022_11_28/models/group_0111.py +++ b/githubkit/versions/v2022_11_28/models/group_0111.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0112.py b/githubkit/versions/v2022_11_28/models/group_0112.py index 922e9c6fd..c9ff06af2 100644 --- a/githubkit/versions/v2022_11_28/models/group_0112.py +++ b/githubkit/versions/v2022_11_28/models/group_0112.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0113.py b/githubkit/versions/v2022_11_28/models/group_0113.py index 06b4dedeb..8f7b74ce6 100644 --- a/githubkit/versions/v2022_11_28/models/group_0113.py +++ b/githubkit/versions/v2022_11_28/models/group_0113.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0114.py b/githubkit/versions/v2022_11_28/models/group_0114.py index da24f75d4..a05dba582 100644 --- a/githubkit/versions/v2022_11_28/models/group_0114.py +++ b/githubkit/versions/v2022_11_28/models/group_0114.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0115.py b/githubkit/versions/v2022_11_28/models/group_0115.py index 761513f36..d08a2932e 100644 --- a/githubkit/versions/v2022_11_28/models/group_0115.py +++ b/githubkit/versions/v2022_11_28/models/group_0115.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0116.py b/githubkit/versions/v2022_11_28/models/group_0116.py index 658e61c07..9057e5170 100644 --- a/githubkit/versions/v2022_11_28/models/group_0116.py +++ b/githubkit/versions/v2022_11_28/models/group_0116.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0117.py b/githubkit/versions/v2022_11_28/models/group_0117.py index 3183ea522..a0cca3785 100644 --- a/githubkit/versions/v2022_11_28/models/group_0117.py +++ b/githubkit/versions/v2022_11_28/models/group_0117.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0118.py b/githubkit/versions/v2022_11_28/models/group_0118.py index a93b3aaee..a74b86067 100644 --- a/githubkit/versions/v2022_11_28/models/group_0118.py +++ b/githubkit/versions/v2022_11_28/models/group_0118.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0119.py b/githubkit/versions/v2022_11_28/models/group_0119.py index 2c8e6da43..e05238ec3 100644 --- a/githubkit/versions/v2022_11_28/models/group_0119.py +++ b/githubkit/versions/v2022_11_28/models/group_0119.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0120.py b/githubkit/versions/v2022_11_28/models/group_0120.py index d94e80506..61f747c4d 100644 --- a/githubkit/versions/v2022_11_28/models/group_0120.py +++ b/githubkit/versions/v2022_11_28/models/group_0120.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0121.py b/githubkit/versions/v2022_11_28/models/group_0121.py index bd3952528..a92c84f61 100644 --- a/githubkit/versions/v2022_11_28/models/group_0121.py +++ b/githubkit/versions/v2022_11_28/models/group_0121.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0122.py b/githubkit/versions/v2022_11_28/models/group_0122.py index b4bf0ffcf..97772e511 100644 --- a/githubkit/versions/v2022_11_28/models/group_0122.py +++ b/githubkit/versions/v2022_11_28/models/group_0122.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0123.py b/githubkit/versions/v2022_11_28/models/group_0123.py index 2ae2bcd4b..1741604e2 100644 --- a/githubkit/versions/v2022_11_28/models/group_0123.py +++ b/githubkit/versions/v2022_11_28/models/group_0123.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0124.py b/githubkit/versions/v2022_11_28/models/group_0124.py index 0d2195baf..dae0ba0a8 100644 --- a/githubkit/versions/v2022_11_28/models/group_0124.py +++ b/githubkit/versions/v2022_11_28/models/group_0124.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0125.py b/githubkit/versions/v2022_11_28/models/group_0125.py index eabce22fd..682aa611e 100644 --- a/githubkit/versions/v2022_11_28/models/group_0125.py +++ b/githubkit/versions/v2022_11_28/models/group_0125.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0126.py b/githubkit/versions/v2022_11_28/models/group_0126.py index 1468bdc11..5dcc926c8 100644 --- a/githubkit/versions/v2022_11_28/models/group_0126.py +++ b/githubkit/versions/v2022_11_28/models/group_0126.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0127.py b/githubkit/versions/v2022_11_28/models/group_0127.py index e3cdbf88e..6b7565aaa 100644 --- a/githubkit/versions/v2022_11_28/models/group_0127.py +++ b/githubkit/versions/v2022_11_28/models/group_0127.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0128.py b/githubkit/versions/v2022_11_28/models/group_0128.py index cd53a19cd..396fce809 100644 --- a/githubkit/versions/v2022_11_28/models/group_0128.py +++ b/githubkit/versions/v2022_11_28/models/group_0128.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0129.py b/githubkit/versions/v2022_11_28/models/group_0129.py index 44e639c54..0a4605864 100644 --- a/githubkit/versions/v2022_11_28/models/group_0129.py +++ b/githubkit/versions/v2022_11_28/models/group_0129.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0130.py b/githubkit/versions/v2022_11_28/models/group_0130.py index 2a3a7f0ff..dab0871f3 100644 --- a/githubkit/versions/v2022_11_28/models/group_0130.py +++ b/githubkit/versions/v2022_11_28/models/group_0130.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0131.py b/githubkit/versions/v2022_11_28/models/group_0131.py index 9391b5910..2f042995e 100644 --- a/githubkit/versions/v2022_11_28/models/group_0131.py +++ b/githubkit/versions/v2022_11_28/models/group_0131.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0132.py b/githubkit/versions/v2022_11_28/models/group_0132.py index 5e3a114d7..ae313edff 100644 --- a/githubkit/versions/v2022_11_28/models/group_0132.py +++ b/githubkit/versions/v2022_11_28/models/group_0132.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0133.py b/githubkit/versions/v2022_11_28/models/group_0133.py index bb7191cd6..19d31c199 100644 --- a/githubkit/versions/v2022_11_28/models/group_0133.py +++ b/githubkit/versions/v2022_11_28/models/group_0133.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0134.py b/githubkit/versions/v2022_11_28/models/group_0134.py index e43e89b80..1986e3106 100644 --- a/githubkit/versions/v2022_11_28/models/group_0134.py +++ b/githubkit/versions/v2022_11_28/models/group_0134.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0135.py b/githubkit/versions/v2022_11_28/models/group_0135.py index 096fed9d0..68d3ec209 100644 --- a/githubkit/versions/v2022_11_28/models/group_0135.py +++ b/githubkit/versions/v2022_11_28/models/group_0135.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0136.py b/githubkit/versions/v2022_11_28/models/group_0136.py index 1078f78b4..eed896c70 100644 --- a/githubkit/versions/v2022_11_28/models/group_0136.py +++ b/githubkit/versions/v2022_11_28/models/group_0136.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0137.py b/githubkit/versions/v2022_11_28/models/group_0137.py index 9052a7261..4be9aa73e 100644 --- a/githubkit/versions/v2022_11_28/models/group_0137.py +++ b/githubkit/versions/v2022_11_28/models/group_0137.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0138.py b/githubkit/versions/v2022_11_28/models/group_0138.py index 98ef41819..b7be403af 100644 --- a/githubkit/versions/v2022_11_28/models/group_0138.py +++ b/githubkit/versions/v2022_11_28/models/group_0138.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0139.py b/githubkit/versions/v2022_11_28/models/group_0139.py index 340cecbb4..7f2b2b444 100644 --- a/githubkit/versions/v2022_11_28/models/group_0139.py +++ b/githubkit/versions/v2022_11_28/models/group_0139.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0140.py b/githubkit/versions/v2022_11_28/models/group_0140.py index 30c1c84ee..a37ca3a7e 100644 --- a/githubkit/versions/v2022_11_28/models/group_0140.py +++ b/githubkit/versions/v2022_11_28/models/group_0140.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0141.py b/githubkit/versions/v2022_11_28/models/group_0141.py index 521fc7078..fc6e17b4a 100644 --- a/githubkit/versions/v2022_11_28/models/group_0141.py +++ b/githubkit/versions/v2022_11_28/models/group_0141.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0142.py b/githubkit/versions/v2022_11_28/models/group_0142.py index 4860282e2..6b934a917 100644 --- a/githubkit/versions/v2022_11_28/models/group_0142.py +++ b/githubkit/versions/v2022_11_28/models/group_0142.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0143.py b/githubkit/versions/v2022_11_28/models/group_0143.py index 43e8be27e..1b65a991f 100644 --- a/githubkit/versions/v2022_11_28/models/group_0143.py +++ b/githubkit/versions/v2022_11_28/models/group_0143.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0144.py b/githubkit/versions/v2022_11_28/models/group_0144.py index c538a91cb..bf5d392cb 100644 --- a/githubkit/versions/v2022_11_28/models/group_0144.py +++ b/githubkit/versions/v2022_11_28/models/group_0144.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0145.py b/githubkit/versions/v2022_11_28/models/group_0145.py index 2f9476bc5..d5b5146c9 100644 --- a/githubkit/versions/v2022_11_28/models/group_0145.py +++ b/githubkit/versions/v2022_11_28/models/group_0145.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0146.py b/githubkit/versions/v2022_11_28/models/group_0146.py index b4b7eb4d4..2665ccb3b 100644 --- a/githubkit/versions/v2022_11_28/models/group_0146.py +++ b/githubkit/versions/v2022_11_28/models/group_0146.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0147.py b/githubkit/versions/v2022_11_28/models/group_0147.py index 0d5de1f71..b7cb92d6f 100644 --- a/githubkit/versions/v2022_11_28/models/group_0147.py +++ b/githubkit/versions/v2022_11_28/models/group_0147.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0148.py b/githubkit/versions/v2022_11_28/models/group_0148.py index be019bfb3..08e6fd84f 100644 --- a/githubkit/versions/v2022_11_28/models/group_0148.py +++ b/githubkit/versions/v2022_11_28/models/group_0148.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0149.py b/githubkit/versions/v2022_11_28/models/group_0149.py index dd64f3601..667f2f8ab 100644 --- a/githubkit/versions/v2022_11_28/models/group_0149.py +++ b/githubkit/versions/v2022_11_28/models/group_0149.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0150.py b/githubkit/versions/v2022_11_28/models/group_0150.py index d69a043e3..335b1a1b9 100644 --- a/githubkit/versions/v2022_11_28/models/group_0150.py +++ b/githubkit/versions/v2022_11_28/models/group_0150.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0151.py b/githubkit/versions/v2022_11_28/models/group_0151.py index ad87a2011..c46e2d9cd 100644 --- a/githubkit/versions/v2022_11_28/models/group_0151.py +++ b/githubkit/versions/v2022_11_28/models/group_0151.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0152.py b/githubkit/versions/v2022_11_28/models/group_0152.py index 3e1193d6e..1825e5712 100644 --- a/githubkit/versions/v2022_11_28/models/group_0152.py +++ b/githubkit/versions/v2022_11_28/models/group_0152.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0153.py b/githubkit/versions/v2022_11_28/models/group_0153.py index 6f46c78ac..04f67c7ff 100644 --- a/githubkit/versions/v2022_11_28/models/group_0153.py +++ b/githubkit/versions/v2022_11_28/models/group_0153.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0154.py b/githubkit/versions/v2022_11_28/models/group_0154.py index 6e6037f14..a51bdd0eb 100644 --- a/githubkit/versions/v2022_11_28/models/group_0154.py +++ b/githubkit/versions/v2022_11_28/models/group_0154.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0155.py b/githubkit/versions/v2022_11_28/models/group_0155.py index 31b81949e..2252539d9 100644 --- a/githubkit/versions/v2022_11_28/models/group_0155.py +++ b/githubkit/versions/v2022_11_28/models/group_0155.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0156.py b/githubkit/versions/v2022_11_28/models/group_0156.py index 80c0e6f2b..897f77145 100644 --- a/githubkit/versions/v2022_11_28/models/group_0156.py +++ b/githubkit/versions/v2022_11_28/models/group_0156.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0157.py b/githubkit/versions/v2022_11_28/models/group_0157.py index 2070f429a..4e5c3a572 100644 --- a/githubkit/versions/v2022_11_28/models/group_0157.py +++ b/githubkit/versions/v2022_11_28/models/group_0157.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0158.py b/githubkit/versions/v2022_11_28/models/group_0158.py index c3e8cc3df..cb0c0f09c 100644 --- a/githubkit/versions/v2022_11_28/models/group_0158.py +++ b/githubkit/versions/v2022_11_28/models/group_0158.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0159.py b/githubkit/versions/v2022_11_28/models/group_0159.py index 7701529bb..e41a57331 100644 --- a/githubkit/versions/v2022_11_28/models/group_0159.py +++ b/githubkit/versions/v2022_11_28/models/group_0159.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0160.py b/githubkit/versions/v2022_11_28/models/group_0160.py index 47f84e66c..3a917b352 100644 --- a/githubkit/versions/v2022_11_28/models/group_0160.py +++ b/githubkit/versions/v2022_11_28/models/group_0160.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0161.py b/githubkit/versions/v2022_11_28/models/group_0161.py index 56e6466e6..e33032524 100644 --- a/githubkit/versions/v2022_11_28/models/group_0161.py +++ b/githubkit/versions/v2022_11_28/models/group_0161.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0162.py b/githubkit/versions/v2022_11_28/models/group_0162.py index ff21bb0c0..ec954ebac 100644 --- a/githubkit/versions/v2022_11_28/models/group_0162.py +++ b/githubkit/versions/v2022_11_28/models/group_0162.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0163.py b/githubkit/versions/v2022_11_28/models/group_0163.py index 5c4737945..b52291a7e 100644 --- a/githubkit/versions/v2022_11_28/models/group_0163.py +++ b/githubkit/versions/v2022_11_28/models/group_0163.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0164.py b/githubkit/versions/v2022_11_28/models/group_0164.py index ce37b2c51..ac687db77 100644 --- a/githubkit/versions/v2022_11_28/models/group_0164.py +++ b/githubkit/versions/v2022_11_28/models/group_0164.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0165.py b/githubkit/versions/v2022_11_28/models/group_0165.py index 90da3006a..831ca354e 100644 --- a/githubkit/versions/v2022_11_28/models/group_0165.py +++ b/githubkit/versions/v2022_11_28/models/group_0165.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0166.py b/githubkit/versions/v2022_11_28/models/group_0166.py index de343b02a..21a8d9682 100644 --- a/githubkit/versions/v2022_11_28/models/group_0166.py +++ b/githubkit/versions/v2022_11_28/models/group_0166.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0167.py b/githubkit/versions/v2022_11_28/models/group_0167.py index a08979de6..fd2c01986 100644 --- a/githubkit/versions/v2022_11_28/models/group_0167.py +++ b/githubkit/versions/v2022_11_28/models/group_0167.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0168.py b/githubkit/versions/v2022_11_28/models/group_0168.py index fa6ddec68..b0ee93173 100644 --- a/githubkit/versions/v2022_11_28/models/group_0168.py +++ b/githubkit/versions/v2022_11_28/models/group_0168.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0169.py b/githubkit/versions/v2022_11_28/models/group_0169.py index cbd3ea5e9..3cca2c7af 100644 --- a/githubkit/versions/v2022_11_28/models/group_0169.py +++ b/githubkit/versions/v2022_11_28/models/group_0169.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List @@ -48,9 +47,9 @@ class WorkflowRunUsagePropBillablePropUbuntu(GitHubModel): total_ms: int = Field() jobs: int = Field() - job_runs: Missing[ - List[WorkflowRunUsagePropBillablePropUbuntuPropJobRunsItems] - ] = Field(default=UNSET) + job_runs: Missing[List[WorkflowRunUsagePropBillablePropUbuntuPropJobRunsItems]] = ( + Field(default=UNSET) + ) class WorkflowRunUsagePropBillablePropUbuntuPropJobRunsItems(GitHubModel): @@ -65,9 +64,9 @@ class WorkflowRunUsagePropBillablePropMacos(GitHubModel): total_ms: int = Field() jobs: int = Field() - job_runs: Missing[ - List[WorkflowRunUsagePropBillablePropMacosPropJobRunsItems] - ] = Field(default=UNSET) + job_runs: Missing[List[WorkflowRunUsagePropBillablePropMacosPropJobRunsItems]] = ( + Field(default=UNSET) + ) class WorkflowRunUsagePropBillablePropMacosPropJobRunsItems(GitHubModel): @@ -82,9 +81,9 @@ class WorkflowRunUsagePropBillablePropWindows(GitHubModel): total_ms: int = Field() jobs: int = Field() - job_runs: Missing[ - List[WorkflowRunUsagePropBillablePropWindowsPropJobRunsItems] - ] = Field(default=UNSET) + job_runs: Missing[List[WorkflowRunUsagePropBillablePropWindowsPropJobRunsItems]] = ( + Field(default=UNSET) + ) class WorkflowRunUsagePropBillablePropWindowsPropJobRunsItems(GitHubModel): diff --git a/githubkit/versions/v2022_11_28/models/group_0170.py b/githubkit/versions/v2022_11_28/models/group_0170.py index 908b65809..23b0c91f9 100644 --- a/githubkit/versions/v2022_11_28/models/group_0170.py +++ b/githubkit/versions/v2022_11_28/models/group_0170.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0171.py b/githubkit/versions/v2022_11_28/models/group_0171.py index 34642ab6c..468497ad7 100644 --- a/githubkit/versions/v2022_11_28/models/group_0171.py +++ b/githubkit/versions/v2022_11_28/models/group_0171.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0172.py b/githubkit/versions/v2022_11_28/models/group_0172.py index 76af719a2..245d14611 100644 --- a/githubkit/versions/v2022_11_28/models/group_0172.py +++ b/githubkit/versions/v2022_11_28/models/group_0172.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0173.py b/githubkit/versions/v2022_11_28/models/group_0173.py index f2dc9558f..3a5b5b6e7 100644 --- a/githubkit/versions/v2022_11_28/models/group_0173.py +++ b/githubkit/versions/v2022_11_28/models/group_0173.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0174.py b/githubkit/versions/v2022_11_28/models/group_0174.py index 9ce05be9f..c9909abb8 100644 --- a/githubkit/versions/v2022_11_28/models/group_0174.py +++ b/githubkit/versions/v2022_11_28/models/group_0174.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0175.py b/githubkit/versions/v2022_11_28/models/group_0175.py index cc109c5f1..b1fcd851f 100644 --- a/githubkit/versions/v2022_11_28/models/group_0175.py +++ b/githubkit/versions/v2022_11_28/models/group_0175.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0176.py b/githubkit/versions/v2022_11_28/models/group_0176.py index 41d897282..23aa15d33 100644 --- a/githubkit/versions/v2022_11_28/models/group_0176.py +++ b/githubkit/versions/v2022_11_28/models/group_0176.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/v2022_11_28/models/group_0177.py b/githubkit/versions/v2022_11_28/models/group_0177.py index c79d46314..c32c03ef4 100644 --- a/githubkit/versions/v2022_11_28/models/group_0177.py +++ b/githubkit/versions/v2022_11_28/models/group_0177.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/v2022_11_28/models/group_0178.py b/githubkit/versions/v2022_11_28/models/group_0178.py index 57faf512d..ae72ee1d9 100644 --- a/githubkit/versions/v2022_11_28/models/group_0178.py +++ b/githubkit/versions/v2022_11_28/models/group_0178.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0179.py b/githubkit/versions/v2022_11_28/models/group_0179.py index fa8f1e406..8ddc071e1 100644 --- a/githubkit/versions/v2022_11_28/models/group_0179.py +++ b/githubkit/versions/v2022_11_28/models/group_0179.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0180.py b/githubkit/versions/v2022_11_28/models/group_0180.py index fd67cc0c3..03ad6635a 100644 --- a/githubkit/versions/v2022_11_28/models/group_0180.py +++ b/githubkit/versions/v2022_11_28/models/group_0180.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0181.py b/githubkit/versions/v2022_11_28/models/group_0181.py index e95f4787d..ce82b54ec 100644 --- a/githubkit/versions/v2022_11_28/models/group_0181.py +++ b/githubkit/versions/v2022_11_28/models/group_0181.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0182.py b/githubkit/versions/v2022_11_28/models/group_0182.py index 2b1f1b6c1..ed06ce4b2 100644 --- a/githubkit/versions/v2022_11_28/models/group_0182.py +++ b/githubkit/versions/v2022_11_28/models/group_0182.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/v2022_11_28/models/group_0183.py b/githubkit/versions/v2022_11_28/models/group_0183.py index 02929176a..df5259879 100644 --- a/githubkit/versions/v2022_11_28/models/group_0183.py +++ b/githubkit/versions/v2022_11_28/models/group_0183.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0184.py b/githubkit/versions/v2022_11_28/models/group_0184.py index da5461970..bdc11880c 100644 --- a/githubkit/versions/v2022_11_28/models/group_0184.py +++ b/githubkit/versions/v2022_11_28/models/group_0184.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0185.py b/githubkit/versions/v2022_11_28/models/group_0185.py index 6b7cc454e..3650edf90 100644 --- a/githubkit/versions/v2022_11_28/models/group_0185.py +++ b/githubkit/versions/v2022_11_28/models/group_0185.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/v2022_11_28/models/group_0186.py b/githubkit/versions/v2022_11_28/models/group_0186.py index 613c21a6a..620e2ac75 100644 --- a/githubkit/versions/v2022_11_28/models/group_0186.py +++ b/githubkit/versions/v2022_11_28/models/group_0186.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0187.py b/githubkit/versions/v2022_11_28/models/group_0187.py index a3fd9647a..e53116ddc 100644 --- a/githubkit/versions/v2022_11_28/models/group_0187.py +++ b/githubkit/versions/v2022_11_28/models/group_0187.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0188.py b/githubkit/versions/v2022_11_28/models/group_0188.py index ebd61fad5..198c9e3e9 100644 --- a/githubkit/versions/v2022_11_28/models/group_0188.py +++ b/githubkit/versions/v2022_11_28/models/group_0188.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0189.py b/githubkit/versions/v2022_11_28/models/group_0189.py index 847de60dd..40b89df5f 100644 --- a/githubkit/versions/v2022_11_28/models/group_0189.py +++ b/githubkit/versions/v2022_11_28/models/group_0189.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0190.py b/githubkit/versions/v2022_11_28/models/group_0190.py index b04ac8ded..2dfb0cd0e 100644 --- a/githubkit/versions/v2022_11_28/models/group_0190.py +++ b/githubkit/versions/v2022_11_28/models/group_0190.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0191.py b/githubkit/versions/v2022_11_28/models/group_0191.py index 95463c369..7d45ad5bd 100644 --- a/githubkit/versions/v2022_11_28/models/group_0191.py +++ b/githubkit/versions/v2022_11_28/models/group_0191.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0192.py b/githubkit/versions/v2022_11_28/models/group_0192.py index 20e6c4d81..d6f9cbbb1 100644 --- a/githubkit/versions/v2022_11_28/models/group_0192.py +++ b/githubkit/versions/v2022_11_28/models/group_0192.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0193.py b/githubkit/versions/v2022_11_28/models/group_0193.py index cf74386f4..65ec6f877 100644 --- a/githubkit/versions/v2022_11_28/models/group_0193.py +++ b/githubkit/versions/v2022_11_28/models/group_0193.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -58,11 +57,11 @@ class CodeScanningAlertItems(GitHubModel): ] = Field( description="**Required when the state is dismissed.** The reason for dismissing or closing the alert." ) - dismissed_comment: Missing[ - Union[Annotated[str, Field(max_length=280)], None] - ] = Field( - default=UNSET, - description="The dismissal comment associated with the dismissal of the alert.", + dismissed_comment: Missing[Union[Annotated[str, Field(max_length=280)], None]] = ( + Field( + default=UNSET, + description="The dismissal comment associated with the dismissal of the alert.", + ) ) rule: CodeScanningAlertRuleSummary = Field() tool: CodeScanningAnalysisTool = Field() diff --git a/githubkit/versions/v2022_11_28/models/group_0194.py b/githubkit/versions/v2022_11_28/models/group_0194.py index a7f1524fc..b6c86bc4d 100644 --- a/githubkit/versions/v2022_11_28/models/group_0194.py +++ b/githubkit/versions/v2022_11_28/models/group_0194.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -57,11 +56,11 @@ class CodeScanningAlert(GitHubModel): ] = Field( description="**Required when the state is dismissed.** The reason for dismissing or closing the alert." ) - dismissed_comment: Missing[ - Union[Annotated[str, Field(max_length=280)], None] - ] = Field( - default=UNSET, - description="The dismissal comment associated with the dismissal of the alert.", + dismissed_comment: Missing[Union[Annotated[str, Field(max_length=280)], None]] = ( + Field( + default=UNSET, + description="The dismissal comment associated with the dismissal of the alert.", + ) ) rule: CodeScanningAlertRule = Field() tool: CodeScanningAnalysisTool = Field() diff --git a/githubkit/versions/v2022_11_28/models/group_0195.py b/githubkit/versions/v2022_11_28/models/group_0195.py index 10d337945..5a765fec5 100644 --- a/githubkit/versions/v2022_11_28/models/group_0195.py +++ b/githubkit/versions/v2022_11_28/models/group_0195.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0196.py b/githubkit/versions/v2022_11_28/models/group_0196.py index 3c5747417..d589823d8 100644 --- a/githubkit/versions/v2022_11_28/models/group_0196.py +++ b/githubkit/versions/v2022_11_28/models/group_0196.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0197.py b/githubkit/versions/v2022_11_28/models/group_0197.py index e64c9b609..18e1e1dc1 100644 --- a/githubkit/versions/v2022_11_28/models/group_0197.py +++ b/githubkit/versions/v2022_11_28/models/group_0197.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0198.py b/githubkit/versions/v2022_11_28/models/group_0198.py index 09b84f0e2..f3d93ae7d 100644 --- a/githubkit/versions/v2022_11_28/models/group_0198.py +++ b/githubkit/versions/v2022_11_28/models/group_0198.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0199.py b/githubkit/versions/v2022_11_28/models/group_0199.py index 9c27a7774..de2f0166a 100644 --- a/githubkit/versions/v2022_11_28/models/group_0199.py +++ b/githubkit/versions/v2022_11_28/models/group_0199.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0200.py b/githubkit/versions/v2022_11_28/models/group_0200.py index 66f3c48f8..f521485d8 100644 --- a/githubkit/versions/v2022_11_28/models/group_0200.py +++ b/githubkit/versions/v2022_11_28/models/group_0200.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0201.py b/githubkit/versions/v2022_11_28/models/group_0201.py index 486a0b7e2..e3dd21ec7 100644 --- a/githubkit/versions/v2022_11_28/models/group_0201.py +++ b/githubkit/versions/v2022_11_28/models/group_0201.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0202.py b/githubkit/versions/v2022_11_28/models/group_0202.py index 66e1fc4f5..7414dcd5c 100644 --- a/githubkit/versions/v2022_11_28/models/group_0202.py +++ b/githubkit/versions/v2022_11_28/models/group_0202.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0203.py b/githubkit/versions/v2022_11_28/models/group_0203.py index bee0c0a84..b4a4ef9df 100644 --- a/githubkit/versions/v2022_11_28/models/group_0203.py +++ b/githubkit/versions/v2022_11_28/models/group_0203.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/v2022_11_28/models/group_0204.py b/githubkit/versions/v2022_11_28/models/group_0204.py index 18eee89d6..de6f0cf08 100644 --- a/githubkit/versions/v2022_11_28/models/group_0204.py +++ b/githubkit/versions/v2022_11_28/models/group_0204.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0205.py b/githubkit/versions/v2022_11_28/models/group_0205.py index 8f2fc7c88..3b457234e 100644 --- a/githubkit/versions/v2022_11_28/models/group_0205.py +++ b/githubkit/versions/v2022_11_28/models/group_0205.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0206.py b/githubkit/versions/v2022_11_28/models/group_0206.py index d9b36580d..0829293dd 100644 --- a/githubkit/versions/v2022_11_28/models/group_0206.py +++ b/githubkit/versions/v2022_11_28/models/group_0206.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0207.py b/githubkit/versions/v2022_11_28/models/group_0207.py index 4a1089eac..e8c761727 100644 --- a/githubkit/versions/v2022_11_28/models/group_0207.py +++ b/githubkit/versions/v2022_11_28/models/group_0207.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0208.py b/githubkit/versions/v2022_11_28/models/group_0208.py index 12e896cd8..1899117e7 100644 --- a/githubkit/versions/v2022_11_28/models/group_0208.py +++ b/githubkit/versions/v2022_11_28/models/group_0208.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0209.py b/githubkit/versions/v2022_11_28/models/group_0209.py index 5b21ea16e..b537858f8 100644 --- a/githubkit/versions/v2022_11_28/models/group_0209.py +++ b/githubkit/versions/v2022_11_28/models/group_0209.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0210.py b/githubkit/versions/v2022_11_28/models/group_0210.py index c60b7cf32..7c19d354d 100644 --- a/githubkit/versions/v2022_11_28/models/group_0210.py +++ b/githubkit/versions/v2022_11_28/models/group_0210.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0211.py b/githubkit/versions/v2022_11_28/models/group_0211.py index 687257ca9..78697b211 100644 --- a/githubkit/versions/v2022_11_28/models/group_0211.py +++ b/githubkit/versions/v2022_11_28/models/group_0211.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0212.py b/githubkit/versions/v2022_11_28/models/group_0212.py index 381d709ef..def6cd3fc 100644 --- a/githubkit/versions/v2022_11_28/models/group_0212.py +++ b/githubkit/versions/v2022_11_28/models/group_0212.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0213.py b/githubkit/versions/v2022_11_28/models/group_0213.py index 70c705397..0834e8124 100644 --- a/githubkit/versions/v2022_11_28/models/group_0213.py +++ b/githubkit/versions/v2022_11_28/models/group_0213.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0214.py b/githubkit/versions/v2022_11_28/models/group_0214.py index 59063aa3f..cbc249969 100644 --- a/githubkit/versions/v2022_11_28/models/group_0214.py +++ b/githubkit/versions/v2022_11_28/models/group_0214.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0215.py b/githubkit/versions/v2022_11_28/models/group_0215.py index acc872b76..5a4a1eb53 100644 --- a/githubkit/versions/v2022_11_28/models/group_0215.py +++ b/githubkit/versions/v2022_11_28/models/group_0215.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0216.py b/githubkit/versions/v2022_11_28/models/group_0216.py index aa332a80d..8c62771f6 100644 --- a/githubkit/versions/v2022_11_28/models/group_0216.py +++ b/githubkit/versions/v2022_11_28/models/group_0216.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0217.py b/githubkit/versions/v2022_11_28/models/group_0217.py index 3837b6468..fe34649d6 100644 --- a/githubkit/versions/v2022_11_28/models/group_0217.py +++ b/githubkit/versions/v2022_11_28/models/group_0217.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0218.py b/githubkit/versions/v2022_11_28/models/group_0218.py index 46959cf30..d7e74cd04 100644 --- a/githubkit/versions/v2022_11_28/models/group_0218.py +++ b/githubkit/versions/v2022_11_28/models/group_0218.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/v2022_11_28/models/group_0219.py b/githubkit/versions/v2022_11_28/models/group_0219.py index 946062b74..f782c8d1f 100644 --- a/githubkit/versions/v2022_11_28/models/group_0219.py +++ b/githubkit/versions/v2022_11_28/models/group_0219.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0220.py b/githubkit/versions/v2022_11_28/models/group_0220.py index 87bdb360a..1af5fd9fd 100644 --- a/githubkit/versions/v2022_11_28/models/group_0220.py +++ b/githubkit/versions/v2022_11_28/models/group_0220.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0221.py b/githubkit/versions/v2022_11_28/models/group_0221.py index c1980e2ad..8f2dc9b36 100644 --- a/githubkit/versions/v2022_11_28/models/group_0221.py +++ b/githubkit/versions/v2022_11_28/models/group_0221.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0222.py b/githubkit/versions/v2022_11_28/models/group_0222.py index 9b2bac86f..23682cfb1 100644 --- a/githubkit/versions/v2022_11_28/models/group_0222.py +++ b/githubkit/versions/v2022_11_28/models/group_0222.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0223.py b/githubkit/versions/v2022_11_28/models/group_0223.py index c54028185..ef42a5d0b 100644 --- a/githubkit/versions/v2022_11_28/models/group_0223.py +++ b/githubkit/versions/v2022_11_28/models/group_0223.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/v2022_11_28/models/group_0224.py b/githubkit/versions/v2022_11_28/models/group_0224.py index e528b274d..bd8204a62 100644 --- a/githubkit/versions/v2022_11_28/models/group_0224.py +++ b/githubkit/versions/v2022_11_28/models/group_0224.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0225.py b/githubkit/versions/v2022_11_28/models/group_0225.py index 7b96112aa..390d3d779 100644 --- a/githubkit/versions/v2022_11_28/models/group_0225.py +++ b/githubkit/versions/v2022_11_28/models/group_0225.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0226.py b/githubkit/versions/v2022_11_28/models/group_0226.py index 246bcc4e4..15c2cf77d 100644 --- a/githubkit/versions/v2022_11_28/models/group_0226.py +++ b/githubkit/versions/v2022_11_28/models/group_0226.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0227.py b/githubkit/versions/v2022_11_28/models/group_0227.py index b39b14a2e..f34e182ab 100644 --- a/githubkit/versions/v2022_11_28/models/group_0227.py +++ b/githubkit/versions/v2022_11_28/models/group_0227.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0228.py b/githubkit/versions/v2022_11_28/models/group_0228.py index 6f2dc1c1d..7f410acba 100644 --- a/githubkit/versions/v2022_11_28/models/group_0228.py +++ b/githubkit/versions/v2022_11_28/models/group_0228.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0229.py b/githubkit/versions/v2022_11_28/models/group_0229.py index 0e09358bf..ffac1fb50 100644 --- a/githubkit/versions/v2022_11_28/models/group_0229.py +++ b/githubkit/versions/v2022_11_28/models/group_0229.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from githubkit.compat import ExtraGitHubModel, model_rebuild diff --git a/githubkit/versions/v2022_11_28/models/group_0230.py b/githubkit/versions/v2022_11_28/models/group_0230.py index eb5f1437b..9a9c4f4f0 100644 --- a/githubkit/versions/v2022_11_28/models/group_0230.py +++ b/githubkit/versions/v2022_11_28/models/group_0230.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0231.py b/githubkit/versions/v2022_11_28/models/group_0231.py index fc39344a5..3891389c2 100644 --- a/githubkit/versions/v2022_11_28/models/group_0231.py +++ b/githubkit/versions/v2022_11_28/models/group_0231.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0232.py b/githubkit/versions/v2022_11_28/models/group_0232.py index e919cfaa6..62d2d2c00 100644 --- a/githubkit/versions/v2022_11_28/models/group_0232.py +++ b/githubkit/versions/v2022_11_28/models/group_0232.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0233.py b/githubkit/versions/v2022_11_28/models/group_0233.py index 64086d60f..dc49f49b4 100644 --- a/githubkit/versions/v2022_11_28/models/group_0233.py +++ b/githubkit/versions/v2022_11_28/models/group_0233.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0234.py b/githubkit/versions/v2022_11_28/models/group_0234.py index 57e847be7..2969bea8b 100644 --- a/githubkit/versions/v2022_11_28/models/group_0234.py +++ b/githubkit/versions/v2022_11_28/models/group_0234.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0235.py b/githubkit/versions/v2022_11_28/models/group_0235.py index 6ab9aa2d2..2107d30d0 100644 --- a/githubkit/versions/v2022_11_28/models/group_0235.py +++ b/githubkit/versions/v2022_11_28/models/group_0235.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -52,11 +51,11 @@ class Environment(GitHubModel): default=UNSET, description="Built-in deployment protection rules for the environment.", ) - deployment_branch_policy: Missing[ - Union[DeploymentBranchPolicySettings, None] - ] = Field( - default=UNSET, - description="The type of deployment branch policy for this environment. To allow all branches to deploy, set to `null`.", + deployment_branch_policy: Missing[Union[DeploymentBranchPolicySettings, None]] = ( + Field( + default=UNSET, + description="The type of deployment branch policy for this environment. To allow all branches to deploy, set to `null`.", + ) ) diff --git a/githubkit/versions/v2022_11_28/models/group_0236.py b/githubkit/versions/v2022_11_28/models/group_0236.py index 3b4ec221c..249fa861e 100644 --- a/githubkit/versions/v2022_11_28/models/group_0236.py +++ b/githubkit/versions/v2022_11_28/models/group_0236.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0237.py b/githubkit/versions/v2022_11_28/models/group_0237.py index f464a6257..57454a9a3 100644 --- a/githubkit/versions/v2022_11_28/models/group_0237.py +++ b/githubkit/versions/v2022_11_28/models/group_0237.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0238.py b/githubkit/versions/v2022_11_28/models/group_0238.py index 49e0c02b1..aee2faae9 100644 --- a/githubkit/versions/v2022_11_28/models/group_0238.py +++ b/githubkit/versions/v2022_11_28/models/group_0238.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0239.py b/githubkit/versions/v2022_11_28/models/group_0239.py index e675f526b..11e46307f 100644 --- a/githubkit/versions/v2022_11_28/models/group_0239.py +++ b/githubkit/versions/v2022_11_28/models/group_0239.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0240.py b/githubkit/versions/v2022_11_28/models/group_0240.py index 6b20e2fc7..ec57f6950 100644 --- a/githubkit/versions/v2022_11_28/models/group_0240.py +++ b/githubkit/versions/v2022_11_28/models/group_0240.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0241.py b/githubkit/versions/v2022_11_28/models/group_0241.py index 26fe59fa4..2284c499c 100644 --- a/githubkit/versions/v2022_11_28/models/group_0241.py +++ b/githubkit/versions/v2022_11_28/models/group_0241.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0242.py b/githubkit/versions/v2022_11_28/models/group_0242.py index 8692133ea..23227f8fe 100644 --- a/githubkit/versions/v2022_11_28/models/group_0242.py +++ b/githubkit/versions/v2022_11_28/models/group_0242.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0243.py b/githubkit/versions/v2022_11_28/models/group_0243.py index c7f732c2f..c52a12148 100644 --- a/githubkit/versions/v2022_11_28/models/group_0243.py +++ b/githubkit/versions/v2022_11_28/models/group_0243.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0244.py b/githubkit/versions/v2022_11_28/models/group_0244.py index a5bd8a815..314d3773a 100644 --- a/githubkit/versions/v2022_11_28/models/group_0244.py +++ b/githubkit/versions/v2022_11_28/models/group_0244.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0245.py b/githubkit/versions/v2022_11_28/models/group_0245.py index 494c25c6d..ee31507d1 100644 --- a/githubkit/versions/v2022_11_28/models/group_0245.py +++ b/githubkit/versions/v2022_11_28/models/group_0245.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0246.py b/githubkit/versions/v2022_11_28/models/group_0246.py index a4c452985..67fa93cba 100644 --- a/githubkit/versions/v2022_11_28/models/group_0246.py +++ b/githubkit/versions/v2022_11_28/models/group_0246.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0247.py b/githubkit/versions/v2022_11_28/models/group_0247.py index 9780faa32..458d88b27 100644 --- a/githubkit/versions/v2022_11_28/models/group_0247.py +++ b/githubkit/versions/v2022_11_28/models/group_0247.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0248.py b/githubkit/versions/v2022_11_28/models/group_0248.py index f2fc80a0c..544751a06 100644 --- a/githubkit/versions/v2022_11_28/models/group_0248.py +++ b/githubkit/versions/v2022_11_28/models/group_0248.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0249.py b/githubkit/versions/v2022_11_28/models/group_0249.py index 859e17cd8..2bef9a555 100644 --- a/githubkit/versions/v2022_11_28/models/group_0249.py +++ b/githubkit/versions/v2022_11_28/models/group_0249.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0250.py b/githubkit/versions/v2022_11_28/models/group_0250.py index 5f35a16c8..be9c31456 100644 --- a/githubkit/versions/v2022_11_28/models/group_0250.py +++ b/githubkit/versions/v2022_11_28/models/group_0250.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0251.py b/githubkit/versions/v2022_11_28/models/group_0251.py index dd638a8ea..7ed1d272d 100644 --- a/githubkit/versions/v2022_11_28/models/group_0251.py +++ b/githubkit/versions/v2022_11_28/models/group_0251.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0252.py b/githubkit/versions/v2022_11_28/models/group_0252.py index fad73044d..c54f24120 100644 --- a/githubkit/versions/v2022_11_28/models/group_0252.py +++ b/githubkit/versions/v2022_11_28/models/group_0252.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0253.py b/githubkit/versions/v2022_11_28/models/group_0253.py index a7f326c75..68a65ce60 100644 --- a/githubkit/versions/v2022_11_28/models/group_0253.py +++ b/githubkit/versions/v2022_11_28/models/group_0253.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0254.py b/githubkit/versions/v2022_11_28/models/group_0254.py index ba25f1413..805a643fb 100644 --- a/githubkit/versions/v2022_11_28/models/group_0254.py +++ b/githubkit/versions/v2022_11_28/models/group_0254.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0255.py b/githubkit/versions/v2022_11_28/models/group_0255.py index 41506eb65..3b7884134 100644 --- a/githubkit/versions/v2022_11_28/models/group_0255.py +++ b/githubkit/versions/v2022_11_28/models/group_0255.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0256.py b/githubkit/versions/v2022_11_28/models/group_0256.py index d6ccbcead..e7b118870 100644 --- a/githubkit/versions/v2022_11_28/models/group_0256.py +++ b/githubkit/versions/v2022_11_28/models/group_0256.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0257.py b/githubkit/versions/v2022_11_28/models/group_0257.py index 63124432a..4043314f8 100644 --- a/githubkit/versions/v2022_11_28/models/group_0257.py +++ b/githubkit/versions/v2022_11_28/models/group_0257.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0258.py b/githubkit/versions/v2022_11_28/models/group_0258.py index 0956ed8b2..02024a1ea 100644 --- a/githubkit/versions/v2022_11_28/models/group_0258.py +++ b/githubkit/versions/v2022_11_28/models/group_0258.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0259.py b/githubkit/versions/v2022_11_28/models/group_0259.py index 56578002c..3c130beca 100644 --- a/githubkit/versions/v2022_11_28/models/group_0259.py +++ b/githubkit/versions/v2022_11_28/models/group_0259.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0260.py b/githubkit/versions/v2022_11_28/models/group_0260.py index 575ce5001..d34af01e4 100644 --- a/githubkit/versions/v2022_11_28/models/group_0260.py +++ b/githubkit/versions/v2022_11_28/models/group_0260.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0261.py b/githubkit/versions/v2022_11_28/models/group_0261.py index c26c99d2c..2c6431540 100644 --- a/githubkit/versions/v2022_11_28/models/group_0261.py +++ b/githubkit/versions/v2022_11_28/models/group_0261.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0262.py b/githubkit/versions/v2022_11_28/models/group_0262.py index 389736288..4b58578c1 100644 --- a/githubkit/versions/v2022_11_28/models/group_0262.py +++ b/githubkit/versions/v2022_11_28/models/group_0262.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0263.py b/githubkit/versions/v2022_11_28/models/group_0263.py index 9f989f497..8c4f481a7 100644 --- a/githubkit/versions/v2022_11_28/models/group_0263.py +++ b/githubkit/versions/v2022_11_28/models/group_0263.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0264.py b/githubkit/versions/v2022_11_28/models/group_0264.py index c5034a474..bc4911907 100644 --- a/githubkit/versions/v2022_11_28/models/group_0264.py +++ b/githubkit/versions/v2022_11_28/models/group_0264.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0265.py b/githubkit/versions/v2022_11_28/models/group_0265.py index b4be1aad7..93d5e9fbe 100644 --- a/githubkit/versions/v2022_11_28/models/group_0265.py +++ b/githubkit/versions/v2022_11_28/models/group_0265.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0266.py b/githubkit/versions/v2022_11_28/models/group_0266.py index 422c8825c..f03f0dd3a 100644 --- a/githubkit/versions/v2022_11_28/models/group_0266.py +++ b/githubkit/versions/v2022_11_28/models/group_0266.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0267.py b/githubkit/versions/v2022_11_28/models/group_0267.py index 0679b01f8..2ea38ac43 100644 --- a/githubkit/versions/v2022_11_28/models/group_0267.py +++ b/githubkit/versions/v2022_11_28/models/group_0267.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0268.py b/githubkit/versions/v2022_11_28/models/group_0268.py index a5943a1db..aee6430f5 100644 --- a/githubkit/versions/v2022_11_28/models/group_0268.py +++ b/githubkit/versions/v2022_11_28/models/group_0268.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0269.py b/githubkit/versions/v2022_11_28/models/group_0269.py index e505586d5..4ab6afdfe 100644 --- a/githubkit/versions/v2022_11_28/models/group_0269.py +++ b/githubkit/versions/v2022_11_28/models/group_0269.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0270.py b/githubkit/versions/v2022_11_28/models/group_0270.py index f38594c01..981e7fb5c 100644 --- a/githubkit/versions/v2022_11_28/models/group_0270.py +++ b/githubkit/versions/v2022_11_28/models/group_0270.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0271.py b/githubkit/versions/v2022_11_28/models/group_0271.py index e897696bd..9c8843462 100644 --- a/githubkit/versions/v2022_11_28/models/group_0271.py +++ b/githubkit/versions/v2022_11_28/models/group_0271.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0272.py b/githubkit/versions/v2022_11_28/models/group_0272.py index 9cfa35e24..6d53fa67a 100644 --- a/githubkit/versions/v2022_11_28/models/group_0272.py +++ b/githubkit/versions/v2022_11_28/models/group_0272.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0273.py b/githubkit/versions/v2022_11_28/models/group_0273.py index 0c94f2c22..350a6156a 100644 --- a/githubkit/versions/v2022_11_28/models/group_0273.py +++ b/githubkit/versions/v2022_11_28/models/group_0273.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0274.py b/githubkit/versions/v2022_11_28/models/group_0274.py index e5552e240..01fd30cac 100644 --- a/githubkit/versions/v2022_11_28/models/group_0274.py +++ b/githubkit/versions/v2022_11_28/models/group_0274.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0275.py b/githubkit/versions/v2022_11_28/models/group_0275.py index e9c83e67d..7bc8ec2f8 100644 --- a/githubkit/versions/v2022_11_28/models/group_0275.py +++ b/githubkit/versions/v2022_11_28/models/group_0275.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0276.py b/githubkit/versions/v2022_11_28/models/group_0276.py index 03d08aeaf..4cc88812a 100644 --- a/githubkit/versions/v2022_11_28/models/group_0276.py +++ b/githubkit/versions/v2022_11_28/models/group_0276.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0277.py b/githubkit/versions/v2022_11_28/models/group_0277.py index aff375ad7..4581607c1 100644 --- a/githubkit/versions/v2022_11_28/models/group_0277.py +++ b/githubkit/versions/v2022_11_28/models/group_0277.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0278.py b/githubkit/versions/v2022_11_28/models/group_0278.py index 1721b8205..e359b62e0 100644 --- a/githubkit/versions/v2022_11_28/models/group_0278.py +++ b/githubkit/versions/v2022_11_28/models/group_0278.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0279.py b/githubkit/versions/v2022_11_28/models/group_0279.py index 3c20f7730..a711bb72a 100644 --- a/githubkit/versions/v2022_11_28/models/group_0279.py +++ b/githubkit/versions/v2022_11_28/models/group_0279.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0280.py b/githubkit/versions/v2022_11_28/models/group_0280.py index 59d13fddc..58247c327 100644 --- a/githubkit/versions/v2022_11_28/models/group_0280.py +++ b/githubkit/versions/v2022_11_28/models/group_0280.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from githubkit.compat import ExtraGitHubModel, model_rebuild diff --git a/githubkit/versions/v2022_11_28/models/group_0281.py b/githubkit/versions/v2022_11_28/models/group_0281.py index c986b9379..535642846 100644 --- a/githubkit/versions/v2022_11_28/models/group_0281.py +++ b/githubkit/versions/v2022_11_28/models/group_0281.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0282.py b/githubkit/versions/v2022_11_28/models/group_0282.py index e023e42d9..564733c8a 100644 --- a/githubkit/versions/v2022_11_28/models/group_0282.py +++ b/githubkit/versions/v2022_11_28/models/group_0282.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0283.py b/githubkit/versions/v2022_11_28/models/group_0283.py index dc740d0e5..8f748b081 100644 --- a/githubkit/versions/v2022_11_28/models/group_0283.py +++ b/githubkit/versions/v2022_11_28/models/group_0283.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import date, datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0284.py b/githubkit/versions/v2022_11_28/models/group_0284.py index eea286c9f..c24d44917 100644 --- a/githubkit/versions/v2022_11_28/models/group_0284.py +++ b/githubkit/versions/v2022_11_28/models/group_0284.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0285.py b/githubkit/versions/v2022_11_28/models/group_0285.py index 109c1f1c7..4b54230bc 100644 --- a/githubkit/versions/v2022_11_28/models/group_0285.py +++ b/githubkit/versions/v2022_11_28/models/group_0285.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0286.py b/githubkit/versions/v2022_11_28/models/group_0286.py index 82c1d21d6..2b58439e7 100644 --- a/githubkit/versions/v2022_11_28/models/group_0286.py +++ b/githubkit/versions/v2022_11_28/models/group_0286.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0287.py b/githubkit/versions/v2022_11_28/models/group_0287.py index 9a8961947..7c20e9413 100644 --- a/githubkit/versions/v2022_11_28/models/group_0287.py +++ b/githubkit/versions/v2022_11_28/models/group_0287.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0288.py b/githubkit/versions/v2022_11_28/models/group_0288.py index 5ccffc717..9e283e574 100644 --- a/githubkit/versions/v2022_11_28/models/group_0288.py +++ b/githubkit/versions/v2022_11_28/models/group_0288.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0289.py b/githubkit/versions/v2022_11_28/models/group_0289.py index 12231333b..891405c33 100644 --- a/githubkit/versions/v2022_11_28/models/group_0289.py +++ b/githubkit/versions/v2022_11_28/models/group_0289.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0290.py b/githubkit/versions/v2022_11_28/models/group_0290.py index b0f971036..d2cc30430 100644 --- a/githubkit/versions/v2022_11_28/models/group_0290.py +++ b/githubkit/versions/v2022_11_28/models/group_0290.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0291.py b/githubkit/versions/v2022_11_28/models/group_0291.py index f640e379e..38372f771 100644 --- a/githubkit/versions/v2022_11_28/models/group_0291.py +++ b/githubkit/versions/v2022_11_28/models/group_0291.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0292.py b/githubkit/versions/v2022_11_28/models/group_0292.py index 7e922b57d..7d789e957 100644 --- a/githubkit/versions/v2022_11_28/models/group_0292.py +++ b/githubkit/versions/v2022_11_28/models/group_0292.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0293.py b/githubkit/versions/v2022_11_28/models/group_0293.py index 5d8d7ced1..c08b171fa 100644 --- a/githubkit/versions/v2022_11_28/models/group_0293.py +++ b/githubkit/versions/v2022_11_28/models/group_0293.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0294.py b/githubkit/versions/v2022_11_28/models/group_0294.py index 6fc2ee3ee..da433b3b8 100644 --- a/githubkit/versions/v2022_11_28/models/group_0294.py +++ b/githubkit/versions/v2022_11_28/models/group_0294.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0295.py b/githubkit/versions/v2022_11_28/models/group_0295.py index 7152a4a6c..012a94c6a 100644 --- a/githubkit/versions/v2022_11_28/models/group_0295.py +++ b/githubkit/versions/v2022_11_28/models/group_0295.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0296.py b/githubkit/versions/v2022_11_28/models/group_0296.py index 52f4f8dc6..e9cc5181f 100644 --- a/githubkit/versions/v2022_11_28/models/group_0296.py +++ b/githubkit/versions/v2022_11_28/models/group_0296.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0297.py b/githubkit/versions/v2022_11_28/models/group_0297.py index c95fff7d4..1f267b045 100644 --- a/githubkit/versions/v2022_11_28/models/group_0297.py +++ b/githubkit/versions/v2022_11_28/models/group_0297.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0298.py b/githubkit/versions/v2022_11_28/models/group_0298.py index 8e6b780fc..43d0a2316 100644 --- a/githubkit/versions/v2022_11_28/models/group_0298.py +++ b/githubkit/versions/v2022_11_28/models/group_0298.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0299.py b/githubkit/versions/v2022_11_28/models/group_0299.py index fbd703595..c653fae45 100644 --- a/githubkit/versions/v2022_11_28/models/group_0299.py +++ b/githubkit/versions/v2022_11_28/models/group_0299.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0300.py b/githubkit/versions/v2022_11_28/models/group_0300.py index 89fffa245..89e0c7d8b 100644 --- a/githubkit/versions/v2022_11_28/models/group_0300.py +++ b/githubkit/versions/v2022_11_28/models/group_0300.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0301.py b/githubkit/versions/v2022_11_28/models/group_0301.py index 85cccdf38..e30bd3be3 100644 --- a/githubkit/versions/v2022_11_28/models/group_0301.py +++ b/githubkit/versions/v2022_11_28/models/group_0301.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0302.py b/githubkit/versions/v2022_11_28/models/group_0302.py index b7d4b6f9e..5ea214237 100644 --- a/githubkit/versions/v2022_11_28/models/group_0302.py +++ b/githubkit/versions/v2022_11_28/models/group_0302.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0303.py b/githubkit/versions/v2022_11_28/models/group_0303.py index 3f6b6f6ad..44c4c2b32 100644 --- a/githubkit/versions/v2022_11_28/models/group_0303.py +++ b/githubkit/versions/v2022_11_28/models/group_0303.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0304.py b/githubkit/versions/v2022_11_28/models/group_0304.py index 60eebeda7..49fa91068 100644 --- a/githubkit/versions/v2022_11_28/models/group_0304.py +++ b/githubkit/versions/v2022_11_28/models/group_0304.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0305.py b/githubkit/versions/v2022_11_28/models/group_0305.py index 05585044c..6c5ebd286 100644 --- a/githubkit/versions/v2022_11_28/models/group_0305.py +++ b/githubkit/versions/v2022_11_28/models/group_0305.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0306.py b/githubkit/versions/v2022_11_28/models/group_0306.py index b20f21210..4d5e6da2a 100644 --- a/githubkit/versions/v2022_11_28/models/group_0306.py +++ b/githubkit/versions/v2022_11_28/models/group_0306.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0307.py b/githubkit/versions/v2022_11_28/models/group_0307.py index 1b757da88..1afd70f00 100644 --- a/githubkit/versions/v2022_11_28/models/group_0307.py +++ b/githubkit/versions/v2022_11_28/models/group_0307.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0308.py b/githubkit/versions/v2022_11_28/models/group_0308.py index a6b014d3d..700c31a55 100644 --- a/githubkit/versions/v2022_11_28/models/group_0308.py +++ b/githubkit/versions/v2022_11_28/models/group_0308.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0309.py b/githubkit/versions/v2022_11_28/models/group_0309.py index 91b144cec..e70cfb9d3 100644 --- a/githubkit/versions/v2022_11_28/models/group_0309.py +++ b/githubkit/versions/v2022_11_28/models/group_0309.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0310.py b/githubkit/versions/v2022_11_28/models/group_0310.py index a698acbfc..33176846d 100644 --- a/githubkit/versions/v2022_11_28/models/group_0310.py +++ b/githubkit/versions/v2022_11_28/models/group_0310.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0311.py b/githubkit/versions/v2022_11_28/models/group_0311.py index 799e689a4..6319e5592 100644 --- a/githubkit/versions/v2022_11_28/models/group_0311.py +++ b/githubkit/versions/v2022_11_28/models/group_0311.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0312.py b/githubkit/versions/v2022_11_28/models/group_0312.py index 1b078e539..8bdc5c16a 100644 --- a/githubkit/versions/v2022_11_28/models/group_0312.py +++ b/githubkit/versions/v2022_11_28/models/group_0312.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0313.py b/githubkit/versions/v2022_11_28/models/group_0313.py index bc59098b1..1f4c0be57 100644 --- a/githubkit/versions/v2022_11_28/models/group_0313.py +++ b/githubkit/versions/v2022_11_28/models/group_0313.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0314.py b/githubkit/versions/v2022_11_28/models/group_0314.py index 11050ea11..45fb80b64 100644 --- a/githubkit/versions/v2022_11_28/models/group_0314.py +++ b/githubkit/versions/v2022_11_28/models/group_0314.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0315.py b/githubkit/versions/v2022_11_28/models/group_0315.py index 44683a8b3..3b8bea5b2 100644 --- a/githubkit/versions/v2022_11_28/models/group_0315.py +++ b/githubkit/versions/v2022_11_28/models/group_0315.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0316.py b/githubkit/versions/v2022_11_28/models/group_0316.py index 3162a21ec..672e58147 100644 --- a/githubkit/versions/v2022_11_28/models/group_0316.py +++ b/githubkit/versions/v2022_11_28/models/group_0316.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0317.py b/githubkit/versions/v2022_11_28/models/group_0317.py index a4a58440b..4941af635 100644 --- a/githubkit/versions/v2022_11_28/models/group_0317.py +++ b/githubkit/versions/v2022_11_28/models/group_0317.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0318.py b/githubkit/versions/v2022_11_28/models/group_0318.py index 43bf0565f..a80eda521 100644 --- a/githubkit/versions/v2022_11_28/models/group_0318.py +++ b/githubkit/versions/v2022_11_28/models/group_0318.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0319.py b/githubkit/versions/v2022_11_28/models/group_0319.py index 0ef62ca03..efed65a18 100644 --- a/githubkit/versions/v2022_11_28/models/group_0319.py +++ b/githubkit/versions/v2022_11_28/models/group_0319.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal @@ -38,18 +37,18 @@ class RepositoryAdvisoryCreate(GitHubModel): cwe_ids: Missing[Union[List[str], None]] = Field( default=UNSET, description="A list of Common Weakness Enumeration (CWE) IDs." ) - credits_: Missing[ - Union[List[RepositoryAdvisoryCreatePropCreditsItems], None] - ] = Field( - default=UNSET, - alias="credits", - description="A list of users receiving credit for their participation in the security advisory.", + credits_: Missing[Union[List[RepositoryAdvisoryCreatePropCreditsItems], None]] = ( + Field( + default=UNSET, + alias="credits", + description="A list of users receiving credit for their participation in the security advisory.", + ) ) - severity: Missing[ - Union[None, Literal["critical", "high", "medium", "low"]] - ] = Field( - default=UNSET, - description="The severity of the advisory. You must choose between setting this field or `cvss_vector_string`.", + severity: Missing[Union[None, Literal["critical", "high", "medium", "low"]]] = ( + Field( + default=UNSET, + description="The severity of the advisory. You must choose between setting this field or `cvss_vector_string`.", + ) ) cvss_vector_string: Missing[Union[str, None]] = Field( default=UNSET, diff --git a/githubkit/versions/v2022_11_28/models/group_0320.py b/githubkit/versions/v2022_11_28/models/group_0320.py index acecb5639..7b8c49810 100644 --- a/githubkit/versions/v2022_11_28/models/group_0320.py +++ b/githubkit/versions/v2022_11_28/models/group_0320.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal @@ -38,11 +37,11 @@ class PrivateVulnerabilityReportCreate(GitHubModel): cwe_ids: Missing[Union[List[str], None]] = Field( default=UNSET, description="A list of Common Weakness Enumeration (CWE) IDs." ) - severity: Missing[ - Union[None, Literal["critical", "high", "medium", "low"]] - ] = Field( - default=UNSET, - description="The severity of the advisory. You must choose between setting this field or `cvss_vector_string`.", + severity: Missing[Union[None, Literal["critical", "high", "medium", "low"]]] = ( + Field( + default=UNSET, + description="The severity of the advisory. You must choose between setting this field or `cvss_vector_string`.", + ) ) cvss_vector_string: Missing[Union[str, None]] = Field( default=UNSET, diff --git a/githubkit/versions/v2022_11_28/models/group_0321.py b/githubkit/versions/v2022_11_28/models/group_0321.py index a30ff7c7c..ab7417cce 100644 --- a/githubkit/versions/v2022_11_28/models/group_0321.py +++ b/githubkit/versions/v2022_11_28/models/group_0321.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal @@ -33,27 +32,27 @@ class RepositoryAdvisoryUpdate(GitHubModel): cve_id: Missing[Union[str, None]] = Field( default=UNSET, description="The Common Vulnerabilities and Exposures (CVE) ID." ) - vulnerabilities: Missing[ - List[RepositoryAdvisoryUpdatePropVulnerabilitiesItems] - ] = Field( - default=UNSET, - description="A product affected by the vulnerability detailed in a repository security advisory.", + vulnerabilities: Missing[List[RepositoryAdvisoryUpdatePropVulnerabilitiesItems]] = ( + Field( + default=UNSET, + description="A product affected by the vulnerability detailed in a repository security advisory.", + ) ) cwe_ids: Missing[Union[List[str], None]] = Field( default=UNSET, description="A list of Common Weakness Enumeration (CWE) IDs." ) - credits_: Missing[ - Union[List[RepositoryAdvisoryUpdatePropCreditsItems], None] - ] = Field( - default=UNSET, - alias="credits", - description="A list of users receiving credit for their participation in the security advisory.", - ) - severity: Missing[ - Union[None, Literal["critical", "high", "medium", "low"]] - ] = Field( - default=UNSET, - description="The severity of the advisory. You must choose between setting this field or `cvss_vector_string`.", + credits_: Missing[Union[List[RepositoryAdvisoryUpdatePropCreditsItems], None]] = ( + Field( + default=UNSET, + alias="credits", + description="A list of users receiving credit for their participation in the security advisory.", + ) + ) + severity: Missing[Union[None, Literal["critical", "high", "medium", "low"]]] = ( + Field( + default=UNSET, + description="The severity of the advisory. You must choose between setting this field or `cvss_vector_string`.", + ) ) cvss_vector_string: Missing[Union[str, None]] = Field( default=UNSET, diff --git a/githubkit/versions/v2022_11_28/models/group_0322.py b/githubkit/versions/v2022_11_28/models/group_0322.py index 81420f74b..3a0e47a6f 100644 --- a/githubkit/versions/v2022_11_28/models/group_0322.py +++ b/githubkit/versions/v2022_11_28/models/group_0322.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0323.py b/githubkit/versions/v2022_11_28/models/group_0323.py index 66768afe1..e36a25e25 100644 --- a/githubkit/versions/v2022_11_28/models/group_0323.py +++ b/githubkit/versions/v2022_11_28/models/group_0323.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0324.py b/githubkit/versions/v2022_11_28/models/group_0324.py index 2d6335716..7b033f045 100644 --- a/githubkit/versions/v2022_11_28/models/group_0324.py +++ b/githubkit/versions/v2022_11_28/models/group_0324.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/v2022_11_28/models/group_0325.py b/githubkit/versions/v2022_11_28/models/group_0325.py index ddfa15a27..1d3f14e20 100644 --- a/githubkit/versions/v2022_11_28/models/group_0325.py +++ b/githubkit/versions/v2022_11_28/models/group_0325.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0326.py b/githubkit/versions/v2022_11_28/models/group_0326.py index 91d0b81bd..ef630501d 100644 --- a/githubkit/versions/v2022_11_28/models/group_0326.py +++ b/githubkit/versions/v2022_11_28/models/group_0326.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0327.py b/githubkit/versions/v2022_11_28/models/group_0327.py index 8b3b4e943..c5f394186 100644 --- a/githubkit/versions/v2022_11_28/models/group_0327.py +++ b/githubkit/versions/v2022_11_28/models/group_0327.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0328.py b/githubkit/versions/v2022_11_28/models/group_0328.py index c8b93d521..a7005e85e 100644 --- a/githubkit/versions/v2022_11_28/models/group_0328.py +++ b/githubkit/versions/v2022_11_28/models/group_0328.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0329.py b/githubkit/versions/v2022_11_28/models/group_0329.py index 87a187c43..0ab144da3 100644 --- a/githubkit/versions/v2022_11_28/models/group_0329.py +++ b/githubkit/versions/v2022_11_28/models/group_0329.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0330.py b/githubkit/versions/v2022_11_28/models/group_0330.py index 6d09b8f17..8f9d3f9f8 100644 --- a/githubkit/versions/v2022_11_28/models/group_0330.py +++ b/githubkit/versions/v2022_11_28/models/group_0330.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0331.py b/githubkit/versions/v2022_11_28/models/group_0331.py index b9db9c768..0f740b6bf 100644 --- a/githubkit/versions/v2022_11_28/models/group_0331.py +++ b/githubkit/versions/v2022_11_28/models/group_0331.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0332.py b/githubkit/versions/v2022_11_28/models/group_0332.py index e143158ea..97ab65074 100644 --- a/githubkit/versions/v2022_11_28/models/group_0332.py +++ b/githubkit/versions/v2022_11_28/models/group_0332.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0333.py b/githubkit/versions/v2022_11_28/models/group_0333.py index 2f4ee199b..7ced93dd8 100644 --- a/githubkit/versions/v2022_11_28/models/group_0333.py +++ b/githubkit/versions/v2022_11_28/models/group_0333.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0334.py b/githubkit/versions/v2022_11_28/models/group_0334.py index 6fff2ac2b..707b54a8f 100644 --- a/githubkit/versions/v2022_11_28/models/group_0334.py +++ b/githubkit/versions/v2022_11_28/models/group_0334.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0335.py b/githubkit/versions/v2022_11_28/models/group_0335.py index a1ef5b29d..2b52c39fa 100644 --- a/githubkit/versions/v2022_11_28/models/group_0335.py +++ b/githubkit/versions/v2022_11_28/models/group_0335.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/v2022_11_28/models/group_0336.py b/githubkit/versions/v2022_11_28/models/group_0336.py index e569abe57..f24664227 100644 --- a/githubkit/versions/v2022_11_28/models/group_0336.py +++ b/githubkit/versions/v2022_11_28/models/group_0336.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0337.py b/githubkit/versions/v2022_11_28/models/group_0337.py index 71e00ba9d..05ba1febc 100644 --- a/githubkit/versions/v2022_11_28/models/group_0337.py +++ b/githubkit/versions/v2022_11_28/models/group_0337.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/v2022_11_28/models/group_0338.py b/githubkit/versions/v2022_11_28/models/group_0338.py index 705902f0b..528d06294 100644 --- a/githubkit/versions/v2022_11_28/models/group_0338.py +++ b/githubkit/versions/v2022_11_28/models/group_0338.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0339.py b/githubkit/versions/v2022_11_28/models/group_0339.py index 1efa28707..01db1d6eb 100644 --- a/githubkit/versions/v2022_11_28/models/group_0339.py +++ b/githubkit/versions/v2022_11_28/models/group_0339.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0340.py b/githubkit/versions/v2022_11_28/models/group_0340.py index ad49d7e62..6ed5312b1 100644 --- a/githubkit/versions/v2022_11_28/models/group_0340.py +++ b/githubkit/versions/v2022_11_28/models/group_0340.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/v2022_11_28/models/group_0341.py b/githubkit/versions/v2022_11_28/models/group_0341.py index 2f8f853ff..77916897b 100644 --- a/githubkit/versions/v2022_11_28/models/group_0341.py +++ b/githubkit/versions/v2022_11_28/models/group_0341.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0342.py b/githubkit/versions/v2022_11_28/models/group_0342.py index 415eed756..bf7af6882 100644 --- a/githubkit/versions/v2022_11_28/models/group_0342.py +++ b/githubkit/versions/v2022_11_28/models/group_0342.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -55,9 +54,9 @@ class TopicSearchResultItem(GitHubModel): class TopicSearchResultItemPropRelatedItems(GitHubModel): """TopicSearchResultItemPropRelatedItems""" - topic_relation: Missing[ - TopicSearchResultItemPropRelatedItemsPropTopicRelation - ] = Field(default=UNSET) + topic_relation: Missing[TopicSearchResultItemPropRelatedItemsPropTopicRelation] = ( + Field(default=UNSET) + ) class TopicSearchResultItemPropRelatedItemsPropTopicRelation(GitHubModel): @@ -72,9 +71,9 @@ class TopicSearchResultItemPropRelatedItemsPropTopicRelation(GitHubModel): class TopicSearchResultItemPropAliasesItems(GitHubModel): """TopicSearchResultItemPropAliasesItems""" - topic_relation: Missing[ - TopicSearchResultItemPropAliasesItemsPropTopicRelation - ] = Field(default=UNSET) + topic_relation: Missing[TopicSearchResultItemPropAliasesItemsPropTopicRelation] = ( + Field(default=UNSET) + ) class TopicSearchResultItemPropAliasesItemsPropTopicRelation(GitHubModel): diff --git a/githubkit/versions/v2022_11_28/models/group_0343.py b/githubkit/versions/v2022_11_28/models/group_0343.py index 472a8b02f..7cb0fe603 100644 --- a/githubkit/versions/v2022_11_28/models/group_0343.py +++ b/githubkit/versions/v2022_11_28/models/group_0343.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0344.py b/githubkit/versions/v2022_11_28/models/group_0344.py index d07b95426..0715ef7ad 100644 --- a/githubkit/versions/v2022_11_28/models/group_0344.py +++ b/githubkit/versions/v2022_11_28/models/group_0344.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0345.py b/githubkit/versions/v2022_11_28/models/group_0345.py index 405246d7f..f6bee6e63 100644 --- a/githubkit/versions/v2022_11_28/models/group_0345.py +++ b/githubkit/versions/v2022_11_28/models/group_0345.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0346.py b/githubkit/versions/v2022_11_28/models/group_0346.py index 114f4a67a..a59d9e60b 100644 --- a/githubkit/versions/v2022_11_28/models/group_0346.py +++ b/githubkit/versions/v2022_11_28/models/group_0346.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0347.py b/githubkit/versions/v2022_11_28/models/group_0347.py index fe52eb832..8604648ad 100644 --- a/githubkit/versions/v2022_11_28/models/group_0347.py +++ b/githubkit/versions/v2022_11_28/models/group_0347.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -101,9 +100,9 @@ class CodespaceWithFullRepository(GitHubModel): description="API URL for the Pull Request associated with this codespace, if any." ) recent_folders: List[str] = Field() - runtime_constraints: Missing[ - CodespaceWithFullRepositoryPropRuntimeConstraints - ] = Field(default=UNSET) + runtime_constraints: Missing[CodespaceWithFullRepositoryPropRuntimeConstraints] = ( + Field(default=UNSET) + ) pending_operation: Missing[Union[bool, None]] = Field( default=UNSET, description="Whether or not a codespace has a pending async operation. This would mean that the codespace is temporarily unavailable. The only thing that you can do with a codespace in this state is delete it.", diff --git a/githubkit/versions/v2022_11_28/models/group_0348.py b/githubkit/versions/v2022_11_28/models/group_0348.py index dbd2fe1c3..1fb1f3941 100644 --- a/githubkit/versions/v2022_11_28/models/group_0348.py +++ b/githubkit/versions/v2022_11_28/models/group_0348.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0349.py b/githubkit/versions/v2022_11_28/models/group_0349.py index d476c5c42..ed85687e5 100644 --- a/githubkit/versions/v2022_11_28/models/group_0349.py +++ b/githubkit/versions/v2022_11_28/models/group_0349.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0350.py b/githubkit/versions/v2022_11_28/models/group_0350.py index de5455a54..f75f4e54d 100644 --- a/githubkit/versions/v2022_11_28/models/group_0350.py +++ b/githubkit/versions/v2022_11_28/models/group_0350.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0351.py b/githubkit/versions/v2022_11_28/models/group_0351.py index bb72f046f..a7432b9bd 100644 --- a/githubkit/versions/v2022_11_28/models/group_0351.py +++ b/githubkit/versions/v2022_11_28/models/group_0351.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0352.py b/githubkit/versions/v2022_11_28/models/group_0352.py index cbdc5b123..cae25bb86 100644 --- a/githubkit/versions/v2022_11_28/models/group_0352.py +++ b/githubkit/versions/v2022_11_28/models/group_0352.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0353.py b/githubkit/versions/v2022_11_28/models/group_0353.py index aeeceaf80..e6313b836 100644 --- a/githubkit/versions/v2022_11_28/models/group_0353.py +++ b/githubkit/versions/v2022_11_28/models/group_0353.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0354.py b/githubkit/versions/v2022_11_28/models/group_0354.py index e54d9d504..d048a0350 100644 --- a/githubkit/versions/v2022_11_28/models/group_0354.py +++ b/githubkit/versions/v2022_11_28/models/group_0354.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0355.py b/githubkit/versions/v2022_11_28/models/group_0355.py index e55505325..7d0eefaae 100644 --- a/githubkit/versions/v2022_11_28/models/group_0355.py +++ b/githubkit/versions/v2022_11_28/models/group_0355.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0356.py b/githubkit/versions/v2022_11_28/models/group_0356.py index 79e083de7..fd0411072 100644 --- a/githubkit/versions/v2022_11_28/models/group_0356.py +++ b/githubkit/versions/v2022_11_28/models/group_0356.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0357.py b/githubkit/versions/v2022_11_28/models/group_0357.py index a05b88464..934bafe2d 100644 --- a/githubkit/versions/v2022_11_28/models/group_0357.py +++ b/githubkit/versions/v2022_11_28/models/group_0357.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0358.py b/githubkit/versions/v2022_11_28/models/group_0358.py index 636f11906..8f356bd76 100644 --- a/githubkit/versions/v2022_11_28/models/group_0358.py +++ b/githubkit/versions/v2022_11_28/models/group_0358.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0359.py b/githubkit/versions/v2022_11_28/models/group_0359.py index 9103b9068..29be5dd8a 100644 --- a/githubkit/versions/v2022_11_28/models/group_0359.py +++ b/githubkit/versions/v2022_11_28/models/group_0359.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0360.py b/githubkit/versions/v2022_11_28/models/group_0360.py index a035a0dc6..548b0540c 100644 --- a/githubkit/versions/v2022_11_28/models/group_0360.py +++ b/githubkit/versions/v2022_11_28/models/group_0360.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -158,11 +157,11 @@ class RepositoryWebhooks(GitHubModel): default=UNSET, description="Whether a squash merge commit can use the pull request title as default. **This property has been deprecated. Please use `squash_merge_commit_title` instead.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) squash_merge_commit_message: Missing[ Literal["PR_BODY", "COMMIT_MESSAGES", "BLANK"] @@ -296,9 +295,9 @@ class RepositoryWebhooksPropTemplateRepository(GitHubModel): pushed_at: Missing[str] = Field(default=UNSET) created_at: Missing[str] = Field(default=UNSET) updated_at: Missing[str] = Field(default=UNSET) - permissions: Missing[ - RepositoryWebhooksPropTemplateRepositoryPropPermissions - ] = Field(default=UNSET) + permissions: Missing[RepositoryWebhooksPropTemplateRepositoryPropPermissions] = ( + Field(default=UNSET) + ) allow_rebase_merge: Missing[bool] = Field(default=UNSET) temp_clone_token: Missing[Union[str, None]] = Field(default=UNSET) allow_squash_merge: Missing[bool] = Field(default=UNSET) @@ -306,11 +305,11 @@ class RepositoryWebhooksPropTemplateRepository(GitHubModel): delete_branch_on_merge: Missing[bool] = Field(default=UNSET) allow_update_branch: Missing[bool] = Field(default=UNSET) use_squash_pr_title_as_default: Missing[bool] = Field(default=UNSET) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) squash_merge_commit_message: Missing[ Literal["PR_BODY", "COMMIT_MESSAGES", "BLANK"] diff --git a/githubkit/versions/v2022_11_28/models/group_0361.py b/githubkit/versions/v2022_11_28/models/group_0361.py index a39f88708..0b0e642ec 100644 --- a/githubkit/versions/v2022_11_28/models/group_0361.py +++ b/githubkit/versions/v2022_11_28/models/group_0361.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0362.py b/githubkit/versions/v2022_11_28/models/group_0362.py index e8b026745..c33cbffcd 100644 --- a/githubkit/versions/v2022_11_28/models/group_0362.py +++ b/githubkit/versions/v2022_11_28/models/group_0362.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0363.py b/githubkit/versions/v2022_11_28/models/group_0363.py index 8b675527a..cdbb6d4e3 100644 --- a/githubkit/versions/v2022_11_28/models/group_0363.py +++ b/githubkit/versions/v2022_11_28/models/group_0363.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0364.py b/githubkit/versions/v2022_11_28/models/group_0364.py index e129fe850..f6857b9b0 100644 --- a/githubkit/versions/v2022_11_28/models/group_0364.py +++ b/githubkit/versions/v2022_11_28/models/group_0364.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0365.py b/githubkit/versions/v2022_11_28/models/group_0365.py index cad101db5..c967a2920 100644 --- a/githubkit/versions/v2022_11_28/models/group_0365.py +++ b/githubkit/versions/v2022_11_28/models/group_0365.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0366.py b/githubkit/versions/v2022_11_28/models/group_0366.py index 2b4599294..8614622e5 100644 --- a/githubkit/versions/v2022_11_28/models/group_0366.py +++ b/githubkit/versions/v2022_11_28/models/group_0366.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal @@ -46,10 +45,10 @@ class PersonalAccessTokenRequest(GitHubModel): repository_count: Union[int, None] = Field( description="The number of repositories the token is requesting access to. This field is only populated when `repository_selection` is `subset`." ) - repositories: Union[ - List[PersonalAccessTokenRequestPropRepositoriesItems], None - ] = Field( - description="An array of repository objects the token is requesting access to. This field is only populated when `repository_selection` is `subset`." + repositories: Union[List[PersonalAccessTokenRequestPropRepositoriesItems], None] = ( + Field( + description="An array of repository objects the token is requesting access to. This field is only populated when `repository_selection` is `subset`." + ) ) created_at: str = Field( description="Date and time when the request for access was created." diff --git a/githubkit/versions/v2022_11_28/models/group_0367.py b/githubkit/versions/v2022_11_28/models/group_0367.py index 1441cde58..3528848a1 100644 --- a/githubkit/versions/v2022_11_28/models/group_0367.py +++ b/githubkit/versions/v2022_11_28/models/group_0367.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0368.py b/githubkit/versions/v2022_11_28/models/group_0368.py index 873b9d8c6..4f045f2bc 100644 --- a/githubkit/versions/v2022_11_28/models/group_0368.py +++ b/githubkit/versions/v2022_11_28/models/group_0368.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0369.py b/githubkit/versions/v2022_11_28/models/group_0369.py index 7280bc0be..fcf080f13 100644 --- a/githubkit/versions/v2022_11_28/models/group_0369.py +++ b/githubkit/versions/v2022_11_28/models/group_0369.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0370.py b/githubkit/versions/v2022_11_28/models/group_0370.py index 8f0529aaa..a026b5078 100644 --- a/githubkit/versions/v2022_11_28/models/group_0370.py +++ b/githubkit/versions/v2022_11_28/models/group_0370.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0371.py b/githubkit/versions/v2022_11_28/models/group_0371.py index 2aebebe2f..8101d8879 100644 --- a/githubkit/versions/v2022_11_28/models/group_0371.py +++ b/githubkit/versions/v2022_11_28/models/group_0371.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0372.py b/githubkit/versions/v2022_11_28/models/group_0372.py index 9eff27e26..da8d062d3 100644 --- a/githubkit/versions/v2022_11_28/models/group_0372.py +++ b/githubkit/versions/v2022_11_28/models/group_0372.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -71,12 +70,12 @@ class WebhookBranchProtectionRuleCreatedPropRule(GitHubModel): """ admin_enforced: bool = Field() - allow_deletions_enforcement_level: Literal[ - "off", "non_admins", "everyone" - ] = Field() - allow_force_pushes_enforcement_level: Literal[ - "off", "non_admins", "everyone" - ] = Field() + allow_deletions_enforcement_level: Literal["off", "non_admins", "everyone"] = ( + Field() + ) + allow_force_pushes_enforcement_level: Literal["off", "non_admins", "everyone"] = ( + Field() + ) authorized_actor_names: List[str] = Field() authorized_actors_only: bool = Field() authorized_dismissal_actors_only: bool = Field() @@ -90,9 +89,9 @@ class WebhookBranchProtectionRuleCreatedPropRule(GitHubModel): ] = Field() merge_queue_enforcement_level: Literal["off", "non_admins", "everyone"] = Field() name: str = Field() - pull_request_reviews_enforcement_level: Literal[ - "off", "non_admins", "everyone" - ] = Field() + pull_request_reviews_enforcement_level: Literal["off", "non_admins", "everyone"] = ( + Field() + ) repository_id: int = Field() require_code_owner_review: bool = Field() require_last_push_approval: Missing[bool] = Field( @@ -100,12 +99,12 @@ class WebhookBranchProtectionRuleCreatedPropRule(GitHubModel): description="Whether the most recent push must be approved by someone other than the person who pushed it", ) required_approving_review_count: int = Field() - required_conversation_resolution_level: Literal[ - "off", "non_admins", "everyone" - ] = Field() - required_deployments_enforcement_level: Literal[ - "off", "non_admins", "everyone" - ] = Field() + required_conversation_resolution_level: Literal["off", "non_admins", "everyone"] = ( + Field() + ) + required_deployments_enforcement_level: Literal["off", "non_admins", "everyone"] = ( + Field() + ) required_status_checks: List[str] = Field() required_status_checks_enforcement_level: Literal[ "off", "non_admins", "everyone" diff --git a/githubkit/versions/v2022_11_28/models/group_0373.py b/githubkit/versions/v2022_11_28/models/group_0373.py index 6aa732724..f58c879a7 100644 --- a/githubkit/versions/v2022_11_28/models/group_0373.py +++ b/githubkit/versions/v2022_11_28/models/group_0373.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -71,12 +70,12 @@ class WebhookBranchProtectionRuleDeletedPropRule(GitHubModel): """ admin_enforced: bool = Field() - allow_deletions_enforcement_level: Literal[ - "off", "non_admins", "everyone" - ] = Field() - allow_force_pushes_enforcement_level: Literal[ - "off", "non_admins", "everyone" - ] = Field() + allow_deletions_enforcement_level: Literal["off", "non_admins", "everyone"] = ( + Field() + ) + allow_force_pushes_enforcement_level: Literal["off", "non_admins", "everyone"] = ( + Field() + ) authorized_actor_names: List[str] = Field() authorized_actors_only: bool = Field() authorized_dismissal_actors_only: bool = Field() @@ -90,9 +89,9 @@ class WebhookBranchProtectionRuleDeletedPropRule(GitHubModel): ] = Field() merge_queue_enforcement_level: Literal["off", "non_admins", "everyone"] = Field() name: str = Field() - pull_request_reviews_enforcement_level: Literal[ - "off", "non_admins", "everyone" - ] = Field() + pull_request_reviews_enforcement_level: Literal["off", "non_admins", "everyone"] = ( + Field() + ) repository_id: int = Field() require_code_owner_review: bool = Field() require_last_push_approval: Missing[bool] = Field( @@ -100,12 +99,12 @@ class WebhookBranchProtectionRuleDeletedPropRule(GitHubModel): description="Whether the most recent push must be approved by someone other than the person who pushed it", ) required_approving_review_count: int = Field() - required_conversation_resolution_level: Literal[ - "off", "non_admins", "everyone" - ] = Field() - required_deployments_enforcement_level: Literal[ - "off", "non_admins", "everyone" - ] = Field() + required_conversation_resolution_level: Literal["off", "non_admins", "everyone"] = ( + Field() + ) + required_deployments_enforcement_level: Literal["off", "non_admins", "everyone"] = ( + Field() + ) required_status_checks: List[str] = Field() required_status_checks_enforcement_level: Literal[ "off", "non_admins", "everyone" diff --git a/githubkit/versions/v2022_11_28/models/group_0374.py b/githubkit/versions/v2022_11_28/models/group_0374.py index 66c5ac56f..92389f604 100644 --- a/githubkit/versions/v2022_11_28/models/group_0374.py +++ b/githubkit/versions/v2022_11_28/models/group_0374.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -75,12 +74,12 @@ class WebhookBranchProtectionRuleEditedPropRule(GitHubModel): """ admin_enforced: bool = Field() - allow_deletions_enforcement_level: Literal[ - "off", "non_admins", "everyone" - ] = Field() - allow_force_pushes_enforcement_level: Literal[ - "off", "non_admins", "everyone" - ] = Field() + allow_deletions_enforcement_level: Literal["off", "non_admins", "everyone"] = ( + Field() + ) + allow_force_pushes_enforcement_level: Literal["off", "non_admins", "everyone"] = ( + Field() + ) authorized_actor_names: List[str] = Field() authorized_actors_only: bool = Field() authorized_dismissal_actors_only: bool = Field() @@ -94,9 +93,9 @@ class WebhookBranchProtectionRuleEditedPropRule(GitHubModel): ] = Field() merge_queue_enforcement_level: Literal["off", "non_admins", "everyone"] = Field() name: str = Field() - pull_request_reviews_enforcement_level: Literal[ - "off", "non_admins", "everyone" - ] = Field() + pull_request_reviews_enforcement_level: Literal["off", "non_admins", "everyone"] = ( + Field() + ) repository_id: int = Field() require_code_owner_review: bool = Field() require_last_push_approval: Missing[bool] = Field( @@ -104,12 +103,12 @@ class WebhookBranchProtectionRuleEditedPropRule(GitHubModel): description="Whether the most recent push must be approved by someone other than the person who pushed it", ) required_approving_review_count: int = Field() - required_conversation_resolution_level: Literal[ - "off", "non_admins", "everyone" - ] = Field() - required_deployments_enforcement_level: Literal[ - "off", "non_admins", "everyone" - ] = Field() + required_conversation_resolution_level: Literal["off", "non_admins", "everyone"] = ( + Field() + ) + required_deployments_enforcement_level: Literal["off", "non_admins", "everyone"] = ( + Field() + ) required_status_checks: List[str] = Field() required_status_checks_enforcement_level: Literal[ "off", "non_admins", "everyone" diff --git a/githubkit/versions/v2022_11_28/models/group_0375.py b/githubkit/versions/v2022_11_28/models/group_0375.py index d41294441..d6db59734 100644 --- a/githubkit/versions/v2022_11_28/models/group_0375.py +++ b/githubkit/versions/v2022_11_28/models/group_0375.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0376.py b/githubkit/versions/v2022_11_28/models/group_0376.py index 4626d10a5..15f0118a0 100644 --- a/githubkit/versions/v2022_11_28/models/group_0376.py +++ b/githubkit/versions/v2022_11_28/models/group_0376.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0377.py b/githubkit/versions/v2022_11_28/models/group_0377.py index 752429c01..e88ac1c36 100644 --- a/githubkit/versions/v2022_11_28/models/group_0377.py +++ b/githubkit/versions/v2022_11_28/models/group_0377.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0378.py b/githubkit/versions/v2022_11_28/models/group_0378.py index 5c9c7eb80..2a3f094c3 100644 --- a/githubkit/versions/v2022_11_28/models/group_0378.py +++ b/githubkit/versions/v2022_11_28/models/group_0378.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0379.py b/githubkit/versions/v2022_11_28/models/group_0379.py index 8c41b344f..deb39e870 100644 --- a/githubkit/versions/v2022_11_28/models/group_0379.py +++ b/githubkit/versions/v2022_11_28/models/group_0379.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal @@ -47,9 +46,9 @@ class WebhookCheckRunRequestedAction(GitHubModel): title="Repository", description="The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property\nwhen the event occurs from activity in a repository.", ) - requested_action: Missing[ - WebhookCheckRunRequestedActionPropRequestedAction - ] = Field(default=UNSET, description="The action requested by the user.") + requested_action: Missing[WebhookCheckRunRequestedActionPropRequestedAction] = ( + Field(default=UNSET, description="The action requested by the user.") + ) sender: SimpleUserWebhooks = Field( title="Simple User", description="The GitHub user that triggered the event. This property is included in every webhook payload.", diff --git a/githubkit/versions/v2022_11_28/models/group_0380.py b/githubkit/versions/v2022_11_28/models/group_0380.py index 491115bc9..ccf1a4c5f 100644 --- a/githubkit/versions/v2022_11_28/models/group_0380.py +++ b/githubkit/versions/v2022_11_28/models/group_0380.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0381.py b/githubkit/versions/v2022_11_28/models/group_0381.py index dc59d68cf..8ea02dec0 100644 --- a/githubkit/versions/v2022_11_28/models/group_0381.py +++ b/githubkit/versions/v2022_11_28/models/group_0381.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0382.py b/githubkit/versions/v2022_11_28/models/group_0382.py index 5fa7d25ca..a44f5cc13 100644 --- a/githubkit/versions/v2022_11_28/models/group_0382.py +++ b/githubkit/versions/v2022_11_28/models/group_0382.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0383.py b/githubkit/versions/v2022_11_28/models/group_0383.py index 370db2e6c..ef0fda9b8 100644 --- a/githubkit/versions/v2022_11_28/models/group_0383.py +++ b/githubkit/versions/v2022_11_28/models/group_0383.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -190,9 +189,9 @@ class actors within GitHub. id: Union[int, None] = Field(description="Unique identifier of the GitHub app") name: str = Field(description="The name of the GitHub app") node_id: str = Field() - owner: Union[ - WebhookCheckSuiteCompletedPropCheckSuitePropAppPropOwner, None - ] = Field(title="User") + owner: Union[WebhookCheckSuiteCompletedPropCheckSuitePropAppPropOwner, None] = ( + Field(title="User") + ) permissions: Missing[ WebhookCheckSuiteCompletedPropCheckSuitePropAppPropPermissions ] = Field(default=UNSET, description="The set of permissions for the GitHub app") diff --git a/githubkit/versions/v2022_11_28/models/group_0384.py b/githubkit/versions/v2022_11_28/models/group_0384.py index d6eec4e05..006894ebc 100644 --- a/githubkit/versions/v2022_11_28/models/group_0384.py +++ b/githubkit/versions/v2022_11_28/models/group_0384.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -106,10 +105,10 @@ class WebhookCheckSuiteRequestedPropCheckSuite(GitHubModel): ) rerequestable: Missing[bool] = Field(default=UNSET) runs_rerequestable: Missing[bool] = Field(default=UNSET) - status: Union[ - None, Literal["requested", "in_progress", "completed", "queued"] - ] = Field( - description="The summary status for all check runs that are part of the check suite. Can be `requested`, `in_progress`, or `completed`." + status: Union[None, Literal["requested", "in_progress", "completed", "queued"]] = ( + Field( + description="The summary status for all check runs that are part of the check suite. Can be `requested`, `in_progress`, or `completed`." + ) ) updated_at: datetime = Field() url: str = Field(description="URL that points to the check suite API resource.") @@ -190,9 +189,9 @@ class actors within GitHub. id: Union[int, None] = Field(description="Unique identifier of the GitHub app") name: str = Field(description="The name of the GitHub app") node_id: str = Field() - owner: Union[ - WebhookCheckSuiteRequestedPropCheckSuitePropAppPropOwner, None - ] = Field(title="User") + owner: Union[WebhookCheckSuiteRequestedPropCheckSuitePropAppPropOwner, None] = ( + Field(title="User") + ) permissions: Missing[ WebhookCheckSuiteRequestedPropCheckSuitePropAppPropPermissions ] = Field(default=UNSET, description="The set of permissions for the GitHub app") diff --git a/githubkit/versions/v2022_11_28/models/group_0385.py b/githubkit/versions/v2022_11_28/models/group_0385.py index 1fe492a90..bfaf55b71 100644 --- a/githubkit/versions/v2022_11_28/models/group_0385.py +++ b/githubkit/versions/v2022_11_28/models/group_0385.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -105,10 +104,10 @@ class WebhookCheckSuiteRerequestedPropCheckSuite(GitHubModel): ) rerequestable: Missing[bool] = Field(default=UNSET) runs_rerequestable: Missing[bool] = Field(default=UNSET) - status: Union[ - None, Literal["requested", "in_progress", "completed", "queued"] - ] = Field( - description="The summary status for all check runs that are part of the check suite. Can be `requested`, `in_progress`, or `completed`." + status: Union[None, Literal["requested", "in_progress", "completed", "queued"]] = ( + Field( + description="The summary status for all check runs that are part of the check suite. Can be `requested`, `in_progress`, or `completed`." + ) ) updated_at: datetime = Field() url: str = Field(description="URL that points to the check suite API resource.") @@ -184,9 +183,9 @@ class actors within GitHub. id: Union[int, None] = Field(description="Unique identifier of the GitHub app") name: str = Field(description="The name of the GitHub app") node_id: str = Field() - owner: Union[ - WebhookCheckSuiteRerequestedPropCheckSuitePropAppPropOwner, None - ] = Field(title="User") + owner: Union[WebhookCheckSuiteRerequestedPropCheckSuitePropAppPropOwner, None] = ( + Field(title="User") + ) permissions: Missing[ WebhookCheckSuiteRerequestedPropCheckSuitePropAppPropPermissions ] = Field(default=UNSET, description="The set of permissions for the GitHub app") diff --git a/githubkit/versions/v2022_11_28/models/group_0386.py b/githubkit/versions/v2022_11_28/models/group_0386.py index 0d95cf96c..5a1d3feec 100644 --- a/githubkit/versions/v2022_11_28/models/group_0386.py +++ b/githubkit/versions/v2022_11_28/models/group_0386.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0387.py b/githubkit/versions/v2022_11_28/models/group_0387.py index 751115ff0..c5e9396e4 100644 --- a/githubkit/versions/v2022_11_28/models/group_0387.py +++ b/githubkit/versions/v2022_11_28/models/group_0387.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0388.py b/githubkit/versions/v2022_11_28/models/group_0388.py index 5af3bc99f..a01016c37 100644 --- a/githubkit/versions/v2022_11_28/models/group_0388.py +++ b/githubkit/versions/v2022_11_28/models/group_0388.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -78,11 +77,11 @@ class WebhookCodeScanningAlertCreatedPropAlert(GitHubModel): description="The time that the alert was dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`." ) dismissed_by: None = Field() - dismissed_comment: Missing[ - Union[Annotated[str, Field(max_length=280)], None] - ] = Field( - default=UNSET, - description="The dismissal comment associated with the dismissal of the alert.", + dismissed_comment: Missing[Union[Annotated[str, Field(max_length=280)], None]] = ( + Field( + default=UNSET, + description="The dismissal comment associated with the dismissal of the alert.", + ) ) dismissed_reason: None = Field( description="The reason for dismissing or closing the alert. Can be one of: `false positive`, `won't fix`, and `used in tests`." diff --git a/githubkit/versions/v2022_11_28/models/group_0389.py b/githubkit/versions/v2022_11_28/models/group_0389.py index cdd9acb7c..67db987d7 100644 --- a/githubkit/versions/v2022_11_28/models/group_0389.py +++ b/githubkit/versions/v2022_11_28/models/group_0389.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -76,9 +75,9 @@ class WebhookCodeScanningAlertFixedPropAlert(GitHubModel): dismissed_at: Union[datetime, None] = Field( description="The time that the alert was dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`." ) - dismissed_by: Union[ - WebhookCodeScanningAlertFixedPropAlertPropDismissedBy, None - ] = Field(title="User") + dismissed_by: Union[WebhookCodeScanningAlertFixedPropAlertPropDismissedBy, None] = ( + Field(title="User") + ) dismissed_reason: Union[ None, Literal["false positive", "won't fix", "used in tests"] ] = Field(description="The reason for dismissing or closing the alert.") diff --git a/githubkit/versions/v2022_11_28/models/group_0390.py b/githubkit/versions/v2022_11_28/models/group_0390.py index 7c4e4146f..89684fba1 100644 --- a/githubkit/versions/v2022_11_28/models/group_0390.py +++ b/githubkit/versions/v2022_11_28/models/group_0390.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0391.py b/githubkit/versions/v2022_11_28/models/group_0391.py index 5f0305c7e..7a008fb0e 100644 --- a/githubkit/versions/v2022_11_28/models/group_0391.py +++ b/githubkit/versions/v2022_11_28/models/group_0391.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0392.py b/githubkit/versions/v2022_11_28/models/group_0392.py index 81acb47d4..882f0ba54 100644 --- a/githubkit/versions/v2022_11_28/models/group_0392.py +++ b/githubkit/versions/v2022_11_28/models/group_0392.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0393.py b/githubkit/versions/v2022_11_28/models/group_0393.py index 856d8284d..642cf236e 100644 --- a/githubkit/versions/v2022_11_28/models/group_0393.py +++ b/githubkit/versions/v2022_11_28/models/group_0393.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0394.py b/githubkit/versions/v2022_11_28/models/group_0394.py index d50cb9c96..f55514e47 100644 --- a/githubkit/versions/v2022_11_28/models/group_0394.py +++ b/githubkit/versions/v2022_11_28/models/group_0394.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0395.py b/githubkit/versions/v2022_11_28/models/group_0395.py index c4aaa0db2..a52086b82 100644 --- a/githubkit/versions/v2022_11_28/models/group_0395.py +++ b/githubkit/versions/v2022_11_28/models/group_0395.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0396.py b/githubkit/versions/v2022_11_28/models/group_0396.py index 59e5bd51f..f320b212c 100644 --- a/githubkit/versions/v2022_11_28/models/group_0396.py +++ b/githubkit/versions/v2022_11_28/models/group_0396.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0397.py b/githubkit/versions/v2022_11_28/models/group_0397.py index 987fb8d57..56809879b 100644 --- a/githubkit/versions/v2022_11_28/models/group_0397.py +++ b/githubkit/versions/v2022_11_28/models/group_0397.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0398.py b/githubkit/versions/v2022_11_28/models/group_0398.py index 47aac4717..5683c73d3 100644 --- a/githubkit/versions/v2022_11_28/models/group_0398.py +++ b/githubkit/versions/v2022_11_28/models/group_0398.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0399.py b/githubkit/versions/v2022_11_28/models/group_0399.py index 1ce419cc5..54cd67324 100644 --- a/githubkit/versions/v2022_11_28/models/group_0399.py +++ b/githubkit/versions/v2022_11_28/models/group_0399.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0400.py b/githubkit/versions/v2022_11_28/models/group_0400.py index 321600da9..c533ceb12 100644 --- a/githubkit/versions/v2022_11_28/models/group_0400.py +++ b/githubkit/versions/v2022_11_28/models/group_0400.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0401.py b/githubkit/versions/v2022_11_28/models/group_0401.py index 9aeb0e53a..7ed028fc1 100644 --- a/githubkit/versions/v2022_11_28/models/group_0401.py +++ b/githubkit/versions/v2022_11_28/models/group_0401.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0402.py b/githubkit/versions/v2022_11_28/models/group_0402.py index ef5e6c49b..08f4b5f68 100644 --- a/githubkit/versions/v2022_11_28/models/group_0402.py +++ b/githubkit/versions/v2022_11_28/models/group_0402.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0403.py b/githubkit/versions/v2022_11_28/models/group_0403.py index c3274d164..ce61b27b5 100644 --- a/githubkit/versions/v2022_11_28/models/group_0403.py +++ b/githubkit/versions/v2022_11_28/models/group_0403.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0404.py b/githubkit/versions/v2022_11_28/models/group_0404.py index d9dd50314..012b78536 100644 --- a/githubkit/versions/v2022_11_28/models/group_0404.py +++ b/githubkit/versions/v2022_11_28/models/group_0404.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0405.py b/githubkit/versions/v2022_11_28/models/group_0405.py index 2d97f28d7..b85fb0735 100644 --- a/githubkit/versions/v2022_11_28/models/group_0405.py +++ b/githubkit/versions/v2022_11_28/models/group_0405.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0406.py b/githubkit/versions/v2022_11_28/models/group_0406.py index b6643a706..b898303f0 100644 --- a/githubkit/versions/v2022_11_28/models/group_0406.py +++ b/githubkit/versions/v2022_11_28/models/group_0406.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0407.py b/githubkit/versions/v2022_11_28/models/group_0407.py index 23ae33359..fa5f8adb5 100644 --- a/githubkit/versions/v2022_11_28/models/group_0407.py +++ b/githubkit/versions/v2022_11_28/models/group_0407.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0408.py b/githubkit/versions/v2022_11_28/models/group_0408.py index 0e8490bd2..6f8805271 100644 --- a/githubkit/versions/v2022_11_28/models/group_0408.py +++ b/githubkit/versions/v2022_11_28/models/group_0408.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -96,9 +95,9 @@ class WebhookDeploymentCreatedPropDeployment(GitHubModel): id: int = Field() node_id: str = Field() original_environment: str = Field() - payload: Union[ - WebhookDeploymentCreatedPropDeploymentPropPayloadOneof0, str - ] = Field() + payload: Union[WebhookDeploymentCreatedPropDeploymentPropPayloadOneof0, str] = ( + Field() + ) performed_via_github_app: Missing[ Union[WebhookDeploymentCreatedPropDeploymentPropPerformedViaGithubApp, None] ] = Field( @@ -549,9 +548,9 @@ class WebhookDeploymentCreatedPropWorkflowRunPropRepository(GitHubModel): name: Missing[str] = Field(default=UNSET) node_id: Missing[str] = Field(default=UNSET) notifications_url: Missing[str] = Field(default=UNSET) - owner: Missing[ - WebhookDeploymentCreatedPropWorkflowRunPropRepositoryPropOwner - ] = Field(default=UNSET) + owner: Missing[WebhookDeploymentCreatedPropWorkflowRunPropRepositoryPropOwner] = ( + Field(default=UNSET) + ) private: Missing[bool] = Field(default=UNSET) pulls_url: Missing[str] = Field(default=UNSET) releases_url: Missing[str] = Field(default=UNSET) diff --git a/githubkit/versions/v2022_11_28/models/group_0409.py b/githubkit/versions/v2022_11_28/models/group_0409.py index bdd618d1d..13a493b55 100644 --- a/githubkit/versions/v2022_11_28/models/group_0409.py +++ b/githubkit/versions/v2022_11_28/models/group_0409.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0410.py b/githubkit/versions/v2022_11_28/models/group_0410.py index bc720442c..2246ce305 100644 --- a/githubkit/versions/v2022_11_28/models/group_0410.py +++ b/githubkit/versions/v2022_11_28/models/group_0410.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -60,9 +59,9 @@ class WebhookDeploymentReviewApproved(GitHubModel): description="The GitHub user that triggered the event. This property is included in every webhook payload.", ) since: str = Field() - workflow_job_run: Missing[ - WebhookDeploymentReviewApprovedPropWorkflowJobRun - ] = Field(default=UNSET) + workflow_job_run: Missing[WebhookDeploymentReviewApprovedPropWorkflowJobRun] = ( + Field(default=UNSET) + ) workflow_job_runs: Missing[ List[WebhookDeploymentReviewApprovedPropWorkflowJobRunsItems] ] = Field(default=UNSET) diff --git a/githubkit/versions/v2022_11_28/models/group_0411.py b/githubkit/versions/v2022_11_28/models/group_0411.py index c26b54fbb..68839d011 100644 --- a/githubkit/versions/v2022_11_28/models/group_0411.py +++ b/githubkit/versions/v2022_11_28/models/group_0411.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -60,9 +59,9 @@ class WebhookDeploymentReviewRejected(GitHubModel): description="The GitHub user that triggered the event. This property is included in every webhook payload.", ) since: str = Field() - workflow_job_run: Missing[ - WebhookDeploymentReviewRejectedPropWorkflowJobRun - ] = Field(default=UNSET) + workflow_job_run: Missing[WebhookDeploymentReviewRejectedPropWorkflowJobRun] = ( + Field(default=UNSET) + ) workflow_job_runs: Missing[ List[WebhookDeploymentReviewRejectedPropWorkflowJobRunsItems] ] = Field(default=UNSET) @@ -214,9 +213,9 @@ class WebhookDeploymentReviewRejectedPropWorkflowRun(GitHubModel): run_attempt: int = Field() run_number: int = Field() run_started_at: datetime = Field() - status: Literal[ - "requested", "in_progress", "completed", "queued", "waiting" - ] = Field() + status: Literal["requested", "in_progress", "completed", "queued", "waiting"] = ( + Field() + ) triggering_actor: Union[ WebhookDeploymentReviewRejectedPropWorkflowRunPropTriggeringActor, None ] = Field(title="User") diff --git a/githubkit/versions/v2022_11_28/models/group_0412.py b/githubkit/versions/v2022_11_28/models/group_0412.py index 8f4046304..0aa28aef1 100644 --- a/githubkit/versions/v2022_11_28/models/group_0412.py +++ b/githubkit/versions/v2022_11_28/models/group_0412.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -141,9 +140,9 @@ class WebhookDeploymentReviewRequestedPropReviewersItemsPropReviewer(GitHubModel class WebhookDeploymentReviewRequestedPropWorkflowRun(GitHubModel): """Deployment Workflow Run""" - actor: Union[ - WebhookDeploymentReviewRequestedPropWorkflowRunPropActor, None - ] = Field(title="User") + actor: Union[WebhookDeploymentReviewRequestedPropWorkflowRunPropActor, None] = ( + Field(title="User") + ) artifacts_url: Missing[str] = Field(default=UNSET) cancel_url: Missing[str] = Field(default=UNSET) check_suite_id: int = Field() diff --git a/githubkit/versions/v2022_11_28/models/group_0413.py b/githubkit/versions/v2022_11_28/models/group_0413.py index 2ae2a20d4..8d307001d 100644 --- a/githubkit/versions/v2022_11_28/models/group_0413.py +++ b/githubkit/versions/v2022_11_28/models/group_0413.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -127,9 +126,9 @@ class WebhookDeploymentStatusCreatedPropDeployment(GitHubModel): """ created_at: str = Field() - creator: Union[ - WebhookDeploymentStatusCreatedPropDeploymentPropCreator, None - ] = Field(title="User") + creator: Union[WebhookDeploymentStatusCreatedPropDeploymentPropCreator, None] = ( + Field(title="User") + ) description: Union[str, None] = Field() environment: str = Field() id: int = Field() @@ -635,9 +634,9 @@ class WebhookDeploymentStatusCreatedPropWorkflowRun(GitHubModel): None, ] ] = Field(default=UNSET) - repository: Missing[ - WebhookDeploymentStatusCreatedPropWorkflowRunPropRepository - ] = Field(default=UNSET) + repository: Missing[WebhookDeploymentStatusCreatedPropWorkflowRunPropRepository] = ( + Field(default=UNSET) + ) rerun_url: Missing[str] = Field(default=UNSET) run_attempt: int = Field() run_number: int = Field() diff --git a/githubkit/versions/v2022_11_28/models/group_0414.py b/githubkit/versions/v2022_11_28/models/group_0414.py index 25a629db8..1465aaeb8 100644 --- a/githubkit/versions/v2022_11_28/models/group_0414.py +++ b/githubkit/versions/v2022_11_28/models/group_0414.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0415.py b/githubkit/versions/v2022_11_28/models/group_0415.py index afd33ad75..e27609ba8 100644 --- a/githubkit/versions/v2022_11_28/models/group_0415.py +++ b/githubkit/versions/v2022_11_28/models/group_0415.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0416.py b/githubkit/versions/v2022_11_28/models/group_0416.py index 4b76a2f97..e10badc68 100644 --- a/githubkit/versions/v2022_11_28/models/group_0416.py +++ b/githubkit/versions/v2022_11_28/models/group_0416.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0417.py b/githubkit/versions/v2022_11_28/models/group_0417.py index 8c5783db1..0cfdf7283 100644 --- a/githubkit/versions/v2022_11_28/models/group_0417.py +++ b/githubkit/versions/v2022_11_28/models/group_0417.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0418.py b/githubkit/versions/v2022_11_28/models/group_0418.py index 5f6d297df..6b947ac31 100644 --- a/githubkit/versions/v2022_11_28/models/group_0418.py +++ b/githubkit/versions/v2022_11_28/models/group_0418.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0419.py b/githubkit/versions/v2022_11_28/models/group_0419.py index 5b9bde47f..f2d8d414b 100644 --- a/githubkit/versions/v2022_11_28/models/group_0419.py +++ b/githubkit/versions/v2022_11_28/models/group_0419.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0420.py b/githubkit/versions/v2022_11_28/models/group_0420.py index 1d5dcece1..ef0a13550 100644 --- a/githubkit/versions/v2022_11_28/models/group_0420.py +++ b/githubkit/versions/v2022_11_28/models/group_0420.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0421.py b/githubkit/versions/v2022_11_28/models/group_0421.py index b22109f3e..00dc6adab 100644 --- a/githubkit/versions/v2022_11_28/models/group_0421.py +++ b/githubkit/versions/v2022_11_28/models/group_0421.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -51,9 +50,9 @@ class WebhookDiscussionCreatedPropDiscussionAllof0(GitHubModel): locked: bool = Field() node_id: str = Field() number: int = Field() - reactions: Missing[ - WebhookDiscussionCreatedPropDiscussionAllof0PropReactions - ] = Field(default=UNSET, title="Reactions") + reactions: Missing[WebhookDiscussionCreatedPropDiscussionAllof0PropReactions] = ( + Field(default=UNSET, title="Reactions") + ) repository_url: str = Field() state: Literal["open", "locked", "converting", "transferring"] = Field() timeline_url: Missing[str] = Field(default=UNSET) diff --git a/githubkit/versions/v2022_11_28/models/group_0422.py b/githubkit/versions/v2022_11_28/models/group_0422.py index 22d57df8e..e8ba38001 100644 --- a/githubkit/versions/v2022_11_28/models/group_0422.py +++ b/githubkit/versions/v2022_11_28/models/group_0422.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal @@ -38,9 +37,9 @@ class WebhookDiscussionCreatedPropDiscussionAllof1(GitHubModel): locked: Literal[False] = Field() node_id: Missing[str] = Field(default=UNSET) number: Missing[int] = Field(default=UNSET) - reactions: Missing[ - WebhookDiscussionCreatedPropDiscussionAllof1PropReactions - ] = Field(default=UNSET) + reactions: Missing[WebhookDiscussionCreatedPropDiscussionAllof1PropReactions] = ( + Field(default=UNSET) + ) repository_url: Missing[str] = Field(default=UNSET) state: Literal["open", "converting", "transferring"] = Field() timeline_url: Missing[str] = Field(default=UNSET) diff --git a/githubkit/versions/v2022_11_28/models/group_0423.py b/githubkit/versions/v2022_11_28/models/group_0423.py index a6cbaa2e2..fcdec0e2b 100644 --- a/githubkit/versions/v2022_11_28/models/group_0423.py +++ b/githubkit/versions/v2022_11_28/models/group_0423.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0424.py b/githubkit/versions/v2022_11_28/models/group_0424.py index 67a735dd7..9fad3411e 100644 --- a/githubkit/versions/v2022_11_28/models/group_0424.py +++ b/githubkit/versions/v2022_11_28/models/group_0424.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0425.py b/githubkit/versions/v2022_11_28/models/group_0425.py index 7720c8d8d..c5bfe5667 100644 --- a/githubkit/versions/v2022_11_28/models/group_0425.py +++ b/githubkit/versions/v2022_11_28/models/group_0425.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0426.py b/githubkit/versions/v2022_11_28/models/group_0426.py index ba52d89f2..98ae92666 100644 --- a/githubkit/versions/v2022_11_28/models/group_0426.py +++ b/githubkit/versions/v2022_11_28/models/group_0426.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0427.py b/githubkit/versions/v2022_11_28/models/group_0427.py index e0e09d177..7f8ffa17d 100644 --- a/githubkit/versions/v2022_11_28/models/group_0427.py +++ b/githubkit/versions/v2022_11_28/models/group_0427.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0428.py b/githubkit/versions/v2022_11_28/models/group_0428.py index 42d40c256..4d089ff01 100644 --- a/githubkit/versions/v2022_11_28/models/group_0428.py +++ b/githubkit/versions/v2022_11_28/models/group_0428.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0429.py b/githubkit/versions/v2022_11_28/models/group_0429.py index 2100786e9..b56938a3b 100644 --- a/githubkit/versions/v2022_11_28/models/group_0429.py +++ b/githubkit/versions/v2022_11_28/models/group_0429.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0430.py b/githubkit/versions/v2022_11_28/models/group_0430.py index b1b29f493..7454d09ca 100644 --- a/githubkit/versions/v2022_11_28/models/group_0430.py +++ b/githubkit/versions/v2022_11_28/models/group_0430.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0431.py b/githubkit/versions/v2022_11_28/models/group_0431.py index c461718d9..99d6083a6 100644 --- a/githubkit/versions/v2022_11_28/models/group_0431.py +++ b/githubkit/versions/v2022_11_28/models/group_0431.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0432.py b/githubkit/versions/v2022_11_28/models/group_0432.py index 9f1a861ff..7ad2b40f0 100644 --- a/githubkit/versions/v2022_11_28/models/group_0432.py +++ b/githubkit/versions/v2022_11_28/models/group_0432.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0433.py b/githubkit/versions/v2022_11_28/models/group_0433.py index 3df03dd95..083b3a544 100644 --- a/githubkit/versions/v2022_11_28/models/group_0433.py +++ b/githubkit/versions/v2022_11_28/models/group_0433.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0434.py b/githubkit/versions/v2022_11_28/models/group_0434.py index d26a7d9ce..e7d4e4ee1 100644 --- a/githubkit/versions/v2022_11_28/models/group_0434.py +++ b/githubkit/versions/v2022_11_28/models/group_0434.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0435.py b/githubkit/versions/v2022_11_28/models/group_0435.py index 7dfdb9055..6a5ae3aee 100644 --- a/githubkit/versions/v2022_11_28/models/group_0435.py +++ b/githubkit/versions/v2022_11_28/models/group_0435.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0436.py b/githubkit/versions/v2022_11_28/models/group_0436.py index 6134f8408..fd18f1d80 100644 --- a/githubkit/versions/v2022_11_28/models/group_0436.py +++ b/githubkit/versions/v2022_11_28/models/group_0436.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0437.py b/githubkit/versions/v2022_11_28/models/group_0437.py index e268e04e9..db9b04933 100644 --- a/githubkit/versions/v2022_11_28/models/group_0437.py +++ b/githubkit/versions/v2022_11_28/models/group_0437.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0438.py b/githubkit/versions/v2022_11_28/models/group_0438.py index 1e1f95012..27b6081b3 100644 --- a/githubkit/versions/v2022_11_28/models/group_0438.py +++ b/githubkit/versions/v2022_11_28/models/group_0438.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0439.py b/githubkit/versions/v2022_11_28/models/group_0439.py index f54283ca3..14ecf8b8e 100644 --- a/githubkit/versions/v2022_11_28/models/group_0439.py +++ b/githubkit/versions/v2022_11_28/models/group_0439.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0440.py b/githubkit/versions/v2022_11_28/models/group_0440.py index 57db814e3..03559b97e 100644 --- a/githubkit/versions/v2022_11_28/models/group_0440.py +++ b/githubkit/versions/v2022_11_28/models/group_0440.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0441.py b/githubkit/versions/v2022_11_28/models/group_0441.py index 05e66b956..c63e7ef68 100644 --- a/githubkit/versions/v2022_11_28/models/group_0441.py +++ b/githubkit/versions/v2022_11_28/models/group_0441.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0442.py b/githubkit/versions/v2022_11_28/models/group_0442.py index 1d21fffa0..9696c4166 100644 --- a/githubkit/versions/v2022_11_28/models/group_0442.py +++ b/githubkit/versions/v2022_11_28/models/group_0442.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal @@ -40,11 +39,11 @@ class WebhookInstallationCreated(GitHubModel): title="Organization Simple", description="A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.", ) - repositories: Missing[ - List[WebhookInstallationCreatedPropRepositoriesItems] - ] = Field( - default=UNSET, - description="An array of repository objects that the installation can access.", + repositories: Missing[List[WebhookInstallationCreatedPropRepositoriesItems]] = ( + Field( + default=UNSET, + description="An array of repository objects that the installation can access.", + ) ) repository: Missing[RepositoryWebhooks] = Field( default=UNSET, diff --git a/githubkit/versions/v2022_11_28/models/group_0443.py b/githubkit/versions/v2022_11_28/models/group_0443.py index b703c90c5..4847e152f 100644 --- a/githubkit/versions/v2022_11_28/models/group_0443.py +++ b/githubkit/versions/v2022_11_28/models/group_0443.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal @@ -40,11 +39,11 @@ class WebhookInstallationDeleted(GitHubModel): title="Organization Simple", description="A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.", ) - repositories: Missing[ - List[WebhookInstallationDeletedPropRepositoriesItems] - ] = Field( - default=UNSET, - description="An array of repository objects that the installation can access.", + repositories: Missing[List[WebhookInstallationDeletedPropRepositoriesItems]] = ( + Field( + default=UNSET, + description="An array of repository objects that the installation can access.", + ) ) repository: Missing[RepositoryWebhooks] = Field( default=UNSET, diff --git a/githubkit/versions/v2022_11_28/models/group_0444.py b/githubkit/versions/v2022_11_28/models/group_0444.py index 90de258d8..4825a86d6 100644 --- a/githubkit/versions/v2022_11_28/models/group_0444.py +++ b/githubkit/versions/v2022_11_28/models/group_0444.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0445.py b/githubkit/versions/v2022_11_28/models/group_0445.py index aea150841..1f6b84bc6 100644 --- a/githubkit/versions/v2022_11_28/models/group_0445.py +++ b/githubkit/versions/v2022_11_28/models/group_0445.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0446.py b/githubkit/versions/v2022_11_28/models/group_0446.py index 668ab944b..0207d9a3b 100644 --- a/githubkit/versions/v2022_11_28/models/group_0446.py +++ b/githubkit/versions/v2022_11_28/models/group_0446.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0447.py b/githubkit/versions/v2022_11_28/models/group_0447.py index 83458840e..03abd1745 100644 --- a/githubkit/versions/v2022_11_28/models/group_0447.py +++ b/githubkit/versions/v2022_11_28/models/group_0447.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal @@ -40,11 +39,11 @@ class WebhookInstallationSuspend(GitHubModel): title="Organization Simple", description="A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.", ) - repositories: Missing[ - List[WebhookInstallationSuspendPropRepositoriesItems] - ] = Field( - default=UNSET, - description="An array of repository objects that the installation can access.", + repositories: Missing[List[WebhookInstallationSuspendPropRepositoriesItems]] = ( + Field( + default=UNSET, + description="An array of repository objects that the installation can access.", + ) ) repository: Missing[RepositoryWebhooks] = Field( default=UNSET, diff --git a/githubkit/versions/v2022_11_28/models/group_0448.py b/githubkit/versions/v2022_11_28/models/group_0448.py index c289f3397..54958d4d6 100644 --- a/githubkit/versions/v2022_11_28/models/group_0448.py +++ b/githubkit/versions/v2022_11_28/models/group_0448.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0449.py b/githubkit/versions/v2022_11_28/models/group_0449.py index 315ea23ff..b222d9b49 100644 --- a/githubkit/versions/v2022_11_28/models/group_0449.py +++ b/githubkit/versions/v2022_11_28/models/group_0449.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal @@ -40,11 +39,11 @@ class WebhookInstallationUnsuspend(GitHubModel): title="Organization Simple", description="A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.", ) - repositories: Missing[ - List[WebhookInstallationUnsuspendPropRepositoriesItems] - ] = Field( - default=UNSET, - description="An array of repository objects that the installation can access.", + repositories: Missing[List[WebhookInstallationUnsuspendPropRepositoriesItems]] = ( + Field( + default=UNSET, + description="An array of repository objects that the installation can access.", + ) ) repository: Missing[RepositoryWebhooks] = Field( default=UNSET, diff --git a/githubkit/versions/v2022_11_28/models/group_0450.py b/githubkit/versions/v2022_11_28/models/group_0450.py index f6cfaaf56..5b4864d24 100644 --- a/githubkit/versions/v2022_11_28/models/group_0450.py +++ b/githubkit/versions/v2022_11_28/models/group_0450.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0451.py b/githubkit/versions/v2022_11_28/models/group_0451.py index 3aa710143..baed038e2 100644 --- a/githubkit/versions/v2022_11_28/models/group_0451.py +++ b/githubkit/versions/v2022_11_28/models/group_0451.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0452.py b/githubkit/versions/v2022_11_28/models/group_0452.py index b3e90f976..320c337e1 100644 --- a/githubkit/versions/v2022_11_28/models/group_0452.py +++ b/githubkit/versions/v2022_11_28/models/group_0452.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -73,9 +72,9 @@ class WebhookIssueCommentCreatedPropIssue(GitHubModel): performed_via_github_app: Missing[ Union[WebhookIssueCommentCreatedPropIssueMergedPerformedViaGithubApp, None] ] = Field(default=UNSET) - pull_request: Missing[ - WebhookIssueCommentCreatedPropIssueAllof0PropPullRequest - ] = Field(default=UNSET) + pull_request: Missing[WebhookIssueCommentCreatedPropIssueAllof0PropPullRequest] = ( + Field(default=UNSET) + ) reactions: WebhookIssueCommentCreatedPropIssueMergedReactions = Field() repository_url: str = Field() state: Literal["open", "closed"] = Field( diff --git a/githubkit/versions/v2022_11_28/models/group_0453.py b/githubkit/versions/v2022_11_28/models/group_0453.py index d3a9eda08..242ad7b5b 100644 --- a/githubkit/versions/v2022_11_28/models/group_0453.py +++ b/githubkit/versions/v2022_11_28/models/group_0453.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -67,16 +66,16 @@ class WebhookIssueCommentCreatedPropIssueAllof0(GitHubModel): events_url: str = Field() html_url: str = Field() id: int = Field() - labels: Missing[ - List[WebhookIssueCommentCreatedPropIssueAllof0PropLabelsItems] - ] = Field(default=UNSET) + labels: Missing[List[WebhookIssueCommentCreatedPropIssueAllof0PropLabelsItems]] = ( + Field(default=UNSET) + ) labels_url: str = Field() locked: Missing[bool] = Field(default=UNSET) - milestone: Union[ - WebhookIssueCommentCreatedPropIssueAllof0PropMilestone, None - ] = Field( - title="Milestone", - description="A collection of related issues and pull requests.", + milestone: Union[WebhookIssueCommentCreatedPropIssueAllof0PropMilestone, None] = ( + Field( + title="Milestone", + description="A collection of related issues and pull requests.", + ) ) node_id: str = Field() number: int = Field() @@ -87,9 +86,9 @@ class WebhookIssueCommentCreatedPropIssueAllof0(GitHubModel): title="App", description="GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", ) - pull_request: Missing[ - WebhookIssueCommentCreatedPropIssueAllof0PropPullRequest - ] = Field(default=UNSET) + pull_request: Missing[WebhookIssueCommentCreatedPropIssueAllof0PropPullRequest] = ( + Field(default=UNSET) + ) reactions: WebhookIssueCommentCreatedPropIssueAllof0PropReactions = Field( title="Reactions" ) diff --git a/githubkit/versions/v2022_11_28/models/group_0454.py b/githubkit/versions/v2022_11_28/models/group_0454.py index 43505b500..6171043ad 100644 --- a/githubkit/versions/v2022_11_28/models/group_0454.py +++ b/githubkit/versions/v2022_11_28/models/group_0454.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0455.py b/githubkit/versions/v2022_11_28/models/group_0455.py index 0d578648f..dc932bbb6 100644 --- a/githubkit/versions/v2022_11_28/models/group_0455.py +++ b/githubkit/versions/v2022_11_28/models/group_0455.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0456.py b/githubkit/versions/v2022_11_28/models/group_0456.py index 02dd95929..295fb2245 100644 --- a/githubkit/versions/v2022_11_28/models/group_0456.py +++ b/githubkit/versions/v2022_11_28/models/group_0456.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0457.py b/githubkit/versions/v2022_11_28/models/group_0457.py index b3b5f8b9a..0cf598b48 100644 --- a/githubkit/versions/v2022_11_28/models/group_0457.py +++ b/githubkit/versions/v2022_11_28/models/group_0457.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0458.py b/githubkit/versions/v2022_11_28/models/group_0458.py index a53ada389..bbe8d986b 100644 --- a/githubkit/versions/v2022_11_28/models/group_0458.py +++ b/githubkit/versions/v2022_11_28/models/group_0458.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0459.py b/githubkit/versions/v2022_11_28/models/group_0459.py index b853249be..6da98bf11 100644 --- a/githubkit/versions/v2022_11_28/models/group_0459.py +++ b/githubkit/versions/v2022_11_28/models/group_0459.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal @@ -23,9 +22,9 @@ class WebhookIssueCommentCreatedPropIssueAllof1(GitHubModel): """WebhookIssueCommentCreatedPropIssueAllof1""" active_lock_reason: Missing[Union[str, None]] = Field(default=UNSET) - assignee: Union[ - WebhookIssueCommentCreatedPropIssueAllof1PropAssignee, None - ] = Field(title="User") + assignee: Union[WebhookIssueCommentCreatedPropIssueAllof1PropAssignee, None] = ( + Field(title="User") + ) assignees: Missing[ List[Union[WebhookIssueCommentCreatedPropIssueAllof1PropAssigneesItems, None]] ] = Field(default=UNSET) diff --git a/githubkit/versions/v2022_11_28/models/group_0460.py b/githubkit/versions/v2022_11_28/models/group_0460.py index d6fd4c902..5220553e0 100644 --- a/githubkit/versions/v2022_11_28/models/group_0460.py +++ b/githubkit/versions/v2022_11_28/models/group_0460.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0461.py b/githubkit/versions/v2022_11_28/models/group_0461.py index 12274bfb3..fc8eb9f6f 100644 --- a/githubkit/versions/v2022_11_28/models/group_0461.py +++ b/githubkit/versions/v2022_11_28/models/group_0461.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0462.py b/githubkit/versions/v2022_11_28/models/group_0462.py index 428059939..7b8b911ef 100644 --- a/githubkit/versions/v2022_11_28/models/group_0462.py +++ b/githubkit/versions/v2022_11_28/models/group_0462.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0463.py b/githubkit/versions/v2022_11_28/models/group_0463.py index f66d756ec..a12fbf55d 100644 --- a/githubkit/versions/v2022_11_28/models/group_0463.py +++ b/githubkit/versions/v2022_11_28/models/group_0463.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0464.py b/githubkit/versions/v2022_11_28/models/group_0464.py index d722548ad..2934454b8 100644 --- a/githubkit/versions/v2022_11_28/models/group_0464.py +++ b/githubkit/versions/v2022_11_28/models/group_0464.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -73,9 +72,9 @@ class WebhookIssueCommentDeletedPropIssue(GitHubModel): performed_via_github_app: Missing[ Union[WebhookIssueCommentDeletedPropIssueMergedPerformedViaGithubApp, None] ] = Field(default=UNSET) - pull_request: Missing[ - WebhookIssueCommentDeletedPropIssueAllof0PropPullRequest - ] = Field(default=UNSET) + pull_request: Missing[WebhookIssueCommentDeletedPropIssueAllof0PropPullRequest] = ( + Field(default=UNSET) + ) reactions: WebhookIssueCommentDeletedPropIssueMergedReactions = Field() repository_url: str = Field() state: Literal["open", "closed"] = Field( diff --git a/githubkit/versions/v2022_11_28/models/group_0465.py b/githubkit/versions/v2022_11_28/models/group_0465.py index 5ea5bd1ea..604518060 100644 --- a/githubkit/versions/v2022_11_28/models/group_0465.py +++ b/githubkit/versions/v2022_11_28/models/group_0465.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -67,16 +66,16 @@ class WebhookIssueCommentDeletedPropIssueAllof0(GitHubModel): events_url: str = Field() html_url: str = Field() id: int = Field() - labels: Missing[ - List[WebhookIssueCommentDeletedPropIssueAllof0PropLabelsItems] - ] = Field(default=UNSET) + labels: Missing[List[WebhookIssueCommentDeletedPropIssueAllof0PropLabelsItems]] = ( + Field(default=UNSET) + ) labels_url: str = Field() locked: Missing[bool] = Field(default=UNSET) - milestone: Union[ - WebhookIssueCommentDeletedPropIssueAllof0PropMilestone, None - ] = Field( - title="Milestone", - description="A collection of related issues and pull requests.", + milestone: Union[WebhookIssueCommentDeletedPropIssueAllof0PropMilestone, None] = ( + Field( + title="Milestone", + description="A collection of related issues and pull requests.", + ) ) node_id: str = Field() number: int = Field() @@ -87,9 +86,9 @@ class WebhookIssueCommentDeletedPropIssueAllof0(GitHubModel): title="App", description="GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", ) - pull_request: Missing[ - WebhookIssueCommentDeletedPropIssueAllof0PropPullRequest - ] = Field(default=UNSET) + pull_request: Missing[WebhookIssueCommentDeletedPropIssueAllof0PropPullRequest] = ( + Field(default=UNSET) + ) reactions: WebhookIssueCommentDeletedPropIssueAllof0PropReactions = Field( title="Reactions" ) diff --git a/githubkit/versions/v2022_11_28/models/group_0466.py b/githubkit/versions/v2022_11_28/models/group_0466.py index eacfe42b7..1accd904c 100644 --- a/githubkit/versions/v2022_11_28/models/group_0466.py +++ b/githubkit/versions/v2022_11_28/models/group_0466.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0467.py b/githubkit/versions/v2022_11_28/models/group_0467.py index 21d33aaaf..011ca8ea7 100644 --- a/githubkit/versions/v2022_11_28/models/group_0467.py +++ b/githubkit/versions/v2022_11_28/models/group_0467.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0468.py b/githubkit/versions/v2022_11_28/models/group_0468.py index 5a9e220b7..0395b9a89 100644 --- a/githubkit/versions/v2022_11_28/models/group_0468.py +++ b/githubkit/versions/v2022_11_28/models/group_0468.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0469.py b/githubkit/versions/v2022_11_28/models/group_0469.py index cbfdfcc05..b527e3f15 100644 --- a/githubkit/versions/v2022_11_28/models/group_0469.py +++ b/githubkit/versions/v2022_11_28/models/group_0469.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0470.py b/githubkit/versions/v2022_11_28/models/group_0470.py index 03d1b91de..3d8745eca 100644 --- a/githubkit/versions/v2022_11_28/models/group_0470.py +++ b/githubkit/versions/v2022_11_28/models/group_0470.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0471.py b/githubkit/versions/v2022_11_28/models/group_0471.py index acba60529..3e9e40f0f 100644 --- a/githubkit/versions/v2022_11_28/models/group_0471.py +++ b/githubkit/versions/v2022_11_28/models/group_0471.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal @@ -23,9 +22,9 @@ class WebhookIssueCommentDeletedPropIssueAllof1(GitHubModel): """WebhookIssueCommentDeletedPropIssueAllof1""" active_lock_reason: Missing[Union[str, None]] = Field(default=UNSET) - assignee: Union[ - WebhookIssueCommentDeletedPropIssueAllof1PropAssignee, None - ] = Field(title="User") + assignee: Union[WebhookIssueCommentDeletedPropIssueAllof1PropAssignee, None] = ( + Field(title="User") + ) assignees: Missing[ List[Union[WebhookIssueCommentDeletedPropIssueAllof1PropAssigneesItems, None]] ] = Field(default=UNSET) diff --git a/githubkit/versions/v2022_11_28/models/group_0472.py b/githubkit/versions/v2022_11_28/models/group_0472.py index 4014a2887..b2bda0c23 100644 --- a/githubkit/versions/v2022_11_28/models/group_0472.py +++ b/githubkit/versions/v2022_11_28/models/group_0472.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0473.py b/githubkit/versions/v2022_11_28/models/group_0473.py index bd4580b9a..6f55530f3 100644 --- a/githubkit/versions/v2022_11_28/models/group_0473.py +++ b/githubkit/versions/v2022_11_28/models/group_0473.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0474.py b/githubkit/versions/v2022_11_28/models/group_0474.py index 352dca57c..9046932e9 100644 --- a/githubkit/versions/v2022_11_28/models/group_0474.py +++ b/githubkit/versions/v2022_11_28/models/group_0474.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0475.py b/githubkit/versions/v2022_11_28/models/group_0475.py index 053c54f8e..b85e8f34d 100644 --- a/githubkit/versions/v2022_11_28/models/group_0475.py +++ b/githubkit/versions/v2022_11_28/models/group_0475.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0476.py b/githubkit/versions/v2022_11_28/models/group_0476.py index 78e43a231..6bfe92e34 100644 --- a/githubkit/versions/v2022_11_28/models/group_0476.py +++ b/githubkit/versions/v2022_11_28/models/group_0476.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -73,9 +72,9 @@ class WebhookIssueCommentEditedPropIssue(GitHubModel): performed_via_github_app: Missing[ Union[WebhookIssueCommentEditedPropIssueMergedPerformedViaGithubApp, None] ] = Field(default=UNSET) - pull_request: Missing[ - WebhookIssueCommentEditedPropIssueAllof0PropPullRequest - ] = Field(default=UNSET) + pull_request: Missing[WebhookIssueCommentEditedPropIssueAllof0PropPullRequest] = ( + Field(default=UNSET) + ) reactions: WebhookIssueCommentEditedPropIssueMergedReactions = Field() repository_url: str = Field() state: Literal["open", "closed"] = Field( diff --git a/githubkit/versions/v2022_11_28/models/group_0477.py b/githubkit/versions/v2022_11_28/models/group_0477.py index fdf47199c..cee800bc2 100644 --- a/githubkit/versions/v2022_11_28/models/group_0477.py +++ b/githubkit/versions/v2022_11_28/models/group_0477.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -67,16 +66,16 @@ class WebhookIssueCommentEditedPropIssueAllof0(GitHubModel): events_url: str = Field() html_url: str = Field() id: int = Field() - labels: Missing[ - List[WebhookIssueCommentEditedPropIssueAllof0PropLabelsItems] - ] = Field(default=UNSET) + labels: Missing[List[WebhookIssueCommentEditedPropIssueAllof0PropLabelsItems]] = ( + Field(default=UNSET) + ) labels_url: str = Field() locked: Missing[bool] = Field(default=UNSET) - milestone: Union[ - WebhookIssueCommentEditedPropIssueAllof0PropMilestone, None - ] = Field( - title="Milestone", - description="A collection of related issues and pull requests.", + milestone: Union[WebhookIssueCommentEditedPropIssueAllof0PropMilestone, None] = ( + Field( + title="Milestone", + description="A collection of related issues and pull requests.", + ) ) node_id: str = Field() number: int = Field() @@ -87,9 +86,9 @@ class WebhookIssueCommentEditedPropIssueAllof0(GitHubModel): title="App", description="GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", ) - pull_request: Missing[ - WebhookIssueCommentEditedPropIssueAllof0PropPullRequest - ] = Field(default=UNSET) + pull_request: Missing[WebhookIssueCommentEditedPropIssueAllof0PropPullRequest] = ( + Field(default=UNSET) + ) reactions: WebhookIssueCommentEditedPropIssueAllof0PropReactions = Field( title="Reactions" ) diff --git a/githubkit/versions/v2022_11_28/models/group_0478.py b/githubkit/versions/v2022_11_28/models/group_0478.py index 6ae1ac3cc..65b348d39 100644 --- a/githubkit/versions/v2022_11_28/models/group_0478.py +++ b/githubkit/versions/v2022_11_28/models/group_0478.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0479.py b/githubkit/versions/v2022_11_28/models/group_0479.py index 483fbe625..265267a2d 100644 --- a/githubkit/versions/v2022_11_28/models/group_0479.py +++ b/githubkit/versions/v2022_11_28/models/group_0479.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0480.py b/githubkit/versions/v2022_11_28/models/group_0480.py index 07bbbf11a..d6a35ae06 100644 --- a/githubkit/versions/v2022_11_28/models/group_0480.py +++ b/githubkit/versions/v2022_11_28/models/group_0480.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0481.py b/githubkit/versions/v2022_11_28/models/group_0481.py index 806b718db..0a173e32e 100644 --- a/githubkit/versions/v2022_11_28/models/group_0481.py +++ b/githubkit/versions/v2022_11_28/models/group_0481.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0482.py b/githubkit/versions/v2022_11_28/models/group_0482.py index e28064002..5c34a4a0a 100644 --- a/githubkit/versions/v2022_11_28/models/group_0482.py +++ b/githubkit/versions/v2022_11_28/models/group_0482.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0483.py b/githubkit/versions/v2022_11_28/models/group_0483.py index cfd486394..61298c7a7 100644 --- a/githubkit/versions/v2022_11_28/models/group_0483.py +++ b/githubkit/versions/v2022_11_28/models/group_0483.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0484.py b/githubkit/versions/v2022_11_28/models/group_0484.py index 47a85f3c2..798033933 100644 --- a/githubkit/versions/v2022_11_28/models/group_0484.py +++ b/githubkit/versions/v2022_11_28/models/group_0484.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0485.py b/githubkit/versions/v2022_11_28/models/group_0485.py index 51ea245ef..5b58bf55a 100644 --- a/githubkit/versions/v2022_11_28/models/group_0485.py +++ b/githubkit/versions/v2022_11_28/models/group_0485.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0486.py b/githubkit/versions/v2022_11_28/models/group_0486.py index 1f11c639b..7edff9420 100644 --- a/githubkit/versions/v2022_11_28/models/group_0486.py +++ b/githubkit/versions/v2022_11_28/models/group_0486.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -100,9 +99,9 @@ class WebhookIssuesAssignedPropIssue(GitHubModel): assignee: Missing[Union[WebhookIssuesAssignedPropIssuePropAssignee, None]] = Field( default=UNSET, title="User" ) - assignees: List[ - Union[WebhookIssuesAssignedPropIssuePropAssigneesItems, None] - ] = Field() + assignees: List[Union[WebhookIssuesAssignedPropIssuePropAssigneesItems, None]] = ( + Field() + ) author_association: Literal[ "COLLABORATOR", "CONTRIBUTOR", @@ -238,9 +237,9 @@ class WebhookIssuesAssignedPropIssuePropMilestone(GitHubModel): closed_at: Union[datetime, None] = Field() closed_issues: int = Field() created_at: datetime = Field() - creator: Union[ - WebhookIssuesAssignedPropIssuePropMilestonePropCreator, None - ] = Field(title="User") + creator: Union[WebhookIssuesAssignedPropIssuePropMilestonePropCreator, None] = ( + Field(title="User") + ) description: Union[str, None] = Field() due_on: Union[datetime, None] = Field() html_url: str = Field() diff --git a/githubkit/versions/v2022_11_28/models/group_0487.py b/githubkit/versions/v2022_11_28/models/group_0487.py index c4979eb34..53e01e201 100644 --- a/githubkit/versions/v2022_11_28/models/group_0487.py +++ b/githubkit/versions/v2022_11_28/models/group_0487.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0488.py b/githubkit/versions/v2022_11_28/models/group_0488.py index 7c94b750e..f433b860c 100644 --- a/githubkit/versions/v2022_11_28/models/group_0488.py +++ b/githubkit/versions/v2022_11_28/models/group_0488.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0489.py b/githubkit/versions/v2022_11_28/models/group_0489.py index 8f0a9cecf..725e0c10e 100644 --- a/githubkit/versions/v2022_11_28/models/group_0489.py +++ b/githubkit/versions/v2022_11_28/models/group_0489.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -33,9 +32,9 @@ class WebhookIssuesClosedPropIssueAllof0(GitHubModel): active_lock_reason: Union[ None, Literal["resolved", "off-topic", "too heated", "spam"] ] = Field() - assignee: Missing[ - Union[WebhookIssuesClosedPropIssueAllof0PropAssignee, None] - ] = Field(default=UNSET, title="User") + assignee: Missing[Union[WebhookIssuesClosedPropIssueAllof0PropAssignee, None]] = ( + Field(default=UNSET, title="User") + ) assignees: List[ Union[WebhookIssuesClosedPropIssueAllof0PropAssigneesItems, None] ] = Field() diff --git a/githubkit/versions/v2022_11_28/models/group_0490.py b/githubkit/versions/v2022_11_28/models/group_0490.py index aed96e71e..67637d8b2 100644 --- a/githubkit/versions/v2022_11_28/models/group_0490.py +++ b/githubkit/versions/v2022_11_28/models/group_0490.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0491.py b/githubkit/versions/v2022_11_28/models/group_0491.py index 39c7451db..cfdda82b8 100644 --- a/githubkit/versions/v2022_11_28/models/group_0491.py +++ b/githubkit/versions/v2022_11_28/models/group_0491.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -29,9 +28,9 @@ class WebhookIssuesClosedPropIssueAllof0PropMilestone(GitHubModel): closed_at: Union[datetime, None] = Field() closed_issues: int = Field() created_at: datetime = Field() - creator: Union[ - WebhookIssuesClosedPropIssueAllof0PropMilestonePropCreator, None - ] = Field(title="User") + creator: Union[WebhookIssuesClosedPropIssueAllof0PropMilestonePropCreator, None] = ( + Field(title="User") + ) description: Union[str, None] = Field() due_on: Union[datetime, None] = Field() html_url: str = Field() diff --git a/githubkit/versions/v2022_11_28/models/group_0492.py b/githubkit/versions/v2022_11_28/models/group_0492.py index eb27f4bf1..0f1382f9f 100644 --- a/githubkit/versions/v2022_11_28/models/group_0492.py +++ b/githubkit/versions/v2022_11_28/models/group_0492.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0493.py b/githubkit/versions/v2022_11_28/models/group_0493.py index 6f58bc702..3f3980ffd 100644 --- a/githubkit/versions/v2022_11_28/models/group_0493.py +++ b/githubkit/versions/v2022_11_28/models/group_0493.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0494.py b/githubkit/versions/v2022_11_28/models/group_0494.py index a44b6bbec..dbed44f7e 100644 --- a/githubkit/versions/v2022_11_28/models/group_0494.py +++ b/githubkit/versions/v2022_11_28/models/group_0494.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0495.py b/githubkit/versions/v2022_11_28/models/group_0495.py index 2accd7ea3..61782b677 100644 --- a/githubkit/versions/v2022_11_28/models/group_0495.py +++ b/githubkit/versions/v2022_11_28/models/group_0495.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal @@ -23,9 +22,9 @@ class WebhookIssuesClosedPropIssueAllof1(GitHubModel): """WebhookIssuesClosedPropIssueAllof1""" active_lock_reason: Missing[Union[str, None]] = Field(default=UNSET) - assignee: Missing[ - Union[WebhookIssuesClosedPropIssueAllof1PropAssignee, None] - ] = Field(default=UNSET) + assignee: Missing[Union[WebhookIssuesClosedPropIssueAllof1PropAssignee, None]] = ( + Field(default=UNSET) + ) assignees: Missing[ List[Union[WebhookIssuesClosedPropIssueAllof1PropAssigneesItems, None]] ] = Field(default=UNSET) @@ -43,9 +42,9 @@ class WebhookIssuesClosedPropIssueAllof1(GitHubModel): ] = Field(default=UNSET) labels_url: Missing[str] = Field(default=UNSET) locked: Missing[bool] = Field(default=UNSET) - milestone: Missing[ - Union[WebhookIssuesClosedPropIssueAllof1PropMilestone, None] - ] = Field(default=UNSET) + milestone: Missing[Union[WebhookIssuesClosedPropIssueAllof1PropMilestone, None]] = ( + Field(default=UNSET) + ) node_id: Missing[str] = Field(default=UNSET) number: Missing[int] = Field(default=UNSET) performed_via_github_app: Missing[ diff --git a/githubkit/versions/v2022_11_28/models/group_0496.py b/githubkit/versions/v2022_11_28/models/group_0496.py index 36eded9ba..114a7d5d0 100644 --- a/githubkit/versions/v2022_11_28/models/group_0496.py +++ b/githubkit/versions/v2022_11_28/models/group_0496.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -26,9 +25,9 @@ class WebhookIssuesClosedPropIssueMergedMilestone(GitHubModel): closed_at: Union[datetime, None] = Field() closed_issues: int = Field() created_at: datetime = Field() - creator: Union[ - WebhookIssuesClosedPropIssueAllof0PropMilestonePropCreator, None - ] = Field(title="User") + creator: Union[WebhookIssuesClosedPropIssueAllof0PropMilestonePropCreator, None] = ( + Field(title="User") + ) description: Union[str, None] = Field() due_on: Union[datetime, None] = Field() html_url: str = Field() diff --git a/githubkit/versions/v2022_11_28/models/group_0497.py b/githubkit/versions/v2022_11_28/models/group_0497.py index 58ea6aa48..1e4ff4417 100644 --- a/githubkit/versions/v2022_11_28/models/group_0497.py +++ b/githubkit/versions/v2022_11_28/models/group_0497.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0498.py b/githubkit/versions/v2022_11_28/models/group_0498.py index 228beaa3b..cc6c60a8f 100644 --- a/githubkit/versions/v2022_11_28/models/group_0498.py +++ b/githubkit/versions/v2022_11_28/models/group_0498.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -71,9 +70,9 @@ class WebhookIssuesDeletedPropIssue(GitHubModel): assignee: Missing[Union[WebhookIssuesDeletedPropIssuePropAssignee, None]] = Field( default=UNSET, title="User" ) - assignees: List[ - Union[WebhookIssuesDeletedPropIssuePropAssigneesItems, None] - ] = Field() + assignees: List[Union[WebhookIssuesDeletedPropIssuePropAssigneesItems, None]] = ( + Field() + ) author_association: Literal[ "COLLABORATOR", "CONTRIBUTOR", diff --git a/githubkit/versions/v2022_11_28/models/group_0499.py b/githubkit/versions/v2022_11_28/models/group_0499.py index fec9860f3..055779f13 100644 --- a/githubkit/versions/v2022_11_28/models/group_0499.py +++ b/githubkit/versions/v2022_11_28/models/group_0499.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0500.py b/githubkit/versions/v2022_11_28/models/group_0500.py index b0e3a53a2..cdc985c44 100644 --- a/githubkit/versions/v2022_11_28/models/group_0500.py +++ b/githubkit/versions/v2022_11_28/models/group_0500.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -32,9 +31,9 @@ class WebhookIssuesDemilestonedPropIssue(GitHubModel): active_lock_reason: Union[ Literal["resolved", "off-topic", "too heated", "spam"], None ] = Field() - assignee: Missing[ - Union[WebhookIssuesDemilestonedPropIssueMergedAssignee, None] - ] = Field(default=UNSET) + assignee: Missing[Union[WebhookIssuesDemilestonedPropIssueMergedAssignee, None]] = ( + Field(default=UNSET) + ) assignees: List[WebhookIssuesDemilestonedPropIssueMergedAssignees] = Field() author_association: Literal[ "COLLABORATOR", @@ -74,9 +73,9 @@ class WebhookIssuesDemilestonedPropIssue(GitHubModel): performed_via_github_app: Missing[ Union[WebhookIssuesDemilestonedPropIssueMergedPerformedViaGithubApp, None] ] = Field(default=UNSET) - pull_request: Missing[ - WebhookIssuesDemilestonedPropIssueAllof0PropPullRequest - ] = Field(default=UNSET) + pull_request: Missing[WebhookIssuesDemilestonedPropIssueAllof0PropPullRequest] = ( + Field(default=UNSET) + ) reactions: WebhookIssuesDemilestonedPropIssueMergedReactions = Field() repository_url: str = Field() state: Missing[Literal["open", "closed"]] = Field( diff --git a/githubkit/versions/v2022_11_28/models/group_0501.py b/githubkit/versions/v2022_11_28/models/group_0501.py index 2fab9d3a3..215a6ee11 100644 --- a/githubkit/versions/v2022_11_28/models/group_0501.py +++ b/githubkit/versions/v2022_11_28/models/group_0501.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -65,16 +64,16 @@ class WebhookIssuesDemilestonedPropIssueAllof0(GitHubModel): events_url: str = Field() html_url: str = Field() id: int = Field() - labels: Missing[ - List[WebhookIssuesDemilestonedPropIssueAllof0PropLabelsItems] - ] = Field(default=UNSET) + labels: Missing[List[WebhookIssuesDemilestonedPropIssueAllof0PropLabelsItems]] = ( + Field(default=UNSET) + ) labels_url: str = Field() locked: Missing[bool] = Field(default=UNSET) - milestone: Union[ - WebhookIssuesDemilestonedPropIssueAllof0PropMilestone, None - ] = Field( - title="Milestone", - description="A collection of related issues and pull requests.", + milestone: Union[WebhookIssuesDemilestonedPropIssueAllof0PropMilestone, None] = ( + Field( + title="Milestone", + description="A collection of related issues and pull requests.", + ) ) node_id: str = Field() number: int = Field() @@ -85,9 +84,9 @@ class WebhookIssuesDemilestonedPropIssueAllof0(GitHubModel): title="App", description="GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", ) - pull_request: Missing[ - WebhookIssuesDemilestonedPropIssueAllof0PropPullRequest - ] = Field(default=UNSET) + pull_request: Missing[WebhookIssuesDemilestonedPropIssueAllof0PropPullRequest] = ( + Field(default=UNSET) + ) reactions: WebhookIssuesDemilestonedPropIssueAllof0PropReactions = Field( title="Reactions" ) diff --git a/githubkit/versions/v2022_11_28/models/group_0502.py b/githubkit/versions/v2022_11_28/models/group_0502.py index 0cb25a29b..0f90eadd4 100644 --- a/githubkit/versions/v2022_11_28/models/group_0502.py +++ b/githubkit/versions/v2022_11_28/models/group_0502.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0503.py b/githubkit/versions/v2022_11_28/models/group_0503.py index e2466fab7..608fb0490 100644 --- a/githubkit/versions/v2022_11_28/models/group_0503.py +++ b/githubkit/versions/v2022_11_28/models/group_0503.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0504.py b/githubkit/versions/v2022_11_28/models/group_0504.py index 84af2511a..82681ab2b 100644 --- a/githubkit/versions/v2022_11_28/models/group_0504.py +++ b/githubkit/versions/v2022_11_28/models/group_0504.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0505.py b/githubkit/versions/v2022_11_28/models/group_0505.py index 25fa03ae1..2f04958ad 100644 --- a/githubkit/versions/v2022_11_28/models/group_0505.py +++ b/githubkit/versions/v2022_11_28/models/group_0505.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -44,11 +43,11 @@ class WebhookIssuesDemilestonedPropIssueAllof1(GitHubModel): ] = Field(default=UNSET) labels_url: Missing[str] = Field(default=UNSET) locked: Missing[bool] = Field(default=UNSET) - milestone: Union[ - WebhookIssuesDemilestonedPropIssueAllof1PropMilestone, None - ] = Field( - title="Milestone", - description="A collection of related issues and pull requests.", + milestone: Union[WebhookIssuesDemilestonedPropIssueAllof1PropMilestone, None] = ( + Field( + title="Milestone", + description="A collection of related issues and pull requests.", + ) ) node_id: Missing[str] = Field(default=UNSET) number: Missing[int] = Field(default=UNSET) diff --git a/githubkit/versions/v2022_11_28/models/group_0506.py b/githubkit/versions/v2022_11_28/models/group_0506.py index fe76a843b..3a8f72699 100644 --- a/githubkit/versions/v2022_11_28/models/group_0506.py +++ b/githubkit/versions/v2022_11_28/models/group_0506.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0507.py b/githubkit/versions/v2022_11_28/models/group_0507.py index 34f040821..3529ebb23 100644 --- a/githubkit/versions/v2022_11_28/models/group_0507.py +++ b/githubkit/versions/v2022_11_28/models/group_0507.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -111,9 +110,9 @@ class WebhookIssuesEditedPropIssue(GitHubModel): assignee: Missing[Union[WebhookIssuesEditedPropIssuePropAssignee, None]] = Field( default=UNSET, title="User" ) - assignees: List[ - Union[WebhookIssuesEditedPropIssuePropAssigneesItems, None] - ] = Field() + assignees: List[Union[WebhookIssuesEditedPropIssuePropAssigneesItems, None]] = ( + Field() + ) author_association: Literal[ "COLLABORATOR", "CONTRIBUTOR", diff --git a/githubkit/versions/v2022_11_28/models/group_0508.py b/githubkit/versions/v2022_11_28/models/group_0508.py index 56396c92f..9c56ea496 100644 --- a/githubkit/versions/v2022_11_28/models/group_0508.py +++ b/githubkit/versions/v2022_11_28/models/group_0508.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -86,9 +85,9 @@ class WebhookIssuesLabeledPropIssue(GitHubModel): assignee: Missing[Union[WebhookIssuesLabeledPropIssuePropAssignee, None]] = Field( default=UNSET, title="User" ) - assignees: List[ - Union[WebhookIssuesLabeledPropIssuePropAssigneesItems, None] - ] = Field() + assignees: List[Union[WebhookIssuesLabeledPropIssuePropAssigneesItems, None]] = ( + Field() + ) author_association: Literal[ "COLLABORATOR", "CONTRIBUTOR", diff --git a/githubkit/versions/v2022_11_28/models/group_0509.py b/githubkit/versions/v2022_11_28/models/group_0509.py index f4fdef2ac..4cafc6cf6 100644 --- a/githubkit/versions/v2022_11_28/models/group_0509.py +++ b/githubkit/versions/v2022_11_28/models/group_0509.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0510.py b/githubkit/versions/v2022_11_28/models/group_0510.py index 0f75f9377..850c533b2 100644 --- a/githubkit/versions/v2022_11_28/models/group_0510.py +++ b/githubkit/versions/v2022_11_28/models/group_0510.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0511.py b/githubkit/versions/v2022_11_28/models/group_0511.py index f4e6f60a3..be8f81a62 100644 --- a/githubkit/versions/v2022_11_28/models/group_0511.py +++ b/githubkit/versions/v2022_11_28/models/group_0511.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -33,9 +32,9 @@ class WebhookIssuesLockedPropIssueAllof0(GitHubModel): active_lock_reason: Union[ None, Literal["resolved", "off-topic", "too heated", "spam"] ] = Field() - assignee: Missing[ - Union[WebhookIssuesLockedPropIssueAllof0PropAssignee, None] - ] = Field(default=UNSET, title="User") + assignee: Missing[Union[WebhookIssuesLockedPropIssueAllof0PropAssignee, None]] = ( + Field(default=UNSET, title="User") + ) assignees: List[ Union[WebhookIssuesLockedPropIssueAllof0PropAssigneesItems, None] ] = Field() diff --git a/githubkit/versions/v2022_11_28/models/group_0512.py b/githubkit/versions/v2022_11_28/models/group_0512.py index 8ca5e668c..4c89390f2 100644 --- a/githubkit/versions/v2022_11_28/models/group_0512.py +++ b/githubkit/versions/v2022_11_28/models/group_0512.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0513.py b/githubkit/versions/v2022_11_28/models/group_0513.py index 3fda9b92f..9b57cd87c 100644 --- a/githubkit/versions/v2022_11_28/models/group_0513.py +++ b/githubkit/versions/v2022_11_28/models/group_0513.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -29,9 +28,9 @@ class WebhookIssuesLockedPropIssueAllof0PropMilestone(GitHubModel): closed_at: Union[datetime, None] = Field() closed_issues: int = Field() created_at: datetime = Field() - creator: Union[ - WebhookIssuesLockedPropIssueAllof0PropMilestonePropCreator, None - ] = Field(title="User") + creator: Union[WebhookIssuesLockedPropIssueAllof0PropMilestonePropCreator, None] = ( + Field(title="User") + ) description: Union[str, None] = Field() due_on: Union[datetime, None] = Field() html_url: str = Field() diff --git a/githubkit/versions/v2022_11_28/models/group_0514.py b/githubkit/versions/v2022_11_28/models/group_0514.py index 069b2c09a..a7d52a632 100644 --- a/githubkit/versions/v2022_11_28/models/group_0514.py +++ b/githubkit/versions/v2022_11_28/models/group_0514.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0515.py b/githubkit/versions/v2022_11_28/models/group_0515.py index 26d4cc2a9..a3fd83815 100644 --- a/githubkit/versions/v2022_11_28/models/group_0515.py +++ b/githubkit/versions/v2022_11_28/models/group_0515.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0516.py b/githubkit/versions/v2022_11_28/models/group_0516.py index 9ef92079e..50e0a27ba 100644 --- a/githubkit/versions/v2022_11_28/models/group_0516.py +++ b/githubkit/versions/v2022_11_28/models/group_0516.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0517.py b/githubkit/versions/v2022_11_28/models/group_0517.py index c954a67f5..54edc6419 100644 --- a/githubkit/versions/v2022_11_28/models/group_0517.py +++ b/githubkit/versions/v2022_11_28/models/group_0517.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal @@ -25,9 +24,9 @@ class WebhookIssuesLockedPropIssueAllof1(GitHubModel): active_lock_reason: Union[ None, Literal["resolved", "off-topic", "too heated", "spam"] ] = Field() - assignee: Missing[ - Union[WebhookIssuesLockedPropIssueAllof1PropAssignee, None] - ] = Field(default=UNSET) + assignee: Missing[Union[WebhookIssuesLockedPropIssueAllof1PropAssignee, None]] = ( + Field(default=UNSET) + ) assignees: Missing[ List[Union[WebhookIssuesLockedPropIssueAllof1PropAssigneesItems, None]] ] = Field(default=UNSET) @@ -45,9 +44,9 @@ class WebhookIssuesLockedPropIssueAllof1(GitHubModel): ] = Field(default=UNSET) labels_url: Missing[str] = Field(default=UNSET) locked: Literal[True] = Field() - milestone: Missing[ - Union[WebhookIssuesLockedPropIssueAllof1PropMilestone, None] - ] = Field(default=UNSET) + milestone: Missing[Union[WebhookIssuesLockedPropIssueAllof1PropMilestone, None]] = ( + Field(default=UNSET) + ) node_id: Missing[str] = Field(default=UNSET) number: Missing[int] = Field(default=UNSET) performed_via_github_app: Missing[ diff --git a/githubkit/versions/v2022_11_28/models/group_0518.py b/githubkit/versions/v2022_11_28/models/group_0518.py index 9a41c0db5..9f0f3b5b1 100644 --- a/githubkit/versions/v2022_11_28/models/group_0518.py +++ b/githubkit/versions/v2022_11_28/models/group_0518.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -26,9 +25,9 @@ class WebhookIssuesLockedPropIssueMergedMilestone(GitHubModel): closed_at: Union[datetime, None] = Field() closed_issues: int = Field() created_at: datetime = Field() - creator: Union[ - WebhookIssuesLockedPropIssueAllof0PropMilestonePropCreator, None - ] = Field(title="User") + creator: Union[WebhookIssuesLockedPropIssueAllof0PropMilestonePropCreator, None] = ( + Field(title="User") + ) description: Union[str, None] = Field() due_on: Union[datetime, None] = Field() html_url: str = Field() diff --git a/githubkit/versions/v2022_11_28/models/group_0519.py b/githubkit/versions/v2022_11_28/models/group_0519.py index 0e6e1d011..54ab31c4a 100644 --- a/githubkit/versions/v2022_11_28/models/group_0519.py +++ b/githubkit/versions/v2022_11_28/models/group_0519.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0520.py b/githubkit/versions/v2022_11_28/models/group_0520.py index d60cae4c6..c8eb4c7b4 100644 --- a/githubkit/versions/v2022_11_28/models/group_0520.py +++ b/githubkit/versions/v2022_11_28/models/group_0520.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0521.py b/githubkit/versions/v2022_11_28/models/group_0521.py index a48741d69..5508ae81d 100644 --- a/githubkit/versions/v2022_11_28/models/group_0521.py +++ b/githubkit/versions/v2022_11_28/models/group_0521.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -30,9 +29,9 @@ class WebhookIssuesMilestonedPropIssue(GitHubModel): active_lock_reason: Union[ Literal["resolved", "off-topic", "too heated", "spam"], None ] = Field() - assignee: Missing[ - Union[WebhookIssuesMilestonedPropIssueMergedAssignee, None] - ] = Field(default=UNSET) + assignee: Missing[Union[WebhookIssuesMilestonedPropIssueMergedAssignee, None]] = ( + Field(default=UNSET) + ) assignees: List[WebhookIssuesMilestonedPropIssueMergedAssignees] = Field() author_association: Literal[ "COLLABORATOR", @@ -70,9 +69,9 @@ class WebhookIssuesMilestonedPropIssue(GitHubModel): performed_via_github_app: Missing[ Union[WebhookIssuesMilestonedPropIssueMergedPerformedViaGithubApp, None] ] = Field(default=UNSET) - pull_request: Missing[ - WebhookIssuesMilestonedPropIssueAllof0PropPullRequest - ] = Field(default=UNSET) + pull_request: Missing[WebhookIssuesMilestonedPropIssueAllof0PropPullRequest] = ( + Field(default=UNSET) + ) reactions: WebhookIssuesMilestonedPropIssueMergedReactions = Field() repository_url: str = Field() state: Missing[Literal["open", "closed"]] = Field( diff --git a/githubkit/versions/v2022_11_28/models/group_0522.py b/githubkit/versions/v2022_11_28/models/group_0522.py index 4f7844934..59488f08b 100644 --- a/githubkit/versions/v2022_11_28/models/group_0522.py +++ b/githubkit/versions/v2022_11_28/models/group_0522.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -60,9 +59,9 @@ class WebhookIssuesMilestonedPropIssueAllof0(GitHubModel): events_url: str = Field() html_url: str = Field() id: int = Field() - labels: Missing[ - List[WebhookIssuesMilestonedPropIssueAllof0PropLabelsItems] - ] = Field(default=UNSET) + labels: Missing[List[WebhookIssuesMilestonedPropIssueAllof0PropLabelsItems]] = ( + Field(default=UNSET) + ) labels_url: str = Field() locked: Missing[bool] = Field(default=UNSET) milestone: Union[WebhookIssuesMilestonedPropIssueAllof0PropMilestone, None] = Field( @@ -78,9 +77,9 @@ class WebhookIssuesMilestonedPropIssueAllof0(GitHubModel): title="App", description="GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", ) - pull_request: Missing[ - WebhookIssuesMilestonedPropIssueAllof0PropPullRequest - ] = Field(default=UNSET) + pull_request: Missing[WebhookIssuesMilestonedPropIssueAllof0PropPullRequest] = ( + Field(default=UNSET) + ) reactions: WebhookIssuesMilestonedPropIssueAllof0PropReactions = Field( title="Reactions" ) diff --git a/githubkit/versions/v2022_11_28/models/group_0523.py b/githubkit/versions/v2022_11_28/models/group_0523.py index 343d4c954..ab73e0292 100644 --- a/githubkit/versions/v2022_11_28/models/group_0523.py +++ b/githubkit/versions/v2022_11_28/models/group_0523.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0524.py b/githubkit/versions/v2022_11_28/models/group_0524.py index bc7204d36..afcfd3cbc 100644 --- a/githubkit/versions/v2022_11_28/models/group_0524.py +++ b/githubkit/versions/v2022_11_28/models/group_0524.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0525.py b/githubkit/versions/v2022_11_28/models/group_0525.py index 5eaf8f294..80a45c6ef 100644 --- a/githubkit/versions/v2022_11_28/models/group_0525.py +++ b/githubkit/versions/v2022_11_28/models/group_0525.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0526.py b/githubkit/versions/v2022_11_28/models/group_0526.py index a7aa45a09..bd77eef4e 100644 --- a/githubkit/versions/v2022_11_28/models/group_0526.py +++ b/githubkit/versions/v2022_11_28/models/group_0526.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/v2022_11_28/models/group_0527.py b/githubkit/versions/v2022_11_28/models/group_0527.py index 2e7afbe83..5b362eed4 100644 --- a/githubkit/versions/v2022_11_28/models/group_0527.py +++ b/githubkit/versions/v2022_11_28/models/group_0527.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0528.py b/githubkit/versions/v2022_11_28/models/group_0528.py index 56b1f817a..8e670d8c7 100644 --- a/githubkit/versions/v2022_11_28/models/group_0528.py +++ b/githubkit/versions/v2022_11_28/models/group_0528.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0529.py b/githubkit/versions/v2022_11_28/models/group_0529.py index a193633c2..f40ca857e 100644 --- a/githubkit/versions/v2022_11_28/models/group_0529.py +++ b/githubkit/versions/v2022_11_28/models/group_0529.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -72,9 +71,9 @@ class WebhookIssuesOpenedPropIssue(GitHubModel): assignee: Missing[Union[WebhookIssuesOpenedPropIssuePropAssignee, None]] = Field( default=UNSET, title="User" ) - assignees: List[ - Union[WebhookIssuesOpenedPropIssuePropAssigneesItems, None] - ] = Field() + assignees: List[Union[WebhookIssuesOpenedPropIssuePropAssigneesItems, None]] = ( + Field() + ) author_association: Literal[ "COLLABORATOR", "CONTRIBUTOR", @@ -508,16 +507,16 @@ class WebhookIssuesOpenedPropChangesPropOldIssue(GitHubModel): events_url: str = Field() html_url: str = Field() id: int = Field() - labels: Missing[ - List[WebhookIssuesOpenedPropChangesPropOldIssuePropLabelsItems] - ] = Field(default=UNSET) + labels: Missing[List[WebhookIssuesOpenedPropChangesPropOldIssuePropLabelsItems]] = ( + Field(default=UNSET) + ) labels_url: str = Field() locked: Missing[bool] = Field(default=UNSET) - milestone: Union[ - WebhookIssuesOpenedPropChangesPropOldIssuePropMilestone, None - ] = Field( - title="Milestone", - description="A collection of related issues and pull requests.", + milestone: Union[WebhookIssuesOpenedPropChangesPropOldIssuePropMilestone, None] = ( + Field( + title="Milestone", + description="A collection of related issues and pull requests.", + ) ) node_id: str = Field() number: int = Field() @@ -528,9 +527,9 @@ class WebhookIssuesOpenedPropChangesPropOldIssue(GitHubModel): title="App", description="GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", ) - pull_request: Missing[ - WebhookIssuesOpenedPropChangesPropOldIssuePropPullRequest - ] = Field(default=UNSET) + pull_request: Missing[WebhookIssuesOpenedPropChangesPropOldIssuePropPullRequest] = ( + Field(default=UNSET) + ) reactions: WebhookIssuesOpenedPropChangesPropOldIssuePropReactions = Field( title="Reactions" ) @@ -976,9 +975,9 @@ class WebhookIssuesOpenedPropChangesPropOldRepository(GitHubModel): open_issues: int = Field() open_issues_count: int = Field() organization: Missing[str] = Field(default=UNSET) - owner: Union[ - WebhookIssuesOpenedPropChangesPropOldRepositoryPropOwner, None - ] = Field(title="User") + owner: Union[WebhookIssuesOpenedPropChangesPropOldRepositoryPropOwner, None] = ( + Field(title="User") + ) permissions: Missing[ WebhookIssuesOpenedPropChangesPropOldRepositoryPropPermissions ] = Field(default=UNSET) diff --git a/githubkit/versions/v2022_11_28/models/group_0530.py b/githubkit/versions/v2022_11_28/models/group_0530.py index 3eb3330c9..a7b26550e 100644 --- a/githubkit/versions/v2022_11_28/models/group_0530.py +++ b/githubkit/versions/v2022_11_28/models/group_0530.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -71,9 +70,9 @@ class WebhookIssuesPinnedPropIssue(GitHubModel): assignee: Missing[Union[WebhookIssuesPinnedPropIssuePropAssignee, None]] = Field( default=UNSET, title="User" ) - assignees: List[ - Union[WebhookIssuesPinnedPropIssuePropAssigneesItems, None] - ] = Field() + assignees: List[Union[WebhookIssuesPinnedPropIssuePropAssigneesItems, None]] = ( + Field() + ) author_association: Literal[ "COLLABORATOR", "CONTRIBUTOR", diff --git a/githubkit/versions/v2022_11_28/models/group_0531.py b/githubkit/versions/v2022_11_28/models/group_0531.py index e926ced81..24cb20bf1 100644 --- a/githubkit/versions/v2022_11_28/models/group_0531.py +++ b/githubkit/versions/v2022_11_28/models/group_0531.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0532.py b/githubkit/versions/v2022_11_28/models/group_0532.py index 26997ea9e..304196e64 100644 --- a/githubkit/versions/v2022_11_28/models/group_0532.py +++ b/githubkit/versions/v2022_11_28/models/group_0532.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -30,9 +29,9 @@ class WebhookIssuesReopenedPropIssue(GitHubModel): active_lock_reason: Union[ Literal["resolved", "off-topic", "too heated", "spam"], None ] = Field() - assignee: Missing[ - Union[WebhookIssuesReopenedPropIssueMergedAssignee, None] - ] = Field(default=UNSET) + assignee: Missing[Union[WebhookIssuesReopenedPropIssueMergedAssignee, None]] = ( + Field(default=UNSET) + ) assignees: List[WebhookIssuesReopenedPropIssueMergedAssignees] = Field() author_association: Literal[ "COLLABORATOR", diff --git a/githubkit/versions/v2022_11_28/models/group_0533.py b/githubkit/versions/v2022_11_28/models/group_0533.py index 27d54a5b8..8ae697811 100644 --- a/githubkit/versions/v2022_11_28/models/group_0533.py +++ b/githubkit/versions/v2022_11_28/models/group_0533.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -33,9 +32,9 @@ class WebhookIssuesReopenedPropIssueAllof0(GitHubModel): active_lock_reason: Union[ None, Literal["resolved", "off-topic", "too heated", "spam"] ] = Field() - assignee: Missing[ - Union[WebhookIssuesReopenedPropIssueAllof0PropAssignee, None] - ] = Field(default=UNSET, title="User") + assignee: Missing[Union[WebhookIssuesReopenedPropIssueAllof0PropAssignee, None]] = ( + Field(default=UNSET, title="User") + ) assignees: List[ Union[WebhookIssuesReopenedPropIssueAllof0PropAssigneesItems, None] ] = Field() diff --git a/githubkit/versions/v2022_11_28/models/group_0534.py b/githubkit/versions/v2022_11_28/models/group_0534.py index 9e92d948b..fc8af35f5 100644 --- a/githubkit/versions/v2022_11_28/models/group_0534.py +++ b/githubkit/versions/v2022_11_28/models/group_0534.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0535.py b/githubkit/versions/v2022_11_28/models/group_0535.py index d9d87e809..d08f0cbbd 100644 --- a/githubkit/versions/v2022_11_28/models/group_0535.py +++ b/githubkit/versions/v2022_11_28/models/group_0535.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0536.py b/githubkit/versions/v2022_11_28/models/group_0536.py index c6df6bdbc..98fb4235d 100644 --- a/githubkit/versions/v2022_11_28/models/group_0536.py +++ b/githubkit/versions/v2022_11_28/models/group_0536.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0537.py b/githubkit/versions/v2022_11_28/models/group_0537.py index 4f82bf9f7..0088ce7c2 100644 --- a/githubkit/versions/v2022_11_28/models/group_0537.py +++ b/githubkit/versions/v2022_11_28/models/group_0537.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0538.py b/githubkit/versions/v2022_11_28/models/group_0538.py index 92a2a3195..bd5576323 100644 --- a/githubkit/versions/v2022_11_28/models/group_0538.py +++ b/githubkit/versions/v2022_11_28/models/group_0538.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0539.py b/githubkit/versions/v2022_11_28/models/group_0539.py index 88e8576d9..5a3d8d6de 100644 --- a/githubkit/versions/v2022_11_28/models/group_0539.py +++ b/githubkit/versions/v2022_11_28/models/group_0539.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal @@ -23,9 +22,9 @@ class WebhookIssuesReopenedPropIssueAllof1(GitHubModel): """WebhookIssuesReopenedPropIssueAllof1""" active_lock_reason: Missing[Union[str, None]] = Field(default=UNSET) - assignee: Missing[ - Union[WebhookIssuesReopenedPropIssueAllof1PropAssignee, None] - ] = Field(default=UNSET) + assignee: Missing[Union[WebhookIssuesReopenedPropIssueAllof1PropAssignee, None]] = ( + Field(default=UNSET) + ) assignees: Missing[ List[Union[WebhookIssuesReopenedPropIssueAllof1PropAssigneesItems, None]] ] = Field(default=UNSET) diff --git a/githubkit/versions/v2022_11_28/models/group_0540.py b/githubkit/versions/v2022_11_28/models/group_0540.py index e11c13592..5cce80589 100644 --- a/githubkit/versions/v2022_11_28/models/group_0540.py +++ b/githubkit/versions/v2022_11_28/models/group_0540.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0541.py b/githubkit/versions/v2022_11_28/models/group_0541.py index e4a20181c..866c1e168 100644 --- a/githubkit/versions/v2022_11_28/models/group_0541.py +++ b/githubkit/versions/v2022_11_28/models/group_0541.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0542.py b/githubkit/versions/v2022_11_28/models/group_0542.py index 4e0e5da21..ec1775eae 100644 --- a/githubkit/versions/v2022_11_28/models/group_0542.py +++ b/githubkit/versions/v2022_11_28/models/group_0542.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -69,9 +68,9 @@ class WebhookIssuesTransferredPropIssue(GitHubModel): active_lock_reason: Union[ None, Literal["resolved", "off-topic", "too heated", "spam"] ] = Field() - assignee: Missing[ - Union[WebhookIssuesTransferredPropIssuePropAssignee, None] - ] = Field(default=UNSET, title="User") + assignee: Missing[Union[WebhookIssuesTransferredPropIssuePropAssignee, None]] = ( + Field(default=UNSET, title="User") + ) assignees: List[ Union[WebhookIssuesTransferredPropIssuePropAssigneesItems, None] ] = Field() @@ -206,9 +205,9 @@ class WebhookIssuesTransferredPropIssuePropMilestone(GitHubModel): closed_at: Union[datetime, None] = Field() closed_issues: int = Field() created_at: datetime = Field() - creator: Union[ - WebhookIssuesTransferredPropIssuePropMilestonePropCreator, None - ] = Field(title="User") + creator: Union[WebhookIssuesTransferredPropIssuePropMilestonePropCreator, None] = ( + Field(title="User") + ) description: Union[str, None] = Field() due_on: Union[datetime, None] = Field() html_url: str = Field() diff --git a/githubkit/versions/v2022_11_28/models/group_0543.py b/githubkit/versions/v2022_11_28/models/group_0543.py index 848c8ed0f..f42029eec 100644 --- a/githubkit/versions/v2022_11_28/models/group_0543.py +++ b/githubkit/versions/v2022_11_28/models/group_0543.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -99,12 +98,12 @@ class WebhookIssuesUnassignedPropIssue(GitHubModel): active_lock_reason: Union[ None, Literal["resolved", "off-topic", "too heated", "spam"] ] = Field() - assignee: Missing[ - Union[WebhookIssuesUnassignedPropIssuePropAssignee, None] - ] = Field(default=UNSET, title="User") - assignees: List[ - Union[WebhookIssuesUnassignedPropIssuePropAssigneesItems, None] - ] = Field() + assignee: Missing[Union[WebhookIssuesUnassignedPropIssuePropAssignee, None]] = ( + Field(default=UNSET, title="User") + ) + assignees: List[Union[WebhookIssuesUnassignedPropIssuePropAssigneesItems, None]] = ( + Field() + ) author_association: Literal[ "COLLABORATOR", "CONTRIBUTOR", @@ -240,9 +239,9 @@ class WebhookIssuesUnassignedPropIssuePropMilestone(GitHubModel): closed_at: Union[datetime, None] = Field() closed_issues: int = Field() created_at: datetime = Field() - creator: Union[ - WebhookIssuesUnassignedPropIssuePropMilestonePropCreator, None - ] = Field(title="User") + creator: Union[WebhookIssuesUnassignedPropIssuePropMilestonePropCreator, None] = ( + Field(title="User") + ) description: Union[str, None] = Field() due_on: Union[datetime, None] = Field() html_url: str = Field() diff --git a/githubkit/versions/v2022_11_28/models/group_0544.py b/githubkit/versions/v2022_11_28/models/group_0544.py index 5eca6f2a8..3a0ecec84 100644 --- a/githubkit/versions/v2022_11_28/models/group_0544.py +++ b/githubkit/versions/v2022_11_28/models/group_0544.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -88,9 +87,9 @@ class WebhookIssuesUnlabeledPropIssue(GitHubModel): assignee: Missing[Union[WebhookIssuesUnlabeledPropIssuePropAssignee, None]] = Field( default=UNSET, title="User" ) - assignees: List[ - Union[WebhookIssuesUnlabeledPropIssuePropAssigneesItems, None] - ] = Field() + assignees: List[Union[WebhookIssuesUnlabeledPropIssuePropAssigneesItems, None]] = ( + Field() + ) author_association: Literal[ "COLLABORATOR", "CONTRIBUTOR", @@ -226,9 +225,9 @@ class WebhookIssuesUnlabeledPropIssuePropMilestone(GitHubModel): closed_at: Union[datetime, None] = Field() closed_issues: int = Field() created_at: datetime = Field() - creator: Union[ - WebhookIssuesUnlabeledPropIssuePropMilestonePropCreator, None - ] = Field(title="User") + creator: Union[WebhookIssuesUnlabeledPropIssuePropMilestonePropCreator, None] = ( + Field(title="User") + ) description: Union[str, None] = Field() due_on: Union[datetime, None] = Field() html_url: str = Field() diff --git a/githubkit/versions/v2022_11_28/models/group_0545.py b/githubkit/versions/v2022_11_28/models/group_0545.py index 943176007..19419e591 100644 --- a/githubkit/versions/v2022_11_28/models/group_0545.py +++ b/githubkit/versions/v2022_11_28/models/group_0545.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0546.py b/githubkit/versions/v2022_11_28/models/group_0546.py index 46fbfde74..3a420f779 100644 --- a/githubkit/versions/v2022_11_28/models/group_0546.py +++ b/githubkit/versions/v2022_11_28/models/group_0546.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -27,9 +26,9 @@ class WebhookIssuesUnlockedPropIssue(GitHubModel): """WebhookIssuesUnlockedPropIssue""" active_lock_reason: Union[None, None] = Field() - assignee: Missing[ - Union[WebhookIssuesUnlockedPropIssueMergedAssignee, None] - ] = Field(default=UNSET) + assignee: Missing[Union[WebhookIssuesUnlockedPropIssueMergedAssignee, None]] = ( + Field(default=UNSET) + ) assignees: List[WebhookIssuesUnlockedPropIssueMergedAssignees] = Field() author_association: Literal[ "COLLABORATOR", diff --git a/githubkit/versions/v2022_11_28/models/group_0547.py b/githubkit/versions/v2022_11_28/models/group_0547.py index ce235c576..d8d0e886c 100644 --- a/githubkit/versions/v2022_11_28/models/group_0547.py +++ b/githubkit/versions/v2022_11_28/models/group_0547.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -32,9 +31,9 @@ class WebhookIssuesUnlockedPropIssueAllof0(GitHubModel): active_lock_reason: Union[ None, Literal["resolved", "off-topic", "too heated", "spam"] ] = Field() - assignee: Missing[ - Union[WebhookIssuesUnlockedPropIssueAllof0PropAssignee, None] - ] = Field(default=UNSET, title="User") + assignee: Missing[Union[WebhookIssuesUnlockedPropIssueAllof0PropAssignee, None]] = ( + Field(default=UNSET, title="User") + ) assignees: List[ Union[WebhookIssuesUnlockedPropIssueAllof0PropAssigneesItems, None] ] = Field() diff --git a/githubkit/versions/v2022_11_28/models/group_0548.py b/githubkit/versions/v2022_11_28/models/group_0548.py index 4fe4ca14d..7e15acdab 100644 --- a/githubkit/versions/v2022_11_28/models/group_0548.py +++ b/githubkit/versions/v2022_11_28/models/group_0548.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0549.py b/githubkit/versions/v2022_11_28/models/group_0549.py index bfc2f6797..7633fa231 100644 --- a/githubkit/versions/v2022_11_28/models/group_0549.py +++ b/githubkit/versions/v2022_11_28/models/group_0549.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0550.py b/githubkit/versions/v2022_11_28/models/group_0550.py index 954301a79..a404df2e4 100644 --- a/githubkit/versions/v2022_11_28/models/group_0550.py +++ b/githubkit/versions/v2022_11_28/models/group_0550.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0551.py b/githubkit/versions/v2022_11_28/models/group_0551.py index 4814a8704..5996e0229 100644 --- a/githubkit/versions/v2022_11_28/models/group_0551.py +++ b/githubkit/versions/v2022_11_28/models/group_0551.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal @@ -23,9 +22,9 @@ class WebhookIssuesUnlockedPropIssueAllof1(GitHubModel): """WebhookIssuesUnlockedPropIssueAllof1""" active_lock_reason: None = Field() - assignee: Missing[ - Union[WebhookIssuesUnlockedPropIssueAllof1PropAssignee, None] - ] = Field(default=UNSET) + assignee: Missing[Union[WebhookIssuesUnlockedPropIssueAllof1PropAssignee, None]] = ( + Field(default=UNSET) + ) assignees: Missing[ List[Union[WebhookIssuesUnlockedPropIssueAllof1PropAssigneesItems, None]] ] = Field(default=UNSET) diff --git a/githubkit/versions/v2022_11_28/models/group_0552.py b/githubkit/versions/v2022_11_28/models/group_0552.py index 0e89733e9..9317ba5ee 100644 --- a/githubkit/versions/v2022_11_28/models/group_0552.py +++ b/githubkit/versions/v2022_11_28/models/group_0552.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0553.py b/githubkit/versions/v2022_11_28/models/group_0553.py index f1c5f2338..0b3669021 100644 --- a/githubkit/versions/v2022_11_28/models/group_0553.py +++ b/githubkit/versions/v2022_11_28/models/group_0553.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -71,9 +70,9 @@ class WebhookIssuesUnpinnedPropIssue(GitHubModel): assignee: Missing[Union[WebhookIssuesUnpinnedPropIssuePropAssignee, None]] = Field( default=UNSET, title="User" ) - assignees: List[ - Union[WebhookIssuesUnpinnedPropIssuePropAssigneesItems, None] - ] = Field() + assignees: List[Union[WebhookIssuesUnpinnedPropIssuePropAssigneesItems, None]] = ( + Field() + ) author_association: Literal[ "COLLABORATOR", "CONTRIBUTOR", @@ -205,9 +204,9 @@ class WebhookIssuesUnpinnedPropIssuePropMilestone(GitHubModel): closed_at: Union[datetime, None] = Field() closed_issues: int = Field() created_at: datetime = Field() - creator: Union[ - WebhookIssuesUnpinnedPropIssuePropMilestonePropCreator, None - ] = Field(title="User") + creator: Union[WebhookIssuesUnpinnedPropIssuePropMilestonePropCreator, None] = ( + Field(title="User") + ) description: Union[str, None] = Field() due_on: Union[datetime, None] = Field() html_url: str = Field() diff --git a/githubkit/versions/v2022_11_28/models/group_0554.py b/githubkit/versions/v2022_11_28/models/group_0554.py index 5f9cdaecc..767fdbe53 100644 --- a/githubkit/versions/v2022_11_28/models/group_0554.py +++ b/githubkit/versions/v2022_11_28/models/group_0554.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0555.py b/githubkit/versions/v2022_11_28/models/group_0555.py index 5cd1b6c5e..f5814271c 100644 --- a/githubkit/versions/v2022_11_28/models/group_0555.py +++ b/githubkit/versions/v2022_11_28/models/group_0555.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0556.py b/githubkit/versions/v2022_11_28/models/group_0556.py index aa56175e4..2766b7599 100644 --- a/githubkit/versions/v2022_11_28/models/group_0556.py +++ b/githubkit/versions/v2022_11_28/models/group_0556.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0557.py b/githubkit/versions/v2022_11_28/models/group_0557.py index 5ecd51722..654da0913 100644 --- a/githubkit/versions/v2022_11_28/models/group_0557.py +++ b/githubkit/versions/v2022_11_28/models/group_0557.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0558.py b/githubkit/versions/v2022_11_28/models/group_0558.py index 50e67907d..a57253605 100644 --- a/githubkit/versions/v2022_11_28/models/group_0558.py +++ b/githubkit/versions/v2022_11_28/models/group_0558.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0559.py b/githubkit/versions/v2022_11_28/models/group_0559.py index 648a8996f..ea0de8ec5 100644 --- a/githubkit/versions/v2022_11_28/models/group_0559.py +++ b/githubkit/versions/v2022_11_28/models/group_0559.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0560.py b/githubkit/versions/v2022_11_28/models/group_0560.py index d47a1a692..ef83ff08c 100644 --- a/githubkit/versions/v2022_11_28/models/group_0560.py +++ b/githubkit/versions/v2022_11_28/models/group_0560.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0561.py b/githubkit/versions/v2022_11_28/models/group_0561.py index 71c40e335..f3f38708b 100644 --- a/githubkit/versions/v2022_11_28/models/group_0561.py +++ b/githubkit/versions/v2022_11_28/models/group_0561.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0562.py b/githubkit/versions/v2022_11_28/models/group_0562.py index ce6247cee..30404bd8a 100644 --- a/githubkit/versions/v2022_11_28/models/group_0562.py +++ b/githubkit/versions/v2022_11_28/models/group_0562.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0563.py b/githubkit/versions/v2022_11_28/models/group_0563.py index e26360259..8d8a62580 100644 --- a/githubkit/versions/v2022_11_28/models/group_0563.py +++ b/githubkit/versions/v2022_11_28/models/group_0563.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0564.py b/githubkit/versions/v2022_11_28/models/group_0564.py index 2368b11b5..13be7affa 100644 --- a/githubkit/versions/v2022_11_28/models/group_0564.py +++ b/githubkit/versions/v2022_11_28/models/group_0564.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0565.py b/githubkit/versions/v2022_11_28/models/group_0565.py index 8669c069e..47a9a59c1 100644 --- a/githubkit/versions/v2022_11_28/models/group_0565.py +++ b/githubkit/versions/v2022_11_28/models/group_0565.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0566.py b/githubkit/versions/v2022_11_28/models/group_0566.py index 028e5cc55..c1b9ac924 100644 --- a/githubkit/versions/v2022_11_28/models/group_0566.py +++ b/githubkit/versions/v2022_11_28/models/group_0566.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0567.py b/githubkit/versions/v2022_11_28/models/group_0567.py index b709e41f8..09d3f9c57 100644 --- a/githubkit/versions/v2022_11_28/models/group_0567.py +++ b/githubkit/versions/v2022_11_28/models/group_0567.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0568.py b/githubkit/versions/v2022_11_28/models/group_0568.py index 63b7b8db6..8effc0961 100644 --- a/githubkit/versions/v2022_11_28/models/group_0568.py +++ b/githubkit/versions/v2022_11_28/models/group_0568.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0569.py b/githubkit/versions/v2022_11_28/models/group_0569.py index 8cdd525e2..52e197232 100644 --- a/githubkit/versions/v2022_11_28/models/group_0569.py +++ b/githubkit/versions/v2022_11_28/models/group_0569.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0570.py b/githubkit/versions/v2022_11_28/models/group_0570.py index 53f7e25d7..4b92f6f5f 100644 --- a/githubkit/versions/v2022_11_28/models/group_0570.py +++ b/githubkit/versions/v2022_11_28/models/group_0570.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0571.py b/githubkit/versions/v2022_11_28/models/group_0571.py index c12c213bf..4a02cd36e 100644 --- a/githubkit/versions/v2022_11_28/models/group_0571.py +++ b/githubkit/versions/v2022_11_28/models/group_0571.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0572.py b/githubkit/versions/v2022_11_28/models/group_0572.py index 2c8463b7e..276b474fc 100644 --- a/githubkit/versions/v2022_11_28/models/group_0572.py +++ b/githubkit/versions/v2022_11_28/models/group_0572.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0573.py b/githubkit/versions/v2022_11_28/models/group_0573.py index 1782cf71c..aeab39135 100644 --- a/githubkit/versions/v2022_11_28/models/group_0573.py +++ b/githubkit/versions/v2022_11_28/models/group_0573.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0574.py b/githubkit/versions/v2022_11_28/models/group_0574.py index e7b1c8cd7..3c472eadc 100644 --- a/githubkit/versions/v2022_11_28/models/group_0574.py +++ b/githubkit/versions/v2022_11_28/models/group_0574.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0575.py b/githubkit/versions/v2022_11_28/models/group_0575.py index ca5fde230..604a2d05f 100644 --- a/githubkit/versions/v2022_11_28/models/group_0575.py +++ b/githubkit/versions/v2022_11_28/models/group_0575.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0576.py b/githubkit/versions/v2022_11_28/models/group_0576.py index be55590d2..6b477d1a5 100644 --- a/githubkit/versions/v2022_11_28/models/group_0576.py +++ b/githubkit/versions/v2022_11_28/models/group_0576.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0577.py b/githubkit/versions/v2022_11_28/models/group_0577.py index 6b9b86d65..d7610593a 100644 --- a/githubkit/versions/v2022_11_28/models/group_0577.py +++ b/githubkit/versions/v2022_11_28/models/group_0577.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal @@ -154,10 +153,10 @@ class WebhookMembershipAddedPropTeamPropParent(GitHubModel): description="Permission that the team will have for its repositories" ) privacy: Literal["open", "closed", "secret"] = Field() - notification_setting: Literal[ - "notifications_enabled", "notifications_disabled" - ] = Field( - description="Whether team members will receive notifications when their team is @mentioned" + notification_setting: Literal["notifications_enabled", "notifications_disabled"] = ( + Field( + description="Whether team members will receive notifications when their team is @mentioned" + ) ) repositories_url: str = Field() slug: str = Field() diff --git a/githubkit/versions/v2022_11_28/models/group_0578.py b/githubkit/versions/v2022_11_28/models/group_0578.py index 9cbfb81e0..b1f3be888 100644 --- a/githubkit/versions/v2022_11_28/models/group_0578.py +++ b/githubkit/versions/v2022_11_28/models/group_0578.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal @@ -154,10 +153,10 @@ class WebhookMembershipRemovedPropTeamPropParent(GitHubModel): description="Permission that the team will have for its repositories" ) privacy: Literal["open", "closed", "secret"] = Field() - notification_setting: Literal[ - "notifications_enabled", "notifications_disabled" - ] = Field( - description="Whether team members will receive notifications when their team is @mentioned" + notification_setting: Literal["notifications_enabled", "notifications_disabled"] = ( + Field( + description="Whether team members will receive notifications when their team is @mentioned" + ) ) repositories_url: str = Field() slug: str = Field() diff --git a/githubkit/versions/v2022_11_28/models/group_0579.py b/githubkit/versions/v2022_11_28/models/group_0579.py index 28a06949c..6d787a748 100644 --- a/githubkit/versions/v2022_11_28/models/group_0579.py +++ b/githubkit/versions/v2022_11_28/models/group_0579.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0580.py b/githubkit/versions/v2022_11_28/models/group_0580.py index 814bb78e0..0e7264d37 100644 --- a/githubkit/versions/v2022_11_28/models/group_0580.py +++ b/githubkit/versions/v2022_11_28/models/group_0580.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0581.py b/githubkit/versions/v2022_11_28/models/group_0581.py index 0a0143076..627a48352 100644 --- a/githubkit/versions/v2022_11_28/models/group_0581.py +++ b/githubkit/versions/v2022_11_28/models/group_0581.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0582.py b/githubkit/versions/v2022_11_28/models/group_0582.py index 438adcbbc..73c9e82ad 100644 --- a/githubkit/versions/v2022_11_28/models/group_0582.py +++ b/githubkit/versions/v2022_11_28/models/group_0582.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0583.py b/githubkit/versions/v2022_11_28/models/group_0583.py index 99b38ab20..c26138035 100644 --- a/githubkit/versions/v2022_11_28/models/group_0583.py +++ b/githubkit/versions/v2022_11_28/models/group_0583.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0584.py b/githubkit/versions/v2022_11_28/models/group_0584.py index 7d7dd0839..975405ff0 100644 --- a/githubkit/versions/v2022_11_28/models/group_0584.py +++ b/githubkit/versions/v2022_11_28/models/group_0584.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0585.py b/githubkit/versions/v2022_11_28/models/group_0585.py index a8dcde54d..18fd97c6b 100644 --- a/githubkit/versions/v2022_11_28/models/group_0585.py +++ b/githubkit/versions/v2022_11_28/models/group_0585.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0586.py b/githubkit/versions/v2022_11_28/models/group_0586.py index 87828c98f..099cb6c69 100644 --- a/githubkit/versions/v2022_11_28/models/group_0586.py +++ b/githubkit/versions/v2022_11_28/models/group_0586.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0587.py b/githubkit/versions/v2022_11_28/models/group_0587.py index 667e8dece..09dcc9c5c 100644 --- a/githubkit/versions/v2022_11_28/models/group_0587.py +++ b/githubkit/versions/v2022_11_28/models/group_0587.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0588.py b/githubkit/versions/v2022_11_28/models/group_0588.py index 2025da2a5..e29915cb0 100644 --- a/githubkit/versions/v2022_11_28/models/group_0588.py +++ b/githubkit/versions/v2022_11_28/models/group_0588.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0589.py b/githubkit/versions/v2022_11_28/models/group_0589.py index 85875cc2a..d073f86d2 100644 --- a/githubkit/versions/v2022_11_28/models/group_0589.py +++ b/githubkit/versions/v2022_11_28/models/group_0589.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0590.py b/githubkit/versions/v2022_11_28/models/group_0590.py index 9216063b4..b777a87a8 100644 --- a/githubkit/versions/v2022_11_28/models/group_0590.py +++ b/githubkit/versions/v2022_11_28/models/group_0590.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0591.py b/githubkit/versions/v2022_11_28/models/group_0591.py index 85fdec260..20c9cc558 100644 --- a/githubkit/versions/v2022_11_28/models/group_0591.py +++ b/githubkit/versions/v2022_11_28/models/group_0591.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -99,9 +98,9 @@ class WebhookOrganizationMemberInvitedPropInvitation(GitHubModel): failed_reason: Union[str, None] = Field() id: float = Field() invitation_teams_url: str = Field() - inviter: Union[ - WebhookOrganizationMemberInvitedPropInvitationPropInviter, None - ] = Field(title="User") + inviter: Union[WebhookOrganizationMemberInvitedPropInvitationPropInviter, None] = ( + Field(title="User") + ) login: Union[str, None] = Field() node_id: str = Field() role: str = Field() diff --git a/githubkit/versions/v2022_11_28/models/group_0592.py b/githubkit/versions/v2022_11_28/models/group_0592.py index d307d304d..6aa795c67 100644 --- a/githubkit/versions/v2022_11_28/models/group_0592.py +++ b/githubkit/versions/v2022_11_28/models/group_0592.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0593.py b/githubkit/versions/v2022_11_28/models/group_0593.py index 4b5e52be6..e3642fb8d 100644 --- a/githubkit/versions/v2022_11_28/models/group_0593.py +++ b/githubkit/versions/v2022_11_28/models/group_0593.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0594.py b/githubkit/versions/v2022_11_28/models/group_0594.py index 0fdb422a3..5e0345a0d 100644 --- a/githubkit/versions/v2022_11_28/models/group_0594.py +++ b/githubkit/versions/v2022_11_28/models/group_0594.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0595.py b/githubkit/versions/v2022_11_28/models/group_0595.py index 651cff16b..8dca4a758 100644 --- a/githubkit/versions/v2022_11_28/models/group_0595.py +++ b/githubkit/versions/v2022_11_28/models/group_0595.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0596.py b/githubkit/versions/v2022_11_28/models/group_0596.py index 5361b2c58..8b30cb55d 100644 --- a/githubkit/versions/v2022_11_28/models/group_0596.py +++ b/githubkit/versions/v2022_11_28/models/group_0596.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0597.py b/githubkit/versions/v2022_11_28/models/group_0597.py index 0431bd6a9..e60560935 100644 --- a/githubkit/versions/v2022_11_28/models/group_0597.py +++ b/githubkit/versions/v2022_11_28/models/group_0597.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0598.py b/githubkit/versions/v2022_11_28/models/group_0598.py index f26233087..eeb704d73 100644 --- a/githubkit/versions/v2022_11_28/models/group_0598.py +++ b/githubkit/versions/v2022_11_28/models/group_0598.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0599.py b/githubkit/versions/v2022_11_28/models/group_0599.py index d13a5fc74..4622b8746 100644 --- a/githubkit/versions/v2022_11_28/models/group_0599.py +++ b/githubkit/versions/v2022_11_28/models/group_0599.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0600.py b/githubkit/versions/v2022_11_28/models/group_0600.py index a197c0c68..e7fc72f43 100644 --- a/githubkit/versions/v2022_11_28/models/group_0600.py +++ b/githubkit/versions/v2022_11_28/models/group_0600.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal @@ -48,9 +47,9 @@ class WebhookPackageUpdatedPropPackagePropPackageVersion(GitHubModel): ] = Field() package_url: Missing[str] = Field(default=UNSET) prerelease: Missing[bool] = Field(default=UNSET) - release: Missing[ - WebhookPackageUpdatedPropPackagePropPackageVersionPropRelease - ] = Field(default=UNSET) + release: Missing[WebhookPackageUpdatedPropPackagePropPackageVersionPropRelease] = ( + Field(default=UNSET) + ) rubygems_metadata: Missing[List[WebhookRubygemsMetadata]] = Field(default=UNSET) source_url: Missing[str] = Field(default=UNSET) summary: str = Field() diff --git a/githubkit/versions/v2022_11_28/models/group_0601.py b/githubkit/versions/v2022_11_28/models/group_0601.py index 0f93aa034..3b1698d03 100644 --- a/githubkit/versions/v2022_11_28/models/group_0601.py +++ b/githubkit/versions/v2022_11_28/models/group_0601.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0602.py b/githubkit/versions/v2022_11_28/models/group_0602.py index 80ca53dfc..922eac5bd 100644 --- a/githubkit/versions/v2022_11_28/models/group_0602.py +++ b/githubkit/versions/v2022_11_28/models/group_0602.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0603.py b/githubkit/versions/v2022_11_28/models/group_0603.py index e5e955a85..d41530480 100644 --- a/githubkit/versions/v2022_11_28/models/group_0603.py +++ b/githubkit/versions/v2022_11_28/models/group_0603.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0604.py b/githubkit/versions/v2022_11_28/models/group_0604.py index e8033569e..d072d911d 100644 --- a/githubkit/versions/v2022_11_28/models/group_0604.py +++ b/githubkit/versions/v2022_11_28/models/group_0604.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0605.py b/githubkit/versions/v2022_11_28/models/group_0605.py index 35133d77b..44be4aebd 100644 --- a/githubkit/versions/v2022_11_28/models/group_0605.py +++ b/githubkit/versions/v2022_11_28/models/group_0605.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0606.py b/githubkit/versions/v2022_11_28/models/group_0606.py index 72df88b6b..4cf84185b 100644 --- a/githubkit/versions/v2022_11_28/models/group_0606.py +++ b/githubkit/versions/v2022_11_28/models/group_0606.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0607.py b/githubkit/versions/v2022_11_28/models/group_0607.py index 1915e15e0..b031a6f10 100644 --- a/githubkit/versions/v2022_11_28/models/group_0607.py +++ b/githubkit/versions/v2022_11_28/models/group_0607.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0608.py b/githubkit/versions/v2022_11_28/models/group_0608.py index 3ed1628bd..fac71cc70 100644 --- a/githubkit/versions/v2022_11_28/models/group_0608.py +++ b/githubkit/versions/v2022_11_28/models/group_0608.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0609.py b/githubkit/versions/v2022_11_28/models/group_0609.py index dfc3bf6b9..32fc7fbf3 100644 --- a/githubkit/versions/v2022_11_28/models/group_0609.py +++ b/githubkit/versions/v2022_11_28/models/group_0609.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0610.py b/githubkit/versions/v2022_11_28/models/group_0610.py index fc5ed57ef..72753c599 100644 --- a/githubkit/versions/v2022_11_28/models/group_0610.py +++ b/githubkit/versions/v2022_11_28/models/group_0610.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0611.py b/githubkit/versions/v2022_11_28/models/group_0611.py index 2a3bbd28a..1318a7b17 100644 --- a/githubkit/versions/v2022_11_28/models/group_0611.py +++ b/githubkit/versions/v2022_11_28/models/group_0611.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0612.py b/githubkit/versions/v2022_11_28/models/group_0612.py index df2957497..b8f96943e 100644 --- a/githubkit/versions/v2022_11_28/models/group_0612.py +++ b/githubkit/versions/v2022_11_28/models/group_0612.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0613.py b/githubkit/versions/v2022_11_28/models/group_0613.py index 2acb38366..c53c1a4a2 100644 --- a/githubkit/versions/v2022_11_28/models/group_0613.py +++ b/githubkit/versions/v2022_11_28/models/group_0613.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0614.py b/githubkit/versions/v2022_11_28/models/group_0614.py index 013d19f7c..8df8ef190 100644 --- a/githubkit/versions/v2022_11_28/models/group_0614.py +++ b/githubkit/versions/v2022_11_28/models/group_0614.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -29,9 +28,9 @@ class WebhookProjectCardMovedPropProjectCardAllof0(GitHubModel): column_url: str = Field() content_url: Missing[str] = Field(default=UNSET) created_at: datetime = Field() - creator: Union[ - WebhookProjectCardMovedPropProjectCardAllof0PropCreator, None - ] = Field(title="User") + creator: Union[WebhookProjectCardMovedPropProjectCardAllof0PropCreator, None] = ( + Field(title="User") + ) id: int = Field(description="The project card's ID") node_id: str = Field() note: Union[str, None] = Field() diff --git a/githubkit/versions/v2022_11_28/models/group_0615.py b/githubkit/versions/v2022_11_28/models/group_0615.py index 35d561fb1..aeb9c0e62 100644 --- a/githubkit/versions/v2022_11_28/models/group_0615.py +++ b/githubkit/versions/v2022_11_28/models/group_0615.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0616.py b/githubkit/versions/v2022_11_28/models/group_0616.py index f20d667ef..b350a7fd7 100644 --- a/githubkit/versions/v2022_11_28/models/group_0616.py +++ b/githubkit/versions/v2022_11_28/models/group_0616.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0617.py b/githubkit/versions/v2022_11_28/models/group_0617.py index be06b5744..3705a62df 100644 --- a/githubkit/versions/v2022_11_28/models/group_0617.py +++ b/githubkit/versions/v2022_11_28/models/group_0617.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0618.py b/githubkit/versions/v2022_11_28/models/group_0618.py index a35d7f0dc..169920bcb 100644 --- a/githubkit/versions/v2022_11_28/models/group_0618.py +++ b/githubkit/versions/v2022_11_28/models/group_0618.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0619.py b/githubkit/versions/v2022_11_28/models/group_0619.py index 9bc1c7152..6d4c684c2 100644 --- a/githubkit/versions/v2022_11_28/models/group_0619.py +++ b/githubkit/versions/v2022_11_28/models/group_0619.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0620.py b/githubkit/versions/v2022_11_28/models/group_0620.py index 11fc5eb6b..5a6f30e1b 100644 --- a/githubkit/versions/v2022_11_28/models/group_0620.py +++ b/githubkit/versions/v2022_11_28/models/group_0620.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0621.py b/githubkit/versions/v2022_11_28/models/group_0621.py index 6b26acc4c..093441a0c 100644 --- a/githubkit/versions/v2022_11_28/models/group_0621.py +++ b/githubkit/versions/v2022_11_28/models/group_0621.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0622.py b/githubkit/versions/v2022_11_28/models/group_0622.py index d08515b53..34d111cda 100644 --- a/githubkit/versions/v2022_11_28/models/group_0622.py +++ b/githubkit/versions/v2022_11_28/models/group_0622.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0623.py b/githubkit/versions/v2022_11_28/models/group_0623.py index cf902a074..2d21dfe15 100644 --- a/githubkit/versions/v2022_11_28/models/group_0623.py +++ b/githubkit/versions/v2022_11_28/models/group_0623.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0624.py b/githubkit/versions/v2022_11_28/models/group_0624.py index 559ce1501..34b8f0a31 100644 --- a/githubkit/versions/v2022_11_28/models/group_0624.py +++ b/githubkit/versions/v2022_11_28/models/group_0624.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0625.py b/githubkit/versions/v2022_11_28/models/group_0625.py index 2d2e264a7..cce331d95 100644 --- a/githubkit/versions/v2022_11_28/models/group_0625.py +++ b/githubkit/versions/v2022_11_28/models/group_0625.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0626.py b/githubkit/versions/v2022_11_28/models/group_0626.py index e2f1a9ed5..d10207d51 100644 --- a/githubkit/versions/v2022_11_28/models/group_0626.py +++ b/githubkit/versions/v2022_11_28/models/group_0626.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0627.py b/githubkit/versions/v2022_11_28/models/group_0627.py index 25ca1ecf1..7730484e6 100644 --- a/githubkit/versions/v2022_11_28/models/group_0627.py +++ b/githubkit/versions/v2022_11_28/models/group_0627.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0628.py b/githubkit/versions/v2022_11_28/models/group_0628.py index 889f0853a..77726f4f0 100644 --- a/githubkit/versions/v2022_11_28/models/group_0628.py +++ b/githubkit/versions/v2022_11_28/models/group_0628.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal @@ -50,9 +49,9 @@ class WebhookProjectsV2ProjectEdited(GitHubModel): class WebhookProjectsV2ProjectEditedPropChanges(GitHubModel): """WebhookProjectsV2ProjectEditedPropChanges""" - description: Missing[ - WebhookProjectsV2ProjectEditedPropChangesPropDescription - ] = Field(default=UNSET) + description: Missing[WebhookProjectsV2ProjectEditedPropChangesPropDescription] = ( + Field(default=UNSET) + ) public: Missing[WebhookProjectsV2ProjectEditedPropChangesPropPublic] = Field( default=UNSET ) diff --git a/githubkit/versions/v2022_11_28/models/group_0629.py b/githubkit/versions/v2022_11_28/models/group_0629.py index d4978bb86..57b181f32 100644 --- a/githubkit/versions/v2022_11_28/models/group_0629.py +++ b/githubkit/versions/v2022_11_28/models/group_0629.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -51,9 +50,9 @@ class WebhookProjectsV2ItemArchived(GitHubModel): class WebhookProjectsV2ItemArchivedPropChanges(GitHubModel): """WebhookProjectsV2ItemArchivedPropChanges""" - archived_at: Missing[ - WebhookProjectsV2ItemArchivedPropChangesPropArchivedAt - ] = Field(default=UNSET) + archived_at: Missing[WebhookProjectsV2ItemArchivedPropChangesPropArchivedAt] = ( + Field(default=UNSET) + ) class WebhookProjectsV2ItemArchivedPropChangesPropArchivedAt(GitHubModel): diff --git a/githubkit/versions/v2022_11_28/models/group_0630.py b/githubkit/versions/v2022_11_28/models/group_0630.py index fb746c5d4..4d24e29f2 100644 --- a/githubkit/versions/v2022_11_28/models/group_0630.py +++ b/githubkit/versions/v2022_11_28/models/group_0630.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal @@ -50,9 +49,9 @@ class WebhookProjectsV2ItemConverted(GitHubModel): class WebhookProjectsV2ItemConvertedPropChanges(GitHubModel): """WebhookProjectsV2ItemConvertedPropChanges""" - content_type: Missing[ - WebhookProjectsV2ItemConvertedPropChangesPropContentType - ] = Field(default=UNSET) + content_type: Missing[WebhookProjectsV2ItemConvertedPropChangesPropContentType] = ( + Field(default=UNSET) + ) class WebhookProjectsV2ItemConvertedPropChangesPropContentType(GitHubModel): diff --git a/githubkit/versions/v2022_11_28/models/group_0631.py b/githubkit/versions/v2022_11_28/models/group_0631.py index 1e053656e..aba393109 100644 --- a/githubkit/versions/v2022_11_28/models/group_0631.py +++ b/githubkit/versions/v2022_11_28/models/group_0631.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0632.py b/githubkit/versions/v2022_11_28/models/group_0632.py index 00fb38bc2..dd98b9800 100644 --- a/githubkit/versions/v2022_11_28/models/group_0632.py +++ b/githubkit/versions/v2022_11_28/models/group_0632.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0633.py b/githubkit/versions/v2022_11_28/models/group_0633.py index 2a176bf86..6160fe765 100644 --- a/githubkit/versions/v2022_11_28/models/group_0633.py +++ b/githubkit/versions/v2022_11_28/models/group_0633.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0634.py b/githubkit/versions/v2022_11_28/models/group_0634.py index 2c1b0f77b..5e03eb016 100644 --- a/githubkit/versions/v2022_11_28/models/group_0634.py +++ b/githubkit/versions/v2022_11_28/models/group_0634.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0635.py b/githubkit/versions/v2022_11_28/models/group_0635.py index c033d5a13..f7a092413 100644 --- a/githubkit/versions/v2022_11_28/models/group_0635.py +++ b/githubkit/versions/v2022_11_28/models/group_0635.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -51,9 +50,9 @@ class WebhookProjectsV2ItemRestored(GitHubModel): class WebhookProjectsV2ItemRestoredPropChanges(GitHubModel): """WebhookProjectsV2ItemRestoredPropChanges""" - archived_at: Missing[ - WebhookProjectsV2ItemRestoredPropChangesPropArchivedAt - ] = Field(default=UNSET) + archived_at: Missing[WebhookProjectsV2ItemRestoredPropChangesPropArchivedAt] = ( + Field(default=UNSET) + ) class WebhookProjectsV2ItemRestoredPropChangesPropArchivedAt(GitHubModel): diff --git a/githubkit/versions/v2022_11_28/models/group_0636.py b/githubkit/versions/v2022_11_28/models/group_0636.py index decf97313..5af105c36 100644 --- a/githubkit/versions/v2022_11_28/models/group_0636.py +++ b/githubkit/versions/v2022_11_28/models/group_0636.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0637.py b/githubkit/versions/v2022_11_28/models/group_0637.py index d410105d5..18c272f6c 100644 --- a/githubkit/versions/v2022_11_28/models/group_0637.py +++ b/githubkit/versions/v2022_11_28/models/group_0637.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0638.py b/githubkit/versions/v2022_11_28/models/group_0638.py index 6a9511a16..5ce79e50a 100644 --- a/githubkit/versions/v2022_11_28/models/group_0638.py +++ b/githubkit/versions/v2022_11_28/models/group_0638.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -94,9 +93,9 @@ class WebhookPullRequestAssignedPropPullRequest(GitHubModel): None, Literal["resolved", "off-topic", "too heated", "spam"] ] = Field() additions: Missing[int] = Field(default=UNSET) - assignee: Union[ - WebhookPullRequestAssignedPropPullRequestPropAssignee, None - ] = Field(title="User") + assignee: Union[WebhookPullRequestAssignedPropPullRequestPropAssignee, None] = ( + Field(title="User") + ) assignees: List[ Union[WebhookPullRequestAssignedPropPullRequestPropAssigneesItems, None] ] = Field() @@ -113,11 +112,11 @@ class WebhookPullRequestAssignedPropPullRequest(GitHubModel): title="AuthorAssociation", description="How the author is associated with the repository.", ) - auto_merge: Union[ - WebhookPullRequestAssignedPropPullRequestPropAutoMerge, None - ] = Field( - title="PullRequestAutoMerge", - description="The status of auto merging a pull request.", + auto_merge: Union[WebhookPullRequestAssignedPropPullRequestPropAutoMerge, None] = ( + Field( + title="PullRequestAutoMerge", + description="The status of auto merging a pull request.", + ) ) base: WebhookPullRequestAssignedPropPullRequestPropBase = Field() body: Union[str, None] = Field() @@ -151,11 +150,11 @@ class WebhookPullRequestAssignedPropPullRequest(GitHubModel): merged_by: Missing[ Union[WebhookPullRequestAssignedPropPullRequestPropMergedBy, None] ] = Field(default=UNSET, title="User") - milestone: Union[ - WebhookPullRequestAssignedPropPullRequestPropMilestone, None - ] = Field( - title="Milestone", - description="A collection of related issues and pull requests.", + milestone: Union[WebhookPullRequestAssignedPropPullRequestPropMilestone, None] = ( + Field( + title="Milestone", + description="A collection of related issues and pull requests.", + ) ) node_id: str = Field() number: int = Field( @@ -528,9 +527,9 @@ class WebhookPullRequestAssignedPropPullRequestPropBase(GitHubModel): title="Repository", description="A git repository" ) sha: str = Field() - user: Union[ - WebhookPullRequestAssignedPropPullRequestPropBasePropUser, None - ] = Field(title="User") + user: Union[WebhookPullRequestAssignedPropPullRequestPropBasePropUser, None] = ( + Field(title="User") + ) class WebhookPullRequestAssignedPropPullRequestPropBasePropUser(GitHubModel): @@ -681,11 +680,11 @@ class WebhookPullRequestAssignedPropPullRequestPropBasePropRepo(GitHubModel): default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) @@ -767,13 +766,13 @@ class WebhookPullRequestAssignedPropPullRequestPropHead(GitHubModel): label: Union[str, None] = Field() ref: str = Field() - repo: Union[ - WebhookPullRequestAssignedPropPullRequestPropHeadPropRepo, None - ] = Field(title="Repository", description="A git repository") + repo: Union[WebhookPullRequestAssignedPropPullRequestPropHeadPropRepo, None] = ( + Field(title="Repository", description="A git repository") + ) sha: str = Field() - user: Union[ - WebhookPullRequestAssignedPropPullRequestPropHeadPropUser, None - ] = Field(title="User") + user: Union[WebhookPullRequestAssignedPropPullRequestPropHeadPropUser, None] = ( + Field(title="User") + ) class WebhookPullRequestAssignedPropPullRequestPropHeadPropRepo(GitHubModel): @@ -898,11 +897,11 @@ class WebhookPullRequestAssignedPropPullRequestPropHeadPropRepo(GitHubModel): default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) diff --git a/githubkit/versions/v2022_11_28/models/group_0639.py b/githubkit/versions/v2022_11_28/models/group_0639.py index 3d9981459..a68abdb6c 100644 --- a/githubkit/versions/v2022_11_28/models/group_0639.py +++ b/githubkit/versions/v2022_11_28/models/group_0639.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -115,9 +114,9 @@ class WebhookPullRequestAutoMergeDisabledPropPullRequest(GitHubModel): html_url: str = Field() id: int = Field() issue_url: str = Field() - labels: List[ - WebhookPullRequestAutoMergeDisabledPropPullRequestPropLabelsItems - ] = Field() + labels: List[WebhookPullRequestAutoMergeDisabledPropPullRequestPropLabelsItems] = ( + Field() + ) locked: bool = Field() maintainer_can_modify: Missing[bool] = Field( default=UNSET, @@ -163,9 +162,9 @@ class WebhookPullRequestAutoMergeDisabledPropPullRequest(GitHubModel): title: str = Field(description="The title of the pull request.") updated_at: datetime = Field() url: str = Field() - user: Union[ - WebhookPullRequestAutoMergeDisabledPropPullRequestPropUser, None - ] = Field(title="User") + user: Union[WebhookPullRequestAutoMergeDisabledPropPullRequestPropUser, None] = ( + Field(title="User") + ) class WebhookPullRequestAutoMergeDisabledPropPullRequestPropAssignee(GitHubModel): @@ -672,11 +671,11 @@ class WebhookPullRequestAutoMergeDisabledPropPullRequestPropBasePropRepo(GitHubM default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) @@ -923,11 +922,11 @@ class WebhookPullRequestAutoMergeDisabledPropPullRequestPropHeadPropRepo(GitHubM default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) diff --git a/githubkit/versions/v2022_11_28/models/group_0640.py b/githubkit/versions/v2022_11_28/models/group_0640.py index 8a56c1d7c..ccc103866 100644 --- a/githubkit/versions/v2022_11_28/models/group_0640.py +++ b/githubkit/versions/v2022_11_28/models/group_0640.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -113,9 +112,9 @@ class WebhookPullRequestAutoMergeEnabledPropPullRequest(GitHubModel): html_url: str = Field() id: int = Field() issue_url: str = Field() - labels: List[ - WebhookPullRequestAutoMergeEnabledPropPullRequestPropLabelsItems - ] = Field() + labels: List[WebhookPullRequestAutoMergeEnabledPropPullRequestPropLabelsItems] = ( + Field() + ) locked: bool = Field() maintainer_can_modify: Missing[bool] = Field( default=UNSET, @@ -161,9 +160,9 @@ class WebhookPullRequestAutoMergeEnabledPropPullRequest(GitHubModel): title: str = Field(description="The title of the pull request.") updated_at: datetime = Field() url: str = Field() - user: Union[ - WebhookPullRequestAutoMergeEnabledPropPullRequestPropUser, None - ] = Field(title="User") + user: Union[WebhookPullRequestAutoMergeEnabledPropPullRequestPropUser, None] = ( + Field(title="User") + ) class WebhookPullRequestAutoMergeEnabledPropPullRequestPropAssignee(GitHubModel): @@ -671,11 +670,11 @@ class WebhookPullRequestAutoMergeEnabledPropPullRequestPropBasePropRepo(GitHubMo default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) @@ -919,11 +918,11 @@ class WebhookPullRequestAutoMergeEnabledPropPullRequestPropHeadPropRepo(GitHubMo default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) diff --git a/githubkit/versions/v2022_11_28/models/group_0641.py b/githubkit/versions/v2022_11_28/models/group_0641.py index 93505babf..da8e14295 100644 --- a/githubkit/versions/v2022_11_28/models/group_0641.py +++ b/githubkit/versions/v2022_11_28/models/group_0641.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0642.py b/githubkit/versions/v2022_11_28/models/group_0642.py index cf4ff545e..6b821b271 100644 --- a/githubkit/versions/v2022_11_28/models/group_0642.py +++ b/githubkit/versions/v2022_11_28/models/group_0642.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -127,11 +126,11 @@ class WebhookPullRequestClosedPropPullRequest(GitHubModel): default=UNSET, description="The default value for a squash merge commit message:\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) use_squash_pr_title_as_default: Missing[bool] = Field( default=UNSET, diff --git a/githubkit/versions/v2022_11_28/models/group_0643.py b/githubkit/versions/v2022_11_28/models/group_0643.py index bb8b667e6..5302207da 100644 --- a/githubkit/versions/v2022_11_28/models/group_0643.py +++ b/githubkit/versions/v2022_11_28/models/group_0643.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal @@ -47,11 +46,11 @@ class WebhookPullRequestClosedPropPullRequestAllof1(GitHubModel): default=UNSET, description="The default value for a squash merge commit message:\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) use_squash_pr_title_as_default: Missing[bool] = Field( default=UNSET, diff --git a/githubkit/versions/v2022_11_28/models/group_0644.py b/githubkit/versions/v2022_11_28/models/group_0644.py index d7440aa42..e6084a831 100644 --- a/githubkit/versions/v2022_11_28/models/group_0644.py +++ b/githubkit/versions/v2022_11_28/models/group_0644.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0645.py b/githubkit/versions/v2022_11_28/models/group_0645.py index 0fb6ecdad..e900e4e80 100644 --- a/githubkit/versions/v2022_11_28/models/group_0645.py +++ b/githubkit/versions/v2022_11_28/models/group_0645.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -127,11 +126,11 @@ class WebhookPullRequestConvertedToDraftPropPullRequest(GitHubModel): default=UNSET, description="The default value for a squash merge commit message:\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) use_squash_pr_title_as_default: Missing[bool] = Field( default=UNSET, diff --git a/githubkit/versions/v2022_11_28/models/group_0646.py b/githubkit/versions/v2022_11_28/models/group_0646.py index 4a0089d69..1fa7f5f5a 100644 --- a/githubkit/versions/v2022_11_28/models/group_0646.py +++ b/githubkit/versions/v2022_11_28/models/group_0646.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal @@ -47,11 +46,11 @@ class WebhookPullRequestConvertedToDraftPropPullRequestAllof1(GitHubModel): default=UNSET, description="The default value for a squash merge commit message:\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) use_squash_pr_title_as_default: Missing[bool] = Field( default=UNSET, diff --git a/githubkit/versions/v2022_11_28/models/group_0647.py b/githubkit/versions/v2022_11_28/models/group_0647.py index 95b5716fe..8facc377c 100644 --- a/githubkit/versions/v2022_11_28/models/group_0647.py +++ b/githubkit/versions/v2022_11_28/models/group_0647.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -70,9 +69,9 @@ class WebhookPullRequestDemilestonedPropPullRequest(GitHubModel): None, Literal["resolved", "off-topic", "too heated", "spam"] ] = Field() additions: Missing[int] = Field(default=UNSET) - assignee: Union[ - WebhookPullRequestDemilestonedPropPullRequestPropAssignee, None - ] = Field(title="User") + assignee: Union[WebhookPullRequestDemilestonedPropPullRequestPropAssignee, None] = ( + Field(title="User") + ) assignees: List[ Union[WebhookPullRequestDemilestonedPropPullRequestPropAssigneesItems, None] ] = Field() @@ -512,9 +511,9 @@ class WebhookPullRequestDemilestonedPropPullRequestPropBase(GitHubModel): title="Repository", description="A git repository" ) sha: str = Field() - user: Union[ - WebhookPullRequestDemilestonedPropPullRequestPropBasePropUser, None - ] = Field(title="User") + user: Union[WebhookPullRequestDemilestonedPropPullRequestPropBasePropUser, None] = ( + Field(title="User") + ) class WebhookPullRequestDemilestonedPropPullRequestPropBasePropUser(GitHubModel): @@ -665,11 +664,11 @@ class WebhookPullRequestDemilestonedPropPullRequestPropBasePropRepo(GitHubModel) default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) @@ -759,9 +758,9 @@ class WebhookPullRequestDemilestonedPropPullRequestPropHead(GitHubModel): title="Repository", description="A git repository" ) sha: str = Field() - user: Union[ - WebhookPullRequestDemilestonedPropPullRequestPropHeadPropUser, None - ] = Field(title="User") + user: Union[WebhookPullRequestDemilestonedPropPullRequestPropHeadPropUser, None] = ( + Field(title="User") + ) class WebhookPullRequestDemilestonedPropPullRequestPropHeadPropUser(GitHubModel): @@ -912,11 +911,11 @@ class WebhookPullRequestDemilestonedPropPullRequestPropHeadPropRepo(GitHubModel) default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) diff --git a/githubkit/versions/v2022_11_28/models/group_0648.py b/githubkit/versions/v2022_11_28/models/group_0648.py index 281e2aa36..8d1b87709 100644 --- a/githubkit/versions/v2022_11_28/models/group_0648.py +++ b/githubkit/versions/v2022_11_28/models/group_0648.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -68,9 +67,9 @@ class WebhookPullRequestDequeuedPropPullRequest(GitHubModel): None, Literal["resolved", "off-topic", "too heated", "spam"] ] = Field() additions: Missing[int] = Field(default=UNSET) - assignee: Union[ - WebhookPullRequestDequeuedPropPullRequestPropAssignee, None - ] = Field(title="User") + assignee: Union[WebhookPullRequestDequeuedPropPullRequestPropAssignee, None] = ( + Field(title="User") + ) assignees: List[ Union[WebhookPullRequestDequeuedPropPullRequestPropAssigneesItems, None] ] = Field() @@ -87,11 +86,11 @@ class WebhookPullRequestDequeuedPropPullRequest(GitHubModel): title="AuthorAssociation", description="How the author is associated with the repository.", ) - auto_merge: Union[ - WebhookPullRequestDequeuedPropPullRequestPropAutoMerge, None - ] = Field( - title="PullRequestAutoMerge", - description="The status of auto merging a pull request.", + auto_merge: Union[WebhookPullRequestDequeuedPropPullRequestPropAutoMerge, None] = ( + Field( + title="PullRequestAutoMerge", + description="The status of auto merging a pull request.", + ) ) base: WebhookPullRequestDequeuedPropPullRequestPropBase = Field() body: Union[str, None] = Field() @@ -125,11 +124,11 @@ class WebhookPullRequestDequeuedPropPullRequest(GitHubModel): merged_by: Missing[ Union[WebhookPullRequestDequeuedPropPullRequestPropMergedBy, None] ] = Field(default=UNSET, title="User") - milestone: Union[ - WebhookPullRequestDequeuedPropPullRequestPropMilestone, None - ] = Field( - title="Milestone", - description="A collection of related issues and pull requests.", + milestone: Union[WebhookPullRequestDequeuedPropPullRequestPropMilestone, None] = ( + Field( + title="Milestone", + description="A collection of related issues and pull requests.", + ) ) node_id: str = Field() number: int = Field( @@ -496,9 +495,9 @@ class WebhookPullRequestDequeuedPropPullRequestPropBase(GitHubModel): title="Repository", description="A git repository" ) sha: str = Field() - user: Union[ - WebhookPullRequestDequeuedPropPullRequestPropBasePropUser, None - ] = Field(title="User") + user: Union[WebhookPullRequestDequeuedPropPullRequestPropBasePropUser, None] = ( + Field(title="User") + ) class WebhookPullRequestDequeuedPropPullRequestPropBasePropUser(GitHubModel): @@ -649,11 +648,11 @@ class WebhookPullRequestDequeuedPropPullRequestPropBasePropRepo(GitHubModel): default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) @@ -739,9 +738,9 @@ class WebhookPullRequestDequeuedPropPullRequestPropHead(GitHubModel): title="Repository", description="A git repository" ) sha: str = Field() - user: Union[ - WebhookPullRequestDequeuedPropPullRequestPropHeadPropUser, None - ] = Field(title="User") + user: Union[WebhookPullRequestDequeuedPropPullRequestPropHeadPropUser, None] = ( + Field(title="User") + ) class WebhookPullRequestDequeuedPropPullRequestPropHeadPropUser(GitHubModel): @@ -892,11 +891,11 @@ class WebhookPullRequestDequeuedPropPullRequestPropHeadPropRepo(GitHubModel): default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) diff --git a/githubkit/versions/v2022_11_28/models/group_0649.py b/githubkit/versions/v2022_11_28/models/group_0649.py index 2c6e0f03f..cf05a89d6 100644 --- a/githubkit/versions/v2022_11_28/models/group_0649.py +++ b/githubkit/versions/v2022_11_28/models/group_0649.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0650.py b/githubkit/versions/v2022_11_28/models/group_0650.py index 76eeafc6b..9a22652ff 100644 --- a/githubkit/versions/v2022_11_28/models/group_0650.py +++ b/githubkit/versions/v2022_11_28/models/group_0650.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -127,11 +126,11 @@ class WebhookPullRequestEditedPropPullRequest(GitHubModel): default=UNSET, description="The default value for a squash merge commit message:\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) use_squash_pr_title_as_default: Missing[bool] = Field( default=UNSET, diff --git a/githubkit/versions/v2022_11_28/models/group_0651.py b/githubkit/versions/v2022_11_28/models/group_0651.py index eaa81b0ec..4d5b0bb81 100644 --- a/githubkit/versions/v2022_11_28/models/group_0651.py +++ b/githubkit/versions/v2022_11_28/models/group_0651.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal @@ -47,11 +46,11 @@ class WebhookPullRequestEditedPropPullRequestAllof1(GitHubModel): default=UNSET, description="The default value for a squash merge commit message:\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) use_squash_pr_title_as_default: Missing[bool] = Field( default=UNSET, diff --git a/githubkit/versions/v2022_11_28/models/group_0652.py b/githubkit/versions/v2022_11_28/models/group_0652.py index f7f054c9e..32a875c2f 100644 --- a/githubkit/versions/v2022_11_28/models/group_0652.py +++ b/githubkit/versions/v2022_11_28/models/group_0652.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -67,9 +66,9 @@ class WebhookPullRequestEnqueuedPropPullRequest(GitHubModel): None, Literal["resolved", "off-topic", "too heated", "spam"] ] = Field() additions: Missing[int] = Field(default=UNSET) - assignee: Union[ - WebhookPullRequestEnqueuedPropPullRequestPropAssignee, None - ] = Field(title="User") + assignee: Union[WebhookPullRequestEnqueuedPropPullRequestPropAssignee, None] = ( + Field(title="User") + ) assignees: List[ Union[WebhookPullRequestEnqueuedPropPullRequestPropAssigneesItems, None] ] = Field() @@ -86,11 +85,11 @@ class WebhookPullRequestEnqueuedPropPullRequest(GitHubModel): title="AuthorAssociation", description="How the author is associated with the repository.", ) - auto_merge: Union[ - WebhookPullRequestEnqueuedPropPullRequestPropAutoMerge, None - ] = Field( - title="PullRequestAutoMerge", - description="The status of auto merging a pull request.", + auto_merge: Union[WebhookPullRequestEnqueuedPropPullRequestPropAutoMerge, None] = ( + Field( + title="PullRequestAutoMerge", + description="The status of auto merging a pull request.", + ) ) base: WebhookPullRequestEnqueuedPropPullRequestPropBase = Field() body: Union[str, None] = Field() @@ -124,11 +123,11 @@ class WebhookPullRequestEnqueuedPropPullRequest(GitHubModel): merged_by: Missing[ Union[WebhookPullRequestEnqueuedPropPullRequestPropMergedBy, None] ] = Field(default=UNSET, title="User") - milestone: Union[ - WebhookPullRequestEnqueuedPropPullRequestPropMilestone, None - ] = Field( - title="Milestone", - description="A collection of related issues and pull requests.", + milestone: Union[WebhookPullRequestEnqueuedPropPullRequestPropMilestone, None] = ( + Field( + title="Milestone", + description="A collection of related issues and pull requests.", + ) ) node_id: str = Field() number: int = Field( @@ -495,9 +494,9 @@ class WebhookPullRequestEnqueuedPropPullRequestPropBase(GitHubModel): title="Repository", description="A git repository" ) sha: str = Field() - user: Union[ - WebhookPullRequestEnqueuedPropPullRequestPropBasePropUser, None - ] = Field(title="User") + user: Union[WebhookPullRequestEnqueuedPropPullRequestPropBasePropUser, None] = ( + Field(title="User") + ) class WebhookPullRequestEnqueuedPropPullRequestPropBasePropUser(GitHubModel): @@ -648,11 +647,11 @@ class WebhookPullRequestEnqueuedPropPullRequestPropBasePropRepo(GitHubModel): default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) @@ -738,9 +737,9 @@ class WebhookPullRequestEnqueuedPropPullRequestPropHead(GitHubModel): title="Repository", description="A git repository" ) sha: str = Field() - user: Union[ - WebhookPullRequestEnqueuedPropPullRequestPropHeadPropUser, None - ] = Field(title="User") + user: Union[WebhookPullRequestEnqueuedPropPullRequestPropHeadPropUser, None] = ( + Field(title="User") + ) class WebhookPullRequestEnqueuedPropPullRequestPropHeadPropUser(GitHubModel): @@ -891,11 +890,11 @@ class WebhookPullRequestEnqueuedPropPullRequestPropHeadPropRepo(GitHubModel): default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) diff --git a/githubkit/versions/v2022_11_28/models/group_0653.py b/githubkit/versions/v2022_11_28/models/group_0653.py index 93b1dd913..05b201835 100644 --- a/githubkit/versions/v2022_11_28/models/group_0653.py +++ b/githubkit/versions/v2022_11_28/models/group_0653.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -101,11 +100,11 @@ class WebhookPullRequestLabeledPropPullRequest(GitHubModel): title="AuthorAssociation", description="How the author is associated with the repository.", ) - auto_merge: Union[ - WebhookPullRequestLabeledPropPullRequestPropAutoMerge, None - ] = Field( - title="PullRequestAutoMerge", - description="The status of auto merging a pull request.", + auto_merge: Union[WebhookPullRequestLabeledPropPullRequestPropAutoMerge, None] = ( + Field( + title="PullRequestAutoMerge", + description="The status of auto merging a pull request.", + ) ) base: WebhookPullRequestLabeledPropPullRequestPropBase = Field() body: Union[str, None] = Field() @@ -139,11 +138,11 @@ class WebhookPullRequestLabeledPropPullRequest(GitHubModel): merged_by: Missing[ Union[WebhookPullRequestLabeledPropPullRequestPropMergedBy, None] ] = Field(default=UNSET, title="User") - milestone: Union[ - WebhookPullRequestLabeledPropPullRequestPropMilestone, None - ] = Field( - title="Milestone", - description="A collection of related issues and pull requests.", + milestone: Union[WebhookPullRequestLabeledPropPullRequestPropMilestone, None] = ( + Field( + title="Milestone", + description="A collection of related issues and pull requests.", + ) ) node_id: str = Field() number: int = Field( @@ -671,11 +670,11 @@ class WebhookPullRequestLabeledPropPullRequestPropBasePropRepo(GitHubModel): default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) @@ -888,11 +887,11 @@ class WebhookPullRequestLabeledPropPullRequestPropHeadPropRepo(GitHubModel): default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) diff --git a/githubkit/versions/v2022_11_28/models/group_0654.py b/githubkit/versions/v2022_11_28/models/group_0654.py index 37f5fa91d..17670d4b8 100644 --- a/githubkit/versions/v2022_11_28/models/group_0654.py +++ b/githubkit/versions/v2022_11_28/models/group_0654.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -84,11 +83,11 @@ class WebhookPullRequestLockedPropPullRequest(GitHubModel): title="AuthorAssociation", description="How the author is associated with the repository.", ) - auto_merge: Union[ - WebhookPullRequestLockedPropPullRequestPropAutoMerge, None - ] = Field( - title="PullRequestAutoMerge", - description="The status of auto merging a pull request.", + auto_merge: Union[WebhookPullRequestLockedPropPullRequestPropAutoMerge, None] = ( + Field( + title="PullRequestAutoMerge", + description="The status of auto merging a pull request.", + ) ) base: WebhookPullRequestLockedPropPullRequestPropBase = Field() body: Union[str, None] = Field() @@ -122,11 +121,11 @@ class WebhookPullRequestLockedPropPullRequest(GitHubModel): merged_by: Missing[ Union[WebhookPullRequestLockedPropPullRequestPropMergedBy, None] ] = Field(default=UNSET, title="User") - milestone: Union[ - WebhookPullRequestLockedPropPullRequestPropMilestone, None - ] = Field( - title="Milestone", - description="A collection of related issues and pull requests.", + milestone: Union[WebhookPullRequestLockedPropPullRequestPropMilestone, None] = ( + Field( + title="Milestone", + description="A collection of related issues and pull requests.", + ) ) node_id: str = Field() number: int = Field( @@ -648,11 +647,11 @@ class WebhookPullRequestLockedPropPullRequestPropBasePropRepo(GitHubModel): default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) @@ -865,11 +864,11 @@ class WebhookPullRequestLockedPropPullRequestPropHeadPropRepo(GitHubModel): default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) diff --git a/githubkit/versions/v2022_11_28/models/group_0655.py b/githubkit/versions/v2022_11_28/models/group_0655.py index 608552d0a..deb6d67f8 100644 --- a/githubkit/versions/v2022_11_28/models/group_0655.py +++ b/githubkit/versions/v2022_11_28/models/group_0655.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -68,9 +67,9 @@ class WebhookPullRequestMilestonedPropPullRequest(GitHubModel): None, Literal["resolved", "off-topic", "too heated", "spam"] ] = Field() additions: Missing[int] = Field(default=UNSET) - assignee: Union[ - WebhookPullRequestMilestonedPropPullRequestPropAssignee, None - ] = Field(title="User") + assignee: Union[WebhookPullRequestMilestonedPropPullRequestPropAssignee, None] = ( + Field(title="User") + ) assignees: List[ Union[WebhookPullRequestMilestonedPropPullRequestPropAssigneesItems, None] ] = Field() @@ -125,11 +124,11 @@ class WebhookPullRequestMilestonedPropPullRequest(GitHubModel): merged_by: Missing[ Union[WebhookPullRequestMilestonedPropPullRequestPropMergedBy, None] ] = Field(default=UNSET, title="User") - milestone: Union[ - WebhookPullRequestMilestonedPropPullRequestPropMilestone, None - ] = Field( - title="Milestone", - description="A collection of related issues and pull requests.", + milestone: Union[WebhookPullRequestMilestonedPropPullRequestPropMilestone, None] = ( + Field( + title="Milestone", + description="A collection of related issues and pull requests.", + ) ) node_id: str = Field() number: int = Field( @@ -508,9 +507,9 @@ class WebhookPullRequestMilestonedPropPullRequestPropBase(GitHubModel): title="Repository", description="A git repository" ) sha: str = Field() - user: Union[ - WebhookPullRequestMilestonedPropPullRequestPropBasePropUser, None - ] = Field(title="User") + user: Union[WebhookPullRequestMilestonedPropPullRequestPropBasePropUser, None] = ( + Field(title="User") + ) class WebhookPullRequestMilestonedPropPullRequestPropBasePropUser(GitHubModel): @@ -661,11 +660,11 @@ class WebhookPullRequestMilestonedPropPullRequestPropBasePropRepo(GitHubModel): default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) @@ -753,9 +752,9 @@ class WebhookPullRequestMilestonedPropPullRequestPropHead(GitHubModel): title="Repository", description="A git repository" ) sha: str = Field() - user: Union[ - WebhookPullRequestMilestonedPropPullRequestPropHeadPropUser, None - ] = Field(title="User") + user: Union[WebhookPullRequestMilestonedPropPullRequestPropHeadPropUser, None] = ( + Field(title="User") + ) class WebhookPullRequestMilestonedPropPullRequestPropHeadPropUser(GitHubModel): @@ -906,11 +905,11 @@ class WebhookPullRequestMilestonedPropPullRequestPropHeadPropRepo(GitHubModel): default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) diff --git a/githubkit/versions/v2022_11_28/models/group_0656.py b/githubkit/versions/v2022_11_28/models/group_0656.py index 412a2199c..9ed952c11 100644 --- a/githubkit/versions/v2022_11_28/models/group_0656.py +++ b/githubkit/versions/v2022_11_28/models/group_0656.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0657.py b/githubkit/versions/v2022_11_28/models/group_0657.py index 4a593724c..2a9ca0abb 100644 --- a/githubkit/versions/v2022_11_28/models/group_0657.py +++ b/githubkit/versions/v2022_11_28/models/group_0657.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -127,11 +126,11 @@ class WebhookPullRequestOpenedPropPullRequest(GitHubModel): default=UNSET, description="The default value for a squash merge commit message:\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) use_squash_pr_title_as_default: Missing[bool] = Field( default=UNSET, diff --git a/githubkit/versions/v2022_11_28/models/group_0658.py b/githubkit/versions/v2022_11_28/models/group_0658.py index 8a88c1b4b..0c4870ab5 100644 --- a/githubkit/versions/v2022_11_28/models/group_0658.py +++ b/githubkit/versions/v2022_11_28/models/group_0658.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal @@ -47,11 +46,11 @@ class WebhookPullRequestOpenedPropPullRequestAllof1(GitHubModel): default=UNSET, description="The default value for a squash merge commit message:\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) use_squash_pr_title_as_default: Missing[bool] = Field( default=UNSET, diff --git a/githubkit/versions/v2022_11_28/models/group_0659.py b/githubkit/versions/v2022_11_28/models/group_0659.py index c7447534a..b6e060f5c 100644 --- a/githubkit/versions/v2022_11_28/models/group_0659.py +++ b/githubkit/versions/v2022_11_28/models/group_0659.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0660.py b/githubkit/versions/v2022_11_28/models/group_0660.py index 47a3dc95b..97ae5ee62 100644 --- a/githubkit/versions/v2022_11_28/models/group_0660.py +++ b/githubkit/versions/v2022_11_28/models/group_0660.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -127,11 +126,11 @@ class WebhookPullRequestReadyForReviewPropPullRequest(GitHubModel): default=UNSET, description="The default value for a squash merge commit message:\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) use_squash_pr_title_as_default: Missing[bool] = Field( default=UNSET, diff --git a/githubkit/versions/v2022_11_28/models/group_0661.py b/githubkit/versions/v2022_11_28/models/group_0661.py index c4925c0ed..adb6035a1 100644 --- a/githubkit/versions/v2022_11_28/models/group_0661.py +++ b/githubkit/versions/v2022_11_28/models/group_0661.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal @@ -47,11 +46,11 @@ class WebhookPullRequestReadyForReviewPropPullRequestAllof1(GitHubModel): default=UNSET, description="The default value for a squash merge commit message:\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) use_squash_pr_title_as_default: Missing[bool] = Field( default=UNSET, diff --git a/githubkit/versions/v2022_11_28/models/group_0662.py b/githubkit/versions/v2022_11_28/models/group_0662.py index 603d68da1..05e69b0ac 100644 --- a/githubkit/versions/v2022_11_28/models/group_0662.py +++ b/githubkit/versions/v2022_11_28/models/group_0662.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0663.py b/githubkit/versions/v2022_11_28/models/group_0663.py index d5532b32d..5bfc1603d 100644 --- a/githubkit/versions/v2022_11_28/models/group_0663.py +++ b/githubkit/versions/v2022_11_28/models/group_0663.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -127,11 +126,11 @@ class WebhookPullRequestReopenedPropPullRequest(GitHubModel): default=UNSET, description="The default value for a squash merge commit message:\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) use_squash_pr_title_as_default: Missing[bool] = Field( default=UNSET, diff --git a/githubkit/versions/v2022_11_28/models/group_0664.py b/githubkit/versions/v2022_11_28/models/group_0664.py index ea7cda6ee..ff0c36671 100644 --- a/githubkit/versions/v2022_11_28/models/group_0664.py +++ b/githubkit/versions/v2022_11_28/models/group_0664.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal @@ -47,11 +46,11 @@ class WebhookPullRequestReopenedPropPullRequestAllof1(GitHubModel): default=UNSET, description="The default value for a squash merge commit message:\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) use_squash_pr_title_as_default: Missing[bool] = Field( default=UNSET, diff --git a/githubkit/versions/v2022_11_28/models/group_0665.py b/githubkit/versions/v2022_11_28/models/group_0665.py index 0a32eed8a..ce669f778 100644 --- a/githubkit/versions/v2022_11_28/models/group_0665.py +++ b/githubkit/versions/v2022_11_28/models/group_0665.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -143,9 +142,9 @@ class WebhookPullRequestReviewCommentCreatedPropComment(GitHubModel): ) updated_at: datetime = Field() url: str = Field(description="URL for the pull request review comment") - user: Union[ - WebhookPullRequestReviewCommentCreatedPropCommentPropUser, None - ] = Field(title="User") + user: Union[WebhookPullRequestReviewCommentCreatedPropCommentPropUser, None] = ( + Field(title="User") + ) class WebhookPullRequestReviewCommentCreatedPropCommentPropReactions(GitHubModel): @@ -305,9 +304,9 @@ class WebhookPullRequestReviewCommentCreatedPropPullRequest(GitHubModel): title: str = Field() updated_at: str = Field() url: str = Field() - user: Union[ - WebhookPullRequestReviewCommentCreatedPropPullRequestPropUser, None - ] = Field(title="User") + user: Union[WebhookPullRequestReviewCommentCreatedPropPullRequestPropUser, None] = ( + Field(title="User") + ) class WebhookPullRequestReviewCommentCreatedPropPullRequestPropAssignee(GitHubModel): @@ -807,11 +806,11 @@ class WebhookPullRequestReviewCommentCreatedPropPullRequestPropBasePropRepo( default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) @@ -1034,11 +1033,11 @@ class WebhookPullRequestReviewCommentCreatedPropPullRequestPropHeadPropRepo( default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) diff --git a/githubkit/versions/v2022_11_28/models/group_0666.py b/githubkit/versions/v2022_11_28/models/group_0666.py index ea8d429f8..a4dc29e38 100644 --- a/githubkit/versions/v2022_11_28/models/group_0666.py +++ b/githubkit/versions/v2022_11_28/models/group_0666.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -143,9 +142,9 @@ class WebhookPullRequestReviewCommentDeletedPropComment(GitHubModel): ) updated_at: datetime = Field() url: str = Field(description="URL for the pull request review comment") - user: Union[ - WebhookPullRequestReviewCommentDeletedPropCommentPropUser, None - ] = Field(title="User") + user: Union[WebhookPullRequestReviewCommentDeletedPropCommentPropUser, None] = ( + Field(title="User") + ) class WebhookPullRequestReviewCommentDeletedPropCommentPropReactions(GitHubModel): @@ -305,9 +304,9 @@ class WebhookPullRequestReviewCommentDeletedPropPullRequest(GitHubModel): title: str = Field() updated_at: str = Field() url: str = Field() - user: Union[ - WebhookPullRequestReviewCommentDeletedPropPullRequestPropUser, None - ] = Field(title="User") + user: Union[WebhookPullRequestReviewCommentDeletedPropPullRequestPropUser, None] = ( + Field(title="User") + ) class WebhookPullRequestReviewCommentDeletedPropPullRequestPropAssignee(GitHubModel): @@ -799,11 +798,11 @@ class WebhookPullRequestReviewCommentDeletedPropPullRequestPropBasePropRepo( default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) @@ -1026,11 +1025,11 @@ class WebhookPullRequestReviewCommentDeletedPropPullRequestPropHeadPropRepo( default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) diff --git a/githubkit/versions/v2022_11_28/models/group_0667.py b/githubkit/versions/v2022_11_28/models/group_0667.py index 96dd6ee40..b1df5bb7a 100644 --- a/githubkit/versions/v2022_11_28/models/group_0667.py +++ b/githubkit/versions/v2022_11_28/models/group_0667.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -324,9 +323,9 @@ class WebhookPullRequestReviewCommentEditedPropPullRequest(GitHubModel): title: str = Field() updated_at: str = Field() url: str = Field() - user: Union[ - WebhookPullRequestReviewCommentEditedPropPullRequestPropUser, None - ] = Field(title="User") + user: Union[WebhookPullRequestReviewCommentEditedPropPullRequestPropUser, None] = ( + Field(title="User") + ) class WebhookPullRequestReviewCommentEditedPropPullRequestPropAssignee(GitHubModel): @@ -816,11 +815,11 @@ class WebhookPullRequestReviewCommentEditedPropPullRequestPropBasePropRepo(GitHu default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) @@ -1041,11 +1040,11 @@ class WebhookPullRequestReviewCommentEditedPropPullRequestPropHeadPropRepo(GitHu default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) diff --git a/githubkit/versions/v2022_11_28/models/group_0668.py b/githubkit/versions/v2022_11_28/models/group_0668.py index fadeb060d..d9519b33e 100644 --- a/githubkit/versions/v2022_11_28/models/group_0668.py +++ b/githubkit/versions/v2022_11_28/models/group_0668.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -191,9 +190,9 @@ class WebhookPullRequestReviewDismissedPropPullRequest(GitHubModel): html_url: str = Field() id: int = Field() issue_url: str = Field() - labels: List[ - WebhookPullRequestReviewDismissedPropPullRequestPropLabelsItems - ] = Field() + labels: List[WebhookPullRequestReviewDismissedPropPullRequestPropLabelsItems] = ( + Field() + ) locked: bool = Field() merge_commit_sha: Union[str, None] = Field() merged_at: Union[str, None] = Field() @@ -706,11 +705,11 @@ class WebhookPullRequestReviewDismissedPropPullRequestPropBasePropRepo(GitHubMod default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) @@ -928,11 +927,11 @@ class WebhookPullRequestReviewDismissedPropPullRequestPropHeadPropRepo(GitHubMod default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) diff --git a/githubkit/versions/v2022_11_28/models/group_0669.py b/githubkit/versions/v2022_11_28/models/group_0669.py index 5c86b6918..580162782 100644 --- a/githubkit/versions/v2022_11_28/models/group_0669.py +++ b/githubkit/versions/v2022_11_28/models/group_0669.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -170,9 +169,9 @@ class WebhookPullRequestReviewEditedPropPullRequest(GitHubModel): active_lock_reason: Union[ None, Literal["resolved", "off-topic", "too heated", "spam"] ] = Field() - assignee: Union[ - WebhookPullRequestReviewEditedPropPullRequestPropAssignee, None - ] = Field(title="User") + assignee: Union[WebhookPullRequestReviewEditedPropPullRequestPropAssignee, None] = ( + Field(title="User") + ) assignees: List[ Union[WebhookPullRequestReviewEditedPropPullRequestPropAssigneesItems, None] ] = Field() @@ -564,9 +563,9 @@ class WebhookPullRequestReviewEditedPropPullRequestPropBase(GitHubModel): title="Repository", description="A git repository" ) sha: str = Field() - user: Union[ - WebhookPullRequestReviewEditedPropPullRequestPropBasePropUser, None - ] = Field(title="User") + user: Union[WebhookPullRequestReviewEditedPropPullRequestPropBasePropUser, None] = ( + Field(title="User") + ) class WebhookPullRequestReviewEditedPropPullRequestPropBasePropUser(GitHubModel): @@ -776,13 +775,13 @@ class WebhookPullRequestReviewEditedPropPullRequestPropHead(GitHubModel): label: str = Field() ref: str = Field() - repo: Union[ - WebhookPullRequestReviewEditedPropPullRequestPropHeadPropRepo, None - ] = Field(title="Repository", description="A git repository") + repo: Union[WebhookPullRequestReviewEditedPropPullRequestPropHeadPropRepo, None] = ( + Field(title="Repository", description="A git repository") + ) sha: str = Field() - user: Union[ - WebhookPullRequestReviewEditedPropPullRequestPropHeadPropUser, None - ] = Field(title="User") + user: Union[WebhookPullRequestReviewEditedPropPullRequestPropHeadPropUser, None] = ( + Field(title="User") + ) class WebhookPullRequestReviewEditedPropPullRequestPropHeadPropRepo(GitHubModel): diff --git a/githubkit/versions/v2022_11_28/models/group_0670.py b/githubkit/versions/v2022_11_28/models/group_0670.py index 036e4a845..9e336e88e 100644 --- a/githubkit/versions/v2022_11_28/models/group_0670.py +++ b/githubkit/versions/v2022_11_28/models/group_0670.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -724,10 +723,11 @@ class WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropBasePropRep default=UNSET, description="The default value for a squash merge commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, description="The default value for a squash merge commit title." + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title.", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) @@ -979,11 +979,11 @@ class WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropHeadPropRep default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) diff --git a/githubkit/versions/v2022_11_28/models/group_0671.py b/githubkit/versions/v2022_11_28/models/group_0671.py index f86cebbcf..d26382455 100644 --- a/githubkit/versions/v2022_11_28/models/group_0671.py +++ b/githubkit/versions/v2022_11_28/models/group_0671.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -747,11 +746,11 @@ class WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropBasePropRep default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) @@ -1003,11 +1002,11 @@ class WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropHeadPropRep default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) diff --git a/githubkit/versions/v2022_11_28/models/group_0672.py b/githubkit/versions/v2022_11_28/models/group_0672.py index 4c0a90665..94b908051 100644 --- a/githubkit/versions/v2022_11_28/models/group_0672.py +++ b/githubkit/versions/v2022_11_28/models/group_0672.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -722,11 +721,11 @@ class WebhookPullRequestReviewRequestedOneof0PropPullRequestPropBasePropRepo( default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) @@ -977,11 +976,11 @@ class WebhookPullRequestReviewRequestedOneof0PropPullRequestPropHeadPropRepo( default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) diff --git a/githubkit/versions/v2022_11_28/models/group_0673.py b/githubkit/versions/v2022_11_28/models/group_0673.py index 3438010ea..ddad66804 100644 --- a/githubkit/versions/v2022_11_28/models/group_0673.py +++ b/githubkit/versions/v2022_11_28/models/group_0673.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -741,11 +740,11 @@ class WebhookPullRequestReviewRequestedOneof1PropPullRequestPropBasePropRepo( default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) @@ -996,11 +995,11 @@ class WebhookPullRequestReviewRequestedOneof1PropPullRequestPropHeadPropRepo( default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) diff --git a/githubkit/versions/v2022_11_28/models/group_0674.py b/githubkit/versions/v2022_11_28/models/group_0674.py index 84b09bae7..216230d2d 100644 --- a/githubkit/versions/v2022_11_28/models/group_0674.py +++ b/githubkit/versions/v2022_11_28/models/group_0674.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -189,9 +188,9 @@ class WebhookPullRequestReviewSubmittedPropPullRequest(GitHubModel): html_url: str = Field() id: int = Field() issue_url: str = Field() - labels: List[ - WebhookPullRequestReviewSubmittedPropPullRequestPropLabelsItems - ] = Field() + labels: List[WebhookPullRequestReviewSubmittedPropPullRequestPropLabelsItems] = ( + Field() + ) locked: bool = Field() merge_commit_sha: Union[str, None] = Field() merged_at: Union[str, None] = Field() @@ -706,11 +705,11 @@ class WebhookPullRequestReviewSubmittedPropPullRequestPropBasePropRepo(GitHubMod default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) @@ -928,11 +927,11 @@ class WebhookPullRequestReviewSubmittedPropPullRequestPropHeadPropRepo(GitHubMod default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) diff --git a/githubkit/versions/v2022_11_28/models/group_0675.py b/githubkit/versions/v2022_11_28/models/group_0675.py index a3347359a..f861e3a3d 100644 --- a/githubkit/versions/v2022_11_28/models/group_0675.py +++ b/githubkit/versions/v2022_11_28/models/group_0675.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -141,9 +140,9 @@ class WebhookPullRequestReviewThreadResolvedPropPullRequest(GitHubModel): title: str = Field() updated_at: str = Field() url: str = Field() - user: Union[ - WebhookPullRequestReviewThreadResolvedPropPullRequestPropUser, None - ] = Field(title="User") + user: Union[WebhookPullRequestReviewThreadResolvedPropPullRequestPropUser, None] = ( + Field(title="User") + ) class WebhookPullRequestReviewThreadResolvedPropPullRequestPropAssignee(GitHubModel): diff --git a/githubkit/versions/v2022_11_28/models/group_0676.py b/githubkit/versions/v2022_11_28/models/group_0676.py index 3356471b6..8575f21fd 100644 --- a/githubkit/versions/v2022_11_28/models/group_0676.py +++ b/githubkit/versions/v2022_11_28/models/group_0676.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0677.py b/githubkit/versions/v2022_11_28/models/group_0677.py index b2ae3d2fb..33b8cb855 100644 --- a/githubkit/versions/v2022_11_28/models/group_0677.py +++ b/githubkit/versions/v2022_11_28/models/group_0677.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -69,9 +68,9 @@ class WebhookPullRequestSynchronizePropPullRequest(GitHubModel): None, Literal["resolved", "off-topic", "too heated", "spam"] ] = Field() additions: Missing[int] = Field(default=UNSET) - assignee: Union[ - WebhookPullRequestSynchronizePropPullRequestPropAssignee, None - ] = Field(title="User") + assignee: Union[WebhookPullRequestSynchronizePropPullRequestPropAssignee, None] = ( + Field(title="User") + ) assignees: List[ Union[WebhookPullRequestSynchronizePropPullRequestPropAssigneesItems, None] ] = Field() @@ -509,9 +508,9 @@ class WebhookPullRequestSynchronizePropPullRequestPropBase(GitHubModel): title="Repository", description="A git repository" ) sha: str = Field() - user: Union[ - WebhookPullRequestSynchronizePropPullRequestPropBasePropUser, None - ] = Field(title="User") + user: Union[WebhookPullRequestSynchronizePropPullRequestPropBasePropUser, None] = ( + Field(title="User") + ) class WebhookPullRequestSynchronizePropPullRequestPropBasePropUser(GitHubModel): @@ -662,11 +661,11 @@ class WebhookPullRequestSynchronizePropPullRequestPropBasePropRepo(GitHubModel): default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) @@ -756,9 +755,9 @@ class WebhookPullRequestSynchronizePropPullRequestPropHead(GitHubModel): title="Repository", description="A git repository" ) sha: str = Field() - user: Union[ - WebhookPullRequestSynchronizePropPullRequestPropHeadPropUser, None - ] = Field(title="User") + user: Union[WebhookPullRequestSynchronizePropPullRequestPropHeadPropUser, None] = ( + Field(title="User") + ) class WebhookPullRequestSynchronizePropPullRequestPropHeadPropUser(GitHubModel): @@ -907,11 +906,11 @@ class WebhookPullRequestSynchronizePropPullRequestPropHeadPropRepo(GitHubModel): default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) diff --git a/githubkit/versions/v2022_11_28/models/group_0678.py b/githubkit/versions/v2022_11_28/models/group_0678.py index 839c8307c..e01c38096 100644 --- a/githubkit/versions/v2022_11_28/models/group_0678.py +++ b/githubkit/versions/v2022_11_28/models/group_0678.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -99,9 +98,9 @@ class WebhookPullRequestUnassignedPropPullRequest(GitHubModel): None, Literal["resolved", "off-topic", "too heated", "spam"] ] = Field() additions: Missing[int] = Field(default=UNSET) - assignee: Union[ - WebhookPullRequestUnassignedPropPullRequestPropAssignee, None - ] = Field(title="User") + assignee: Union[WebhookPullRequestUnassignedPropPullRequestPropAssignee, None] = ( + Field(title="User") + ) assignees: List[ Union[WebhookPullRequestUnassignedPropPullRequestPropAssigneesItems, None] ] = Field() @@ -156,11 +155,11 @@ class WebhookPullRequestUnassignedPropPullRequest(GitHubModel): merged_by: Missing[ Union[WebhookPullRequestUnassignedPropPullRequestPropMergedBy, None] ] = Field(default=UNSET, title="User") - milestone: Union[ - WebhookPullRequestUnassignedPropPullRequestPropMilestone, None - ] = Field( - title="Milestone", - description="A collection of related issues and pull requests.", + milestone: Union[WebhookPullRequestUnassignedPropPullRequestPropMilestone, None] = ( + Field( + title="Milestone", + description="A collection of related issues and pull requests.", + ) ) node_id: str = Field() number: int = Field( @@ -541,9 +540,9 @@ class WebhookPullRequestUnassignedPropPullRequestPropBase(GitHubModel): title="Repository", description="A git repository" ) sha: str = Field() - user: Union[ - WebhookPullRequestUnassignedPropPullRequestPropBasePropUser, None - ] = Field(title="User") + user: Union[WebhookPullRequestUnassignedPropPullRequestPropBasePropUser, None] = ( + Field(title="User") + ) class WebhookPullRequestUnassignedPropPullRequestPropBasePropUser(GitHubModel): @@ -694,11 +693,11 @@ class WebhookPullRequestUnassignedPropPullRequestPropBasePropRepo(GitHubModel): default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) @@ -782,13 +781,13 @@ class WebhookPullRequestUnassignedPropPullRequestPropHead(GitHubModel): label: Union[str, None] = Field() ref: str = Field() - repo: Union[ - WebhookPullRequestUnassignedPropPullRequestPropHeadPropRepo, None - ] = Field(title="Repository", description="A git repository") + repo: Union[WebhookPullRequestUnassignedPropPullRequestPropHeadPropRepo, None] = ( + Field(title="Repository", description="A git repository") + ) sha: str = Field() - user: Union[ - WebhookPullRequestUnassignedPropPullRequestPropHeadPropUser, None - ] = Field(title="User") + user: Union[WebhookPullRequestUnassignedPropPullRequestPropHeadPropUser, None] = ( + Field(title="User") + ) class WebhookPullRequestUnassignedPropPullRequestPropHeadPropRepo(GitHubModel): @@ -913,11 +912,11 @@ class WebhookPullRequestUnassignedPropPullRequestPropHeadPropRepo(GitHubModel): default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) diff --git a/githubkit/versions/v2022_11_28/models/group_0679.py b/githubkit/versions/v2022_11_28/models/group_0679.py index 3673165d2..050ddb86f 100644 --- a/githubkit/versions/v2022_11_28/models/group_0679.py +++ b/githubkit/versions/v2022_11_28/models/group_0679.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -84,9 +83,9 @@ class WebhookPullRequestUnlabeledPropPullRequest(GitHubModel): None, Literal["resolved", "off-topic", "too heated", "spam"] ] = Field() additions: Missing[int] = Field(default=UNSET) - assignee: Union[ - WebhookPullRequestUnlabeledPropPullRequestPropAssignee, None - ] = Field(title="User") + assignee: Union[WebhookPullRequestUnlabeledPropPullRequestPropAssignee, None] = ( + Field(title="User") + ) assignees: List[ Union[WebhookPullRequestUnlabeledPropPullRequestPropAssigneesItems, None] ] = Field() @@ -103,11 +102,11 @@ class WebhookPullRequestUnlabeledPropPullRequest(GitHubModel): title="AuthorAssociation", description="How the author is associated with the repository.", ) - auto_merge: Union[ - WebhookPullRequestUnlabeledPropPullRequestPropAutoMerge, None - ] = Field( - title="PullRequestAutoMerge", - description="The status of auto merging a pull request.", + auto_merge: Union[WebhookPullRequestUnlabeledPropPullRequestPropAutoMerge, None] = ( + Field( + title="PullRequestAutoMerge", + description="The status of auto merging a pull request.", + ) ) base: WebhookPullRequestUnlabeledPropPullRequestPropBase = Field() body: Union[str, None] = Field() @@ -141,11 +140,11 @@ class WebhookPullRequestUnlabeledPropPullRequest(GitHubModel): merged_by: Missing[ Union[WebhookPullRequestUnlabeledPropPullRequestPropMergedBy, None] ] = Field(default=UNSET, title="User") - milestone: Union[ - WebhookPullRequestUnlabeledPropPullRequestPropMilestone, None - ] = Field( - title="Milestone", - description="A collection of related issues and pull requests.", + milestone: Union[WebhookPullRequestUnlabeledPropPullRequestPropMilestone, None] = ( + Field( + title="Milestone", + description="A collection of related issues and pull requests.", + ) ) node_id: str = Field() number: int = Field( @@ -520,9 +519,9 @@ class WebhookPullRequestUnlabeledPropPullRequestPropBase(GitHubModel): title="Repository", description="A git repository" ) sha: str = Field() - user: Union[ - WebhookPullRequestUnlabeledPropPullRequestPropBasePropUser, None - ] = Field(title="User") + user: Union[WebhookPullRequestUnlabeledPropPullRequestPropBasePropUser, None] = ( + Field(title="User") + ) class WebhookPullRequestUnlabeledPropPullRequestPropBasePropUser(GitHubModel): @@ -673,11 +672,11 @@ class WebhookPullRequestUnlabeledPropPullRequestPropBasePropRepo(GitHubModel): default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) @@ -761,13 +760,13 @@ class WebhookPullRequestUnlabeledPropPullRequestPropHead(GitHubModel): label: Union[str, None] = Field() ref: str = Field() - repo: Union[ - WebhookPullRequestUnlabeledPropPullRequestPropHeadPropRepo, None - ] = Field(title="Repository", description="A git repository") + repo: Union[WebhookPullRequestUnlabeledPropPullRequestPropHeadPropRepo, None] = ( + Field(title="Repository", description="A git repository") + ) sha: str = Field() - user: Union[ - WebhookPullRequestUnlabeledPropPullRequestPropHeadPropUser, None - ] = Field(title="User") + user: Union[WebhookPullRequestUnlabeledPropPullRequestPropHeadPropUser, None] = ( + Field(title="User") + ) class WebhookPullRequestUnlabeledPropPullRequestPropHeadPropRepo(GitHubModel): @@ -890,11 +889,11 @@ class WebhookPullRequestUnlabeledPropPullRequestPropHeadPropRepo(GitHubModel): default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) diff --git a/githubkit/versions/v2022_11_28/models/group_0680.py b/githubkit/versions/v2022_11_28/models/group_0680.py index 4c448e6e9..88785e5b5 100644 --- a/githubkit/versions/v2022_11_28/models/group_0680.py +++ b/githubkit/versions/v2022_11_28/models/group_0680.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -67,9 +66,9 @@ class WebhookPullRequestUnlockedPropPullRequest(GitHubModel): None, Literal["resolved", "off-topic", "too heated", "spam"] ] = Field() additions: Missing[int] = Field(default=UNSET) - assignee: Union[ - WebhookPullRequestUnlockedPropPullRequestPropAssignee, None - ] = Field(title="User") + assignee: Union[WebhookPullRequestUnlockedPropPullRequestPropAssignee, None] = ( + Field(title="User") + ) assignees: List[ Union[WebhookPullRequestUnlockedPropPullRequestPropAssigneesItems, None] ] = Field() @@ -86,11 +85,11 @@ class WebhookPullRequestUnlockedPropPullRequest(GitHubModel): title="AuthorAssociation", description="How the author is associated with the repository.", ) - auto_merge: Union[ - WebhookPullRequestUnlockedPropPullRequestPropAutoMerge, None - ] = Field( - title="PullRequestAutoMerge", - description="The status of auto merging a pull request.", + auto_merge: Union[WebhookPullRequestUnlockedPropPullRequestPropAutoMerge, None] = ( + Field( + title="PullRequestAutoMerge", + description="The status of auto merging a pull request.", + ) ) base: WebhookPullRequestUnlockedPropPullRequestPropBase = Field() body: Union[str, None] = Field() @@ -124,11 +123,11 @@ class WebhookPullRequestUnlockedPropPullRequest(GitHubModel): merged_by: Missing[ Union[WebhookPullRequestUnlockedPropPullRequestPropMergedBy, None] ] = Field(default=UNSET, title="User") - milestone: Union[ - WebhookPullRequestUnlockedPropPullRequestPropMilestone, None - ] = Field( - title="Milestone", - description="A collection of related issues and pull requests.", + milestone: Union[WebhookPullRequestUnlockedPropPullRequestPropMilestone, None] = ( + Field( + title="Milestone", + description="A collection of related issues and pull requests.", + ) ) node_id: str = Field() number: int = Field( @@ -489,9 +488,9 @@ class WebhookPullRequestUnlockedPropPullRequestPropBase(GitHubModel): title="Repository", description="A git repository" ) sha: str = Field() - user: Union[ - WebhookPullRequestUnlockedPropPullRequestPropBasePropUser, None - ] = Field(title="User") + user: Union[WebhookPullRequestUnlockedPropPullRequestPropBasePropUser, None] = ( + Field(title="User") + ) class WebhookPullRequestUnlockedPropPullRequestPropBasePropUser(GitHubModel): @@ -642,11 +641,11 @@ class WebhookPullRequestUnlockedPropPullRequestPropBasePropRepo(GitHubModel): default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) @@ -728,13 +727,13 @@ class WebhookPullRequestUnlockedPropPullRequestPropHead(GitHubModel): label: str = Field() ref: str = Field() - repo: Union[ - WebhookPullRequestUnlockedPropPullRequestPropHeadPropRepo, None - ] = Field(title="Repository", description="A git repository") + repo: Union[WebhookPullRequestUnlockedPropPullRequestPropHeadPropRepo, None] = ( + Field(title="Repository", description="A git repository") + ) sha: str = Field() - user: Union[ - WebhookPullRequestUnlockedPropPullRequestPropHeadPropUser, None - ] = Field(title="User") + user: Union[WebhookPullRequestUnlockedPropPullRequestPropHeadPropUser, None] = ( + Field(title="User") + ) class WebhookPullRequestUnlockedPropPullRequestPropHeadPropRepo(GitHubModel): @@ -859,11 +858,11 @@ class WebhookPullRequestUnlockedPropPullRequestPropHeadPropRepo(GitHubModel): default=UNSET, description="The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) ssh_url: str = Field() stargazers: Missing[int] = Field(default=UNSET) diff --git a/githubkit/versions/v2022_11_28/models/group_0681.py b/githubkit/versions/v2022_11_28/models/group_0681.py index 3845925da..d2ac5c028 100644 --- a/githubkit/versions/v2022_11_28/models/group_0681.py +++ b/githubkit/versions/v2022_11_28/models/group_0681.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0682.py b/githubkit/versions/v2022_11_28/models/group_0682.py index 6a2ee04d4..6d7a11372 100644 --- a/githubkit/versions/v2022_11_28/models/group_0682.py +++ b/githubkit/versions/v2022_11_28/models/group_0682.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0683.py b/githubkit/versions/v2022_11_28/models/group_0683.py index c03bfb2c5..3e974281d 100644 --- a/githubkit/versions/v2022_11_28/models/group_0683.py +++ b/githubkit/versions/v2022_11_28/models/group_0683.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0684.py b/githubkit/versions/v2022_11_28/models/group_0684.py index dc8996697..c84b857f4 100644 --- a/githubkit/versions/v2022_11_28/models/group_0684.py +++ b/githubkit/versions/v2022_11_28/models/group_0684.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/v2022_11_28/models/group_0685.py b/githubkit/versions/v2022_11_28/models/group_0685.py index e86ada184..7722bb14d 100644 --- a/githubkit/versions/v2022_11_28/models/group_0685.py +++ b/githubkit/versions/v2022_11_28/models/group_0685.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0686.py b/githubkit/versions/v2022_11_28/models/group_0686.py index a862a2c67..9c7c543bc 100644 --- a/githubkit/versions/v2022_11_28/models/group_0686.py +++ b/githubkit/versions/v2022_11_28/models/group_0686.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0687.py b/githubkit/versions/v2022_11_28/models/group_0687.py index 5a3e50f05..963a0cff9 100644 --- a/githubkit/versions/v2022_11_28/models/group_0687.py +++ b/githubkit/versions/v2022_11_28/models/group_0687.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/v2022_11_28/models/group_0688.py b/githubkit/versions/v2022_11_28/models/group_0688.py index ceff71d5c..8c7e7a058 100644 --- a/githubkit/versions/v2022_11_28/models/group_0688.py +++ b/githubkit/versions/v2022_11_28/models/group_0688.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0689.py b/githubkit/versions/v2022_11_28/models/group_0689.py index 27d5be45b..74696b125 100644 --- a/githubkit/versions/v2022_11_28/models/group_0689.py +++ b/githubkit/versions/v2022_11_28/models/group_0689.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0690.py b/githubkit/versions/v2022_11_28/models/group_0690.py index f6efbbdfe..e3d329de9 100644 --- a/githubkit/versions/v2022_11_28/models/group_0690.py +++ b/githubkit/versions/v2022_11_28/models/group_0690.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0691.py b/githubkit/versions/v2022_11_28/models/group_0691.py index 37ef5e986..1294ab9b8 100644 --- a/githubkit/versions/v2022_11_28/models/group_0691.py +++ b/githubkit/versions/v2022_11_28/models/group_0691.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0692.py b/githubkit/versions/v2022_11_28/models/group_0692.py index 24c93427b..7818ff234 100644 --- a/githubkit/versions/v2022_11_28/models/group_0692.py +++ b/githubkit/versions/v2022_11_28/models/group_0692.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0693.py b/githubkit/versions/v2022_11_28/models/group_0693.py index ef4359ac4..67bbb4dde 100644 --- a/githubkit/versions/v2022_11_28/models/group_0693.py +++ b/githubkit/versions/v2022_11_28/models/group_0693.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0694.py b/githubkit/versions/v2022_11_28/models/group_0694.py index 173101f08..fc88e5715 100644 --- a/githubkit/versions/v2022_11_28/models/group_0694.py +++ b/githubkit/versions/v2022_11_28/models/group_0694.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0695.py b/githubkit/versions/v2022_11_28/models/group_0695.py index 9a3c2c1e8..dae48fc98 100644 --- a/githubkit/versions/v2022_11_28/models/group_0695.py +++ b/githubkit/versions/v2022_11_28/models/group_0695.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0696.py b/githubkit/versions/v2022_11_28/models/group_0696.py index 2077b72cc..ed01c663a 100644 --- a/githubkit/versions/v2022_11_28/models/group_0696.py +++ b/githubkit/versions/v2022_11_28/models/group_0696.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0697.py b/githubkit/versions/v2022_11_28/models/group_0697.py index 961efb4a3..a57fd12c9 100644 --- a/githubkit/versions/v2022_11_28/models/group_0697.py +++ b/githubkit/versions/v2022_11_28/models/group_0697.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0698.py b/githubkit/versions/v2022_11_28/models/group_0698.py index 688f03f73..4c0ac9558 100644 --- a/githubkit/versions/v2022_11_28/models/group_0698.py +++ b/githubkit/versions/v2022_11_28/models/group_0698.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0699.py b/githubkit/versions/v2022_11_28/models/group_0699.py index ad7671ada..be5101798 100644 --- a/githubkit/versions/v2022_11_28/models/group_0699.py +++ b/githubkit/versions/v2022_11_28/models/group_0699.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0700.py b/githubkit/versions/v2022_11_28/models/group_0700.py index 5ebbae434..f07a534b4 100644 --- a/githubkit/versions/v2022_11_28/models/group_0700.py +++ b/githubkit/versions/v2022_11_28/models/group_0700.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0701.py b/githubkit/versions/v2022_11_28/models/group_0701.py index a8a7d9f30..c9af765c6 100644 --- a/githubkit/versions/v2022_11_28/models/group_0701.py +++ b/githubkit/versions/v2022_11_28/models/group_0701.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0702.py b/githubkit/versions/v2022_11_28/models/group_0702.py index 58a236b91..8d460c9d8 100644 --- a/githubkit/versions/v2022_11_28/models/group_0702.py +++ b/githubkit/versions/v2022_11_28/models/group_0702.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0703.py b/githubkit/versions/v2022_11_28/models/group_0703.py index f308de5a1..1ac24c1ba 100644 --- a/githubkit/versions/v2022_11_28/models/group_0703.py +++ b/githubkit/versions/v2022_11_28/models/group_0703.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0704.py b/githubkit/versions/v2022_11_28/models/group_0704.py index f08fc32e9..327772f9d 100644 --- a/githubkit/versions/v2022_11_28/models/group_0704.py +++ b/githubkit/versions/v2022_11_28/models/group_0704.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0705.py b/githubkit/versions/v2022_11_28/models/group_0705.py index 74c0cda5f..bacfc428b 100644 --- a/githubkit/versions/v2022_11_28/models/group_0705.py +++ b/githubkit/versions/v2022_11_28/models/group_0705.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0706.py b/githubkit/versions/v2022_11_28/models/group_0706.py index dc1ca1f6f..f909d2ac3 100644 --- a/githubkit/versions/v2022_11_28/models/group_0706.py +++ b/githubkit/versions/v2022_11_28/models/group_0706.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0707.py b/githubkit/versions/v2022_11_28/models/group_0707.py index 5517ffc08..79b77c249 100644 --- a/githubkit/versions/v2022_11_28/models/group_0707.py +++ b/githubkit/versions/v2022_11_28/models/group_0707.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0708.py b/githubkit/versions/v2022_11_28/models/group_0708.py index 402415fcb..b72b46d3c 100644 --- a/githubkit/versions/v2022_11_28/models/group_0708.py +++ b/githubkit/versions/v2022_11_28/models/group_0708.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0709.py b/githubkit/versions/v2022_11_28/models/group_0709.py index 43273b434..2637c0f85 100644 --- a/githubkit/versions/v2022_11_28/models/group_0709.py +++ b/githubkit/versions/v2022_11_28/models/group_0709.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0710.py b/githubkit/versions/v2022_11_28/models/group_0710.py index b25aba815..a5d6431d8 100644 --- a/githubkit/versions/v2022_11_28/models/group_0710.py +++ b/githubkit/versions/v2022_11_28/models/group_0710.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0711.py b/githubkit/versions/v2022_11_28/models/group_0711.py index 5ad4776be..ed79888d9 100644 --- a/githubkit/versions/v2022_11_28/models/group_0711.py +++ b/githubkit/versions/v2022_11_28/models/group_0711.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0712.py b/githubkit/versions/v2022_11_28/models/group_0712.py index 6a4042506..badd87b0d 100644 --- a/githubkit/versions/v2022_11_28/models/group_0712.py +++ b/githubkit/versions/v2022_11_28/models/group_0712.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0713.py b/githubkit/versions/v2022_11_28/models/group_0713.py index bd3b7db1b..6d5245c4a 100644 --- a/githubkit/versions/v2022_11_28/models/group_0713.py +++ b/githubkit/versions/v2022_11_28/models/group_0713.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0714.py b/githubkit/versions/v2022_11_28/models/group_0714.py index 7314d6fe3..d6e4dc43e 100644 --- a/githubkit/versions/v2022_11_28/models/group_0714.py +++ b/githubkit/versions/v2022_11_28/models/group_0714.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/v2022_11_28/models/group_0715.py b/githubkit/versions/v2022_11_28/models/group_0715.py index 28f62258c..2f2639982 100644 --- a/githubkit/versions/v2022_11_28/models/group_0715.py +++ b/githubkit/versions/v2022_11_28/models/group_0715.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0716.py b/githubkit/versions/v2022_11_28/models/group_0716.py index c161c2579..b151ae2f4 100644 --- a/githubkit/versions/v2022_11_28/models/group_0716.py +++ b/githubkit/versions/v2022_11_28/models/group_0716.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0717.py b/githubkit/versions/v2022_11_28/models/group_0717.py index c480f27fc..ab043fa0e 100644 --- a/githubkit/versions/v2022_11_28/models/group_0717.py +++ b/githubkit/versions/v2022_11_28/models/group_0717.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0718.py b/githubkit/versions/v2022_11_28/models/group_0718.py index 86a43418d..c1075989b 100644 --- a/githubkit/versions/v2022_11_28/models/group_0718.py +++ b/githubkit/versions/v2022_11_28/models/group_0718.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0719.py b/githubkit/versions/v2022_11_28/models/group_0719.py index 84f158c8a..46ea49a38 100644 --- a/githubkit/versions/v2022_11_28/models/group_0719.py +++ b/githubkit/versions/v2022_11_28/models/group_0719.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0720.py b/githubkit/versions/v2022_11_28/models/group_0720.py index 1a6b62d8b..f8d2e1282 100644 --- a/githubkit/versions/v2022_11_28/models/group_0720.py +++ b/githubkit/versions/v2022_11_28/models/group_0720.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0722.py b/githubkit/versions/v2022_11_28/models/group_0722.py index 67688d35c..f6de7ea5f 100644 --- a/githubkit/versions/v2022_11_28/models/group_0722.py +++ b/githubkit/versions/v2022_11_28/models/group_0722.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal @@ -58,9 +57,9 @@ class WebhookRepositoryEdited(GitHubModel): class WebhookRepositoryEditedPropChanges(GitHubModel): """WebhookRepositoryEditedPropChanges""" - default_branch: Missing[ - WebhookRepositoryEditedPropChangesPropDefaultBranch - ] = Field(default=UNSET) + default_branch: Missing[WebhookRepositoryEditedPropChangesPropDefaultBranch] = ( + Field(default=UNSET) + ) description: Missing[WebhookRepositoryEditedPropChangesPropDescription] = Field( default=UNSET ) diff --git a/githubkit/versions/v2022_11_28/models/group_0723.py b/githubkit/versions/v2022_11_28/models/group_0723.py index cf95f1753..7d0fe7aca 100644 --- a/githubkit/versions/v2022_11_28/models/group_0723.py +++ b/githubkit/versions/v2022_11_28/models/group_0723.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0724.py b/githubkit/versions/v2022_11_28/models/group_0724.py index b95e50284..3b0c092cc 100644 --- a/githubkit/versions/v2022_11_28/models/group_0724.py +++ b/githubkit/versions/v2022_11_28/models/group_0724.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0725.py b/githubkit/versions/v2022_11_28/models/group_0725.py index 0172abb10..df38d1ad3 100644 --- a/githubkit/versions/v2022_11_28/models/group_0725.py +++ b/githubkit/versions/v2022_11_28/models/group_0725.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0726.py b/githubkit/versions/v2022_11_28/models/group_0726.py index ef25a530b..7aa00f6cc 100644 --- a/githubkit/versions/v2022_11_28/models/group_0726.py +++ b/githubkit/versions/v2022_11_28/models/group_0726.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0727.py b/githubkit/versions/v2022_11_28/models/group_0727.py index 4eb99e43c..fadca8b17 100644 --- a/githubkit/versions/v2022_11_28/models/group_0727.py +++ b/githubkit/versions/v2022_11_28/models/group_0727.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0728.py b/githubkit/versions/v2022_11_28/models/group_0728.py index 98a2832dc..6f8ea22b2 100644 --- a/githubkit/versions/v2022_11_28/models/group_0728.py +++ b/githubkit/versions/v2022_11_28/models/group_0728.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0729.py b/githubkit/versions/v2022_11_28/models/group_0729.py index d9e3d533e..f75b2330d 100644 --- a/githubkit/versions/v2022_11_28/models/group_0729.py +++ b/githubkit/versions/v2022_11_28/models/group_0729.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0730.py b/githubkit/versions/v2022_11_28/models/group_0730.py index 218e00df3..8ba340ca2 100644 --- a/githubkit/versions/v2022_11_28/models/group_0730.py +++ b/githubkit/versions/v2022_11_28/models/group_0730.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field @@ -26,12 +25,12 @@ class WebhookRepositoryRulesetEditedPropChanges(GitHubModel): name: Missing[WebhookRepositoryRulesetEditedPropChangesPropName] = Field( default=UNSET ) - enforcement: Missing[ - WebhookRepositoryRulesetEditedPropChangesPropEnforcement - ] = Field(default=UNSET) - conditions: Missing[ - WebhookRepositoryRulesetEditedPropChangesPropConditions - ] = Field(default=UNSET) + enforcement: Missing[WebhookRepositoryRulesetEditedPropChangesPropEnforcement] = ( + Field(default=UNSET) + ) + conditions: Missing[WebhookRepositoryRulesetEditedPropChangesPropConditions] = ( + Field(default=UNSET) + ) rules: Missing[WebhookRepositoryRulesetEditedPropChangesPropRules] = Field( default=UNSET ) diff --git a/githubkit/versions/v2022_11_28/models/group_0731.py b/githubkit/versions/v2022_11_28/models/group_0731.py index 0177ac6b3..f795e8bbc 100644 --- a/githubkit/versions/v2022_11_28/models/group_0731.py +++ b/githubkit/versions/v2022_11_28/models/group_0731.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0732.py b/githubkit/versions/v2022_11_28/models/group_0732.py index 4b79f92bb..8aa902a1e 100644 --- a/githubkit/versions/v2022_11_28/models/group_0732.py +++ b/githubkit/versions/v2022_11_28/models/group_0732.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0733.py b/githubkit/versions/v2022_11_28/models/group_0733.py index 0f289277f..b6cdbd4d9 100644 --- a/githubkit/versions/v2022_11_28/models/group_0733.py +++ b/githubkit/versions/v2022_11_28/models/group_0733.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/v2022_11_28/models/group_0734.py b/githubkit/versions/v2022_11_28/models/group_0734.py index 34ff6dd4b..8e83b4de1 100644 --- a/githubkit/versions/v2022_11_28/models/group_0734.py +++ b/githubkit/versions/v2022_11_28/models/group_0734.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0735.py b/githubkit/versions/v2022_11_28/models/group_0735.py index 0a901498e..ab54bdf49 100644 --- a/githubkit/versions/v2022_11_28/models/group_0735.py +++ b/githubkit/versions/v2022_11_28/models/group_0735.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0736.py b/githubkit/versions/v2022_11_28/models/group_0736.py index b81b5b2cb..51ad63217 100644 --- a/githubkit/versions/v2022_11_28/models/group_0736.py +++ b/githubkit/versions/v2022_11_28/models/group_0736.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0737.py b/githubkit/versions/v2022_11_28/models/group_0737.py index c114b365f..80857a652 100644 --- a/githubkit/versions/v2022_11_28/models/group_0737.py +++ b/githubkit/versions/v2022_11_28/models/group_0737.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0738.py b/githubkit/versions/v2022_11_28/models/group_0738.py index c0108cfbb..d62f65e83 100644 --- a/githubkit/versions/v2022_11_28/models/group_0738.py +++ b/githubkit/versions/v2022_11_28/models/group_0738.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0739.py b/githubkit/versions/v2022_11_28/models/group_0739.py index 555115eed..526b4ff24 100644 --- a/githubkit/versions/v2022_11_28/models/group_0739.py +++ b/githubkit/versions/v2022_11_28/models/group_0739.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0740.py b/githubkit/versions/v2022_11_28/models/group_0740.py index ddca26f86..9ed9c69c0 100644 --- a/githubkit/versions/v2022_11_28/models/group_0740.py +++ b/githubkit/versions/v2022_11_28/models/group_0740.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0741.py b/githubkit/versions/v2022_11_28/models/group_0741.py index 3cb422ce9..f712fc967 100644 --- a/githubkit/versions/v2022_11_28/models/group_0741.py +++ b/githubkit/versions/v2022_11_28/models/group_0741.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0742.py b/githubkit/versions/v2022_11_28/models/group_0742.py index dbf3e969f..cbb4cda5c 100644 --- a/githubkit/versions/v2022_11_28/models/group_0742.py +++ b/githubkit/versions/v2022_11_28/models/group_0742.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0743.py b/githubkit/versions/v2022_11_28/models/group_0743.py index e86350fc4..940c799ea 100644 --- a/githubkit/versions/v2022_11_28/models/group_0743.py +++ b/githubkit/versions/v2022_11_28/models/group_0743.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0744.py b/githubkit/versions/v2022_11_28/models/group_0744.py index d7e742332..ef6279b0c 100644 --- a/githubkit/versions/v2022_11_28/models/group_0744.py +++ b/githubkit/versions/v2022_11_28/models/group_0744.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0745.py b/githubkit/versions/v2022_11_28/models/group_0745.py index 07ea6a447..d6c1a8544 100644 --- a/githubkit/versions/v2022_11_28/models/group_0745.py +++ b/githubkit/versions/v2022_11_28/models/group_0745.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0746.py b/githubkit/versions/v2022_11_28/models/group_0746.py index 4b8114f05..791ec8695 100644 --- a/githubkit/versions/v2022_11_28/models/group_0746.py +++ b/githubkit/versions/v2022_11_28/models/group_0746.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0747.py b/githubkit/versions/v2022_11_28/models/group_0747.py index ca2d50495..744b17b3b 100644 --- a/githubkit/versions/v2022_11_28/models/group_0747.py +++ b/githubkit/versions/v2022_11_28/models/group_0747.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0748.py b/githubkit/versions/v2022_11_28/models/group_0748.py index 169768f14..b523cab23 100644 --- a/githubkit/versions/v2022_11_28/models/group_0748.py +++ b/githubkit/versions/v2022_11_28/models/group_0748.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0749.py b/githubkit/versions/v2022_11_28/models/group_0749.py index 0f1f2f190..6666809f6 100644 --- a/githubkit/versions/v2022_11_28/models/group_0749.py +++ b/githubkit/versions/v2022_11_28/models/group_0749.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0750.py b/githubkit/versions/v2022_11_28/models/group_0750.py index 9290d9f90..67cd55b39 100644 --- a/githubkit/versions/v2022_11_28/models/group_0750.py +++ b/githubkit/versions/v2022_11_28/models/group_0750.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0751.py b/githubkit/versions/v2022_11_28/models/group_0751.py index 9a022bfd9..a0d031b92 100644 --- a/githubkit/versions/v2022_11_28/models/group_0751.py +++ b/githubkit/versions/v2022_11_28/models/group_0751.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0752.py b/githubkit/versions/v2022_11_28/models/group_0752.py index afdad24ff..df8545f7c 100644 --- a/githubkit/versions/v2022_11_28/models/group_0752.py +++ b/githubkit/versions/v2022_11_28/models/group_0752.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0753.py b/githubkit/versions/v2022_11_28/models/group_0753.py index a18112e83..c83fa093e 100644 --- a/githubkit/versions/v2022_11_28/models/group_0753.py +++ b/githubkit/versions/v2022_11_28/models/group_0753.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0754.py b/githubkit/versions/v2022_11_28/models/group_0754.py index a99d6702b..479129db4 100644 --- a/githubkit/versions/v2022_11_28/models/group_0754.py +++ b/githubkit/versions/v2022_11_28/models/group_0754.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0755.py b/githubkit/versions/v2022_11_28/models/group_0755.py index aabe01151..f830c8e98 100644 --- a/githubkit/versions/v2022_11_28/models/group_0755.py +++ b/githubkit/versions/v2022_11_28/models/group_0755.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0756.py b/githubkit/versions/v2022_11_28/models/group_0756.py index a4a1d6892..f4746fca5 100644 --- a/githubkit/versions/v2022_11_28/models/group_0756.py +++ b/githubkit/versions/v2022_11_28/models/group_0756.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0757.py b/githubkit/versions/v2022_11_28/models/group_0757.py index ee7a931b4..19c5ba149 100644 --- a/githubkit/versions/v2022_11_28/models/group_0757.py +++ b/githubkit/versions/v2022_11_28/models/group_0757.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0758.py b/githubkit/versions/v2022_11_28/models/group_0758.py index ed89df268..611d3daa0 100644 --- a/githubkit/versions/v2022_11_28/models/group_0758.py +++ b/githubkit/versions/v2022_11_28/models/group_0758.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0759.py b/githubkit/versions/v2022_11_28/models/group_0759.py index 2cdaafb47..875448bf5 100644 --- a/githubkit/versions/v2022_11_28/models/group_0759.py +++ b/githubkit/versions/v2022_11_28/models/group_0759.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0760.py b/githubkit/versions/v2022_11_28/models/group_0760.py index 030880637..fdb5585f4 100644 --- a/githubkit/versions/v2022_11_28/models/group_0760.py +++ b/githubkit/versions/v2022_11_28/models/group_0760.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0761.py b/githubkit/versions/v2022_11_28/models/group_0761.py index 598fb9e89..efae96c36 100644 --- a/githubkit/versions/v2022_11_28/models/group_0761.py +++ b/githubkit/versions/v2022_11_28/models/group_0761.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0762.py b/githubkit/versions/v2022_11_28/models/group_0762.py index ba6efe1ed..ab69b1cd9 100644 --- a/githubkit/versions/v2022_11_28/models/group_0762.py +++ b/githubkit/versions/v2022_11_28/models/group_0762.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0763.py b/githubkit/versions/v2022_11_28/models/group_0763.py index 0bf64ccc4..4d69c8c28 100644 --- a/githubkit/versions/v2022_11_28/models/group_0763.py +++ b/githubkit/versions/v2022_11_28/models/group_0763.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0764.py b/githubkit/versions/v2022_11_28/models/group_0764.py index 4736d61de..78390d058 100644 --- a/githubkit/versions/v2022_11_28/models/group_0764.py +++ b/githubkit/versions/v2022_11_28/models/group_0764.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal @@ -67,9 +66,9 @@ class WebhookSecurityAdvisoryPublishedPropSecurityAdvisory(GitHubModel): """ cvss: WebhookSecurityAdvisoryPublishedPropSecurityAdvisoryPropCvss = Field() - cwes: List[ - WebhookSecurityAdvisoryPublishedPropSecurityAdvisoryPropCwesItems - ] = Field() + cwes: List[WebhookSecurityAdvisoryPublishedPropSecurityAdvisoryPropCwesItems] = ( + Field() + ) description: str = Field() ghsa_id: str = Field() identifiers: List[ diff --git a/githubkit/versions/v2022_11_28/models/group_0765.py b/githubkit/versions/v2022_11_28/models/group_0765.py index 667e1b56b..b4397dd84 100644 --- a/githubkit/versions/v2022_11_28/models/group_0765.py +++ b/githubkit/versions/v2022_11_28/models/group_0765.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal @@ -67,9 +66,9 @@ class WebhookSecurityAdvisoryUpdatedPropSecurityAdvisory(GitHubModel): """ cvss: WebhookSecurityAdvisoryUpdatedPropSecurityAdvisoryPropCvss = Field() - cwes: List[ - WebhookSecurityAdvisoryUpdatedPropSecurityAdvisoryPropCwesItems - ] = Field() + cwes: List[WebhookSecurityAdvisoryUpdatedPropSecurityAdvisoryPropCwesItems] = ( + Field() + ) description: str = Field() ghsa_id: str = Field() identifiers: List[ diff --git a/githubkit/versions/v2022_11_28/models/group_0766.py b/githubkit/versions/v2022_11_28/models/group_0766.py index 122c72948..353ffa108 100644 --- a/githubkit/versions/v2022_11_28/models/group_0766.py +++ b/githubkit/versions/v2022_11_28/models/group_0766.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal @@ -67,9 +66,9 @@ class WebhookSecurityAdvisoryWithdrawnPropSecurityAdvisory(GitHubModel): """ cvss: WebhookSecurityAdvisoryWithdrawnPropSecurityAdvisoryPropCvss = Field() - cwes: List[ - WebhookSecurityAdvisoryWithdrawnPropSecurityAdvisoryPropCwesItems - ] = Field() + cwes: List[WebhookSecurityAdvisoryWithdrawnPropSecurityAdvisoryPropCwesItems] = ( + Field() + ) description: str = Field() ghsa_id: str = Field() identifiers: List[ diff --git a/githubkit/versions/v2022_11_28/models/group_0767.py b/githubkit/versions/v2022_11_28/models/group_0767.py index 4fdf6704d..61965261f 100644 --- a/githubkit/versions/v2022_11_28/models/group_0767.py +++ b/githubkit/versions/v2022_11_28/models/group_0767.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0768.py b/githubkit/versions/v2022_11_28/models/group_0768.py index afe5c072e..e1b74354a 100644 --- a/githubkit/versions/v2022_11_28/models/group_0768.py +++ b/githubkit/versions/v2022_11_28/models/group_0768.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0769.py b/githubkit/versions/v2022_11_28/models/group_0769.py index 6754e2d12..608c6e539 100644 --- a/githubkit/versions/v2022_11_28/models/group_0769.py +++ b/githubkit/versions/v2022_11_28/models/group_0769.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0770.py b/githubkit/versions/v2022_11_28/models/group_0770.py index 6bb368a45..dd671f514 100644 --- a/githubkit/versions/v2022_11_28/models/group_0770.py +++ b/githubkit/versions/v2022_11_28/models/group_0770.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal @@ -60,9 +59,9 @@ class WebhookSponsorshipCancelledPropSponsorship(GitHubModel): """WebhookSponsorshipCancelledPropSponsorship""" created_at: str = Field() - maintainer: Missing[ - WebhookSponsorshipCancelledPropSponsorshipPropMaintainer - ] = Field(default=UNSET) + maintainer: Missing[WebhookSponsorshipCancelledPropSponsorshipPropMaintainer] = ( + Field(default=UNSET) + ) node_id: str = Field() privacy_level: str = Field() sponsor: Union[WebhookSponsorshipCancelledPropSponsorshipPropSponsor, None] = Field( diff --git a/githubkit/versions/v2022_11_28/models/group_0771.py b/githubkit/versions/v2022_11_28/models/group_0771.py index fcb00c78e..984a07e66 100644 --- a/githubkit/versions/v2022_11_28/models/group_0771.py +++ b/githubkit/versions/v2022_11_28/models/group_0771.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0772.py b/githubkit/versions/v2022_11_28/models/group_0772.py index feda72646..e8241dd67 100644 --- a/githubkit/versions/v2022_11_28/models/group_0772.py +++ b/githubkit/versions/v2022_11_28/models/group_0772.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal @@ -86,9 +85,9 @@ class WebhookSponsorshipEditedPropSponsorship(GitHubModel): sponsor: Union[WebhookSponsorshipEditedPropSponsorshipPropSponsor, None] = Field( title="User" ) - sponsorable: Union[ - WebhookSponsorshipEditedPropSponsorshipPropSponsorable, None - ] = Field(title="User") + sponsorable: Union[WebhookSponsorshipEditedPropSponsorshipPropSponsorable, None] = ( + Field(title="User") + ) tier: WebhookSponsorshipEditedPropSponsorshipPropTier = Field( title="Sponsorship Tier", description="The `tier_changed` and `pending_tier_change` will include the original tier before the change or pending change. For more information, see the pending tier change payload.", diff --git a/githubkit/versions/v2022_11_28/models/group_0773.py b/githubkit/versions/v2022_11_28/models/group_0773.py index 0cc5e56de..6586c5329 100644 --- a/githubkit/versions/v2022_11_28/models/group_0773.py +++ b/githubkit/versions/v2022_11_28/models/group_0773.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0774.py b/githubkit/versions/v2022_11_28/models/group_0774.py index b5f984859..f204dad54 100644 --- a/githubkit/versions/v2022_11_28/models/group_0774.py +++ b/githubkit/versions/v2022_11_28/models/group_0774.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0775.py b/githubkit/versions/v2022_11_28/models/group_0775.py index 35a7fc82a..750286d7e 100644 --- a/githubkit/versions/v2022_11_28/models/group_0775.py +++ b/githubkit/versions/v2022_11_28/models/group_0775.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal @@ -61,14 +60,14 @@ class WebhookSponsorshipTierChangedPropSponsorship(GitHubModel): """WebhookSponsorshipTierChangedPropSponsorship""" created_at: str = Field() - maintainer: Missing[ - WebhookSponsorshipTierChangedPropSponsorshipPropMaintainer - ] = Field(default=UNSET) + maintainer: Missing[WebhookSponsorshipTierChangedPropSponsorshipPropMaintainer] = ( + Field(default=UNSET) + ) node_id: str = Field() privacy_level: str = Field() - sponsor: Union[ - WebhookSponsorshipTierChangedPropSponsorshipPropSponsor, None - ] = Field(title="User") + sponsor: Union[WebhookSponsorshipTierChangedPropSponsorshipPropSponsor, None] = ( + Field(title="User") + ) sponsorable: Union[ WebhookSponsorshipTierChangedPropSponsorshipPropSponsorable, None ] = Field(title="User") diff --git a/githubkit/versions/v2022_11_28/models/group_0776.py b/githubkit/versions/v2022_11_28/models/group_0776.py index ccd317b69..7577538af 100644 --- a/githubkit/versions/v2022_11_28/models/group_0776.py +++ b/githubkit/versions/v2022_11_28/models/group_0776.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0777.py b/githubkit/versions/v2022_11_28/models/group_0777.py index 2f9879420..648ce22e5 100644 --- a/githubkit/versions/v2022_11_28/models/group_0777.py +++ b/githubkit/versions/v2022_11_28/models/group_0777.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0778.py b/githubkit/versions/v2022_11_28/models/group_0778.py index 44bc22250..b71e65646 100644 --- a/githubkit/versions/v2022_11_28/models/group_0778.py +++ b/githubkit/versions/v2022_11_28/models/group_0778.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0779.py b/githubkit/versions/v2022_11_28/models/group_0779.py index a6a70911b..0c6cb9758 100644 --- a/githubkit/versions/v2022_11_28/models/group_0779.py +++ b/githubkit/versions/v2022_11_28/models/group_0779.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0780.py b/githubkit/versions/v2022_11_28/models/group_0780.py index d03f6c71f..bae400dac 100644 --- a/githubkit/versions/v2022_11_28/models/group_0780.py +++ b/githubkit/versions/v2022_11_28/models/group_0780.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0781.py b/githubkit/versions/v2022_11_28/models/group_0781.py index 810a3d7f0..16064411f 100644 --- a/githubkit/versions/v2022_11_28/models/group_0781.py +++ b/githubkit/versions/v2022_11_28/models/group_0781.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0782.py b/githubkit/versions/v2022_11_28/models/group_0782.py index ccc562c99..01ba88f8b 100644 --- a/githubkit/versions/v2022_11_28/models/group_0782.py +++ b/githubkit/versions/v2022_11_28/models/group_0782.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0783.py b/githubkit/versions/v2022_11_28/models/group_0783.py index 1483b94ef..664da2d5e 100644 --- a/githubkit/versions/v2022_11_28/models/group_0783.py +++ b/githubkit/versions/v2022_11_28/models/group_0783.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal @@ -104,10 +103,10 @@ class WebhookTeamAddPropTeamPropParent(GitHubModel): description="Permission that the team will have for its repositories" ) privacy: Literal["open", "closed", "secret"] = Field() - notification_setting: Literal[ - "notifications_enabled", "notifications_disabled" - ] = Field( - description="Whether team members will receive notifications when their team is @mentioned" + notification_setting: Literal["notifications_enabled", "notifications_disabled"] = ( + Field( + description="Whether team members will receive notifications when their team is @mentioned" + ) ) repositories_url: str = Field() slug: str = Field() diff --git a/githubkit/versions/v2022_11_28/models/group_0784.py b/githubkit/versions/v2022_11_28/models/group_0784.py index 1de9674ca..d3b16c387 100644 --- a/githubkit/versions/v2022_11_28/models/group_0784.py +++ b/githubkit/versions/v2022_11_28/models/group_0784.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -142,9 +141,9 @@ class WebhookTeamAddedToRepositoryPropRepository(GitHubModel): labels_url: str = Field() language: Union[str, None] = Field() languages_url: str = Field() - license_: Union[ - WebhookTeamAddedToRepositoryPropRepositoryPropLicense, None - ] = Field(alias="license", title="License") + license_: Union[WebhookTeamAddedToRepositoryPropRepositoryPropLicense, None] = ( + Field(alias="license", title="License") + ) master_branch: Missing[str] = Field(default=UNSET) merges_url: str = Field() milestones_url: str = Field() @@ -158,9 +157,9 @@ class WebhookTeamAddedToRepositoryPropRepository(GitHubModel): owner: Union[WebhookTeamAddedToRepositoryPropRepositoryPropOwner, None] = Field( title="User" ) - permissions: Missing[ - WebhookTeamAddedToRepositoryPropRepositoryPropPermissions - ] = Field(default=UNSET) + permissions: Missing[WebhookTeamAddedToRepositoryPropRepositoryPropPermissions] = ( + Field(default=UNSET) + ) private: bool = Field(description="Whether the repository is private or public.") public: Missing[bool] = Field(default=UNSET) pulls_url: str = Field() @@ -257,9 +256,9 @@ class WebhookTeamAddedToRepositoryPropTeam(GitHubModel): members_url: Missing[str] = Field(default=UNSET) name: str = Field(description="Name of the team") node_id: Missing[str] = Field(default=UNSET) - parent: Missing[ - Union[WebhookTeamAddedToRepositoryPropTeamPropParent, None] - ] = Field(default=UNSET) + parent: Missing[Union[WebhookTeamAddedToRepositoryPropTeamPropParent, None]] = ( + Field(default=UNSET) + ) permission: Missing[str] = Field( default=UNSET, description="Permission that the team will have for its repositories", @@ -289,10 +288,10 @@ class WebhookTeamAddedToRepositoryPropTeamPropParent(GitHubModel): description="Permission that the team will have for its repositories" ) privacy: Literal["open", "closed", "secret"] = Field() - notification_setting: Literal[ - "notifications_enabled", "notifications_disabled" - ] = Field( - description="Whether team members will receive notifications when their team is @mentioned" + notification_setting: Literal["notifications_enabled", "notifications_disabled"] = ( + Field( + description="Whether team members will receive notifications when their team is @mentioned" + ) ) repositories_url: str = Field() slug: str = Field() diff --git a/githubkit/versions/v2022_11_28/models/group_0785.py b/githubkit/versions/v2022_11_28/models/group_0785.py index aee8c9c24..ff08588ca 100644 --- a/githubkit/versions/v2022_11_28/models/group_0785.py +++ b/githubkit/versions/v2022_11_28/models/group_0785.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -93,11 +92,11 @@ class WebhookTeamCreatedPropRepository(GitHubModel): contents_url: str = Field() contributors_url: str = Field() created_at: Union[int, datetime] = Field() - custom_properties: Missing[ - WebhookTeamCreatedPropRepositoryPropCustomProperties - ] = Field( - default=UNSET, - description="The custom properties that were defined for the repository. The keys are the custom property names, and the values are the corresponding custom property values.", + custom_properties: Missing[WebhookTeamCreatedPropRepositoryPropCustomProperties] = ( + Field( + default=UNSET, + description="The custom properties that were defined for the repository. The keys are the custom property names, and the values are the corresponding custom property values.", + ) ) default_branch: str = Field(description="The default branch of the repository.") delete_branch_on_merge: Missing[bool] = Field( @@ -286,10 +285,10 @@ class WebhookTeamCreatedPropTeamPropParent(GitHubModel): description="Permission that the team will have for its repositories" ) privacy: Literal["open", "closed", "secret"] = Field() - notification_setting: Literal[ - "notifications_enabled", "notifications_disabled" - ] = Field( - description="Whether team members will receive notifications when their team is @mentioned" + notification_setting: Literal["notifications_enabled", "notifications_disabled"] = ( + Field( + description="Whether team members will receive notifications when their team is @mentioned" + ) ) repositories_url: str = Field() slug: str = Field() diff --git a/githubkit/versions/v2022_11_28/models/group_0786.py b/githubkit/versions/v2022_11_28/models/group_0786.py index cbc4b5ebc..9ed6c9fbc 100644 --- a/githubkit/versions/v2022_11_28/models/group_0786.py +++ b/githubkit/versions/v2022_11_28/models/group_0786.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -94,11 +93,11 @@ class WebhookTeamDeletedPropRepository(GitHubModel): contents_url: str = Field() contributors_url: str = Field() created_at: Union[int, datetime] = Field() - custom_properties: Missing[ - WebhookTeamDeletedPropRepositoryPropCustomProperties - ] = Field( - default=UNSET, - description="The custom properties that were defined for the repository. The keys are the custom property names, and the values are the corresponding custom property values.", + custom_properties: Missing[WebhookTeamDeletedPropRepositoryPropCustomProperties] = ( + Field( + default=UNSET, + description="The custom properties that were defined for the repository. The keys are the custom property names, and the values are the corresponding custom property values.", + ) ) default_branch: str = Field(description="The default branch of the repository.") delete_branch_on_merge: Missing[bool] = Field( @@ -287,10 +286,10 @@ class WebhookTeamDeletedPropTeamPropParent(GitHubModel): description="Permission that the team will have for its repositories" ) privacy: Literal["open", "closed", "secret"] = Field() - notification_setting: Literal[ - "notifications_enabled", "notifications_disabled" - ] = Field( - description="Whether team members will receive notifications when their team is @mentioned" + notification_setting: Literal["notifications_enabled", "notifications_disabled"] = ( + Field( + description="Whether team members will receive notifications when their team is @mentioned" + ) ) repositories_url: str = Field() slug: str = Field() diff --git a/githubkit/versions/v2022_11_28/models/group_0787.py b/githubkit/versions/v2022_11_28/models/group_0787.py index 2cf1bcbf3..120692752 100644 --- a/githubkit/versions/v2022_11_28/models/group_0787.py +++ b/githubkit/versions/v2022_11_28/models/group_0787.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -96,11 +95,11 @@ class WebhookTeamEditedPropRepository(GitHubModel): contents_url: str = Field() contributors_url: str = Field() created_at: Union[int, datetime] = Field() - custom_properties: Missing[ - WebhookTeamEditedPropRepositoryPropCustomProperties - ] = Field( - default=UNSET, - description="The custom properties that were defined for the repository. The keys are the custom property names, and the values are the corresponding custom property values.", + custom_properties: Missing[WebhookTeamEditedPropRepositoryPropCustomProperties] = ( + Field( + default=UNSET, + description="The custom properties that were defined for the repository. The keys are the custom property names, and the values are the corresponding custom property values.", + ) ) default_branch: str = Field(description="The default branch of the repository.") delete_branch_on_merge: Missing[bool] = Field( @@ -289,10 +288,10 @@ class WebhookTeamEditedPropTeamPropParent(GitHubModel): description="Permission that the team will have for its repositories" ) privacy: Literal["open", "closed", "secret"] = Field() - notification_setting: Literal[ - "notifications_enabled", "notifications_disabled" - ] = Field( - description="Whether team members will receive notifications when their team is @mentioned" + notification_setting: Literal["notifications_enabled", "notifications_disabled"] = ( + Field( + description="Whether team members will receive notifications when their team is @mentioned" + ) ) repositories_url: str = Field() slug: str = Field() diff --git a/githubkit/versions/v2022_11_28/models/group_0788.py b/githubkit/versions/v2022_11_28/models/group_0788.py index d232ab8cd..0723b8748 100644 --- a/githubkit/versions/v2022_11_28/models/group_0788.py +++ b/githubkit/versions/v2022_11_28/models/group_0788.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -141,9 +140,9 @@ class WebhookTeamRemovedFromRepositoryPropRepository(GitHubModel): labels_url: str = Field() language: Union[str, None] = Field() languages_url: str = Field() - license_: Union[ - WebhookTeamRemovedFromRepositoryPropRepositoryPropLicense, None - ] = Field(alias="license", title="License") + license_: Union[WebhookTeamRemovedFromRepositoryPropRepositoryPropLicense, None] = ( + Field(alias="license", title="License") + ) master_branch: Missing[str] = Field(default=UNSET) merges_url: str = Field() milestones_url: str = Field() @@ -258,9 +257,9 @@ class WebhookTeamRemovedFromRepositoryPropTeam(GitHubModel): members_url: Missing[str] = Field(default=UNSET) name: str = Field(description="Name of the team") node_id: Missing[str] = Field(default=UNSET) - parent: Missing[ - Union[WebhookTeamRemovedFromRepositoryPropTeamPropParent, None] - ] = Field(default=UNSET) + parent: Missing[Union[WebhookTeamRemovedFromRepositoryPropTeamPropParent, None]] = ( + Field(default=UNSET) + ) permission: Missing[str] = Field( default=UNSET, description="Permission that the team will have for its repositories", @@ -290,10 +289,10 @@ class WebhookTeamRemovedFromRepositoryPropTeamPropParent(GitHubModel): description="Permission that the team will have for its repositories" ) privacy: Literal["open", "closed", "secret"] = Field() - notification_setting: Literal[ - "notifications_enabled", "notifications_disabled" - ] = Field( - description="Whether team members will receive notifications when their team is @mentioned" + notification_setting: Literal["notifications_enabled", "notifications_disabled"] = ( + Field( + description="Whether team members will receive notifications when their team is @mentioned" + ) ) repositories_url: str = Field() slug: str = Field() diff --git a/githubkit/versions/v2022_11_28/models/group_0789.py b/githubkit/versions/v2022_11_28/models/group_0789.py index ec1eebd95..20c7c64ee 100644 --- a/githubkit/versions/v2022_11_28/models/group_0789.py +++ b/githubkit/versions/v2022_11_28/models/group_0789.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0790.py b/githubkit/versions/v2022_11_28/models/group_0790.py index e4a752761..7dae87c9c 100644 --- a/githubkit/versions/v2022_11_28/models/group_0790.py +++ b/githubkit/versions/v2022_11_28/models/group_0790.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0791.py b/githubkit/versions/v2022_11_28/models/group_0791.py index 2f6501b07..29ebaeb44 100644 --- a/githubkit/versions/v2022_11_28/models/group_0791.py +++ b/githubkit/versions/v2022_11_28/models/group_0791.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal @@ -117,9 +116,9 @@ class WebhookWorkflowJobCompletedPropWorkflowJobMergedSteps(GitHubModel): """WebhookWorkflowJobCompletedPropWorkflowJobMergedSteps""" completed_at: Union[str, None] = Field() - conclusion: Union[ - None, Literal["failure", "skipped", "success", "cancelled"] - ] = Field() + conclusion: Union[None, Literal["failure", "skipped", "success", "cancelled"]] = ( + Field() + ) name: str = Field() number: int = Field() started_at: Union[str, None] = Field() diff --git a/githubkit/versions/v2022_11_28/models/group_0792.py b/githubkit/versions/v2022_11_28/models/group_0792.py index f319f792f..7b539ff6d 100644 --- a/githubkit/versions/v2022_11_28/models/group_0792.py +++ b/githubkit/versions/v2022_11_28/models/group_0792.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal @@ -68,9 +67,9 @@ class WebhookWorkflowJobCompletedPropWorkflowJobAllof0(GitHubModel): ) head_branch: Union[str, None] = Field(description="The name of the current branch.") workflow_name: Union[str, None] = Field(description="The name of the workflow.") - steps: List[ - WebhookWorkflowJobCompletedPropWorkflowJobAllof0PropStepsItems - ] = Field() + steps: List[WebhookWorkflowJobCompletedPropWorkflowJobAllof0PropStepsItems] = ( + Field() + ) url: str = Field() @@ -78,9 +77,9 @@ class WebhookWorkflowJobCompletedPropWorkflowJobAllof0PropStepsItems(GitHubModel """Workflow Step""" completed_at: Union[str, None] = Field() - conclusion: Union[ - None, Literal["failure", "skipped", "success", "cancelled"] - ] = Field() + conclusion: Union[None, Literal["failure", "skipped", "success", "cancelled"]] = ( + Field() + ) name: str = Field() number: int = Field() started_at: Union[str, None] = Field() diff --git a/githubkit/versions/v2022_11_28/models/group_0793.py b/githubkit/versions/v2022_11_28/models/group_0793.py index 0351e88d3..b2813755e 100644 --- a/githubkit/versions/v2022_11_28/models/group_0793.py +++ b/githubkit/versions/v2022_11_28/models/group_0793.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0794.py b/githubkit/versions/v2022_11_28/models/group_0794.py index 225e309d1..dbc83d118 100644 --- a/githubkit/versions/v2022_11_28/models/group_0794.py +++ b/githubkit/versions/v2022_11_28/models/group_0794.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal @@ -66,9 +65,9 @@ class WebhookWorkflowJobInProgressPropWorkflowJob(GitHubModel): check_run_url: str = Field() completed_at: Union[Union[str, None], None] = Field() - conclusion: Union[ - Literal["success", "failure", "cancelled", "neutral"], None - ] = Field() + conclusion: Union[Literal["success", "failure", "cancelled", "neutral"], None] = ( + Field() + ) created_at: str = Field(description="The time that the job created.") head_sha: str = Field() html_url: str = Field() @@ -111,9 +110,9 @@ class WebhookWorkflowJobInProgressPropWorkflowJobMergedSteps(GitHubModel): """WebhookWorkflowJobInProgressPropWorkflowJobMergedSteps""" completed_at: Union[Union[str, None], None] = Field() - conclusion: Union[ - Literal["failure", "skipped", "success", "cancelled"], None - ] = Field() + conclusion: Union[Literal["failure", "skipped", "success", "cancelled"], None] = ( + Field() + ) name: str = Field() number: int = Field() started_at: Union[Union[str, None], None] = Field() diff --git a/githubkit/versions/v2022_11_28/models/group_0795.py b/githubkit/versions/v2022_11_28/models/group_0795.py index 87205275d..07bdbfbc8 100644 --- a/githubkit/versions/v2022_11_28/models/group_0795.py +++ b/githubkit/versions/v2022_11_28/models/group_0795.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal @@ -26,9 +25,9 @@ class WebhookWorkflowJobInProgressPropWorkflowJobAllof0(GitHubModel): check_run_url: str = Field() completed_at: Union[str, None] = Field() - conclusion: Union[ - None, Literal["success", "failure", "cancelled", "neutral"] - ] = Field() + conclusion: Union[None, Literal["success", "failure", "cancelled", "neutral"]] = ( + Field() + ) created_at: str = Field(description="The time that the job created.") head_sha: str = Field() html_url: str = Field() @@ -59,9 +58,9 @@ class WebhookWorkflowJobInProgressPropWorkflowJobAllof0(GitHubModel): ) head_branch: Union[str, None] = Field(description="The name of the current branch.") workflow_name: Union[str, None] = Field(description="The name of the workflow.") - steps: List[ - WebhookWorkflowJobInProgressPropWorkflowJobAllof0PropStepsItems - ] = Field() + steps: List[WebhookWorkflowJobInProgressPropWorkflowJobAllof0PropStepsItems] = ( + Field() + ) url: str = Field() @@ -69,9 +68,9 @@ class WebhookWorkflowJobInProgressPropWorkflowJobAllof0PropStepsItems(GitHubMode """Workflow Step""" completed_at: Union[str, None] = Field() - conclusion: Union[ - None, Literal["failure", "skipped", "success", "cancelled"] - ] = Field() + conclusion: Union[None, Literal["failure", "skipped", "success", "cancelled"]] = ( + Field() + ) name: str = Field() number: int = Field() started_at: Union[str, None] = Field() diff --git a/githubkit/versions/v2022_11_28/models/group_0796.py b/githubkit/versions/v2022_11_28/models/group_0796.py index ad0048230..c968cd99f 100644 --- a/githubkit/versions/v2022_11_28/models/group_0796.py +++ b/githubkit/versions/v2022_11_28/models/group_0796.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal @@ -49,9 +48,9 @@ class WebhookWorkflowJobInProgressPropWorkflowJobAllof1(GitHubModel): workflow_name: Missing[Union[str, None]] = Field( default=UNSET, description="The name of the workflow." ) - steps: List[ - WebhookWorkflowJobInProgressPropWorkflowJobAllof1PropStepsItems - ] = Field() + steps: List[WebhookWorkflowJobInProgressPropWorkflowJobAllof1PropStepsItems] = ( + Field() + ) url: Missing[str] = Field(default=UNSET) diff --git a/githubkit/versions/v2022_11_28/models/group_0797.py b/githubkit/versions/v2022_11_28/models/group_0797.py index d15adbe04..da07a3871 100644 --- a/githubkit/versions/v2022_11_28/models/group_0797.py +++ b/githubkit/versions/v2022_11_28/models/group_0797.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -94,9 +93,9 @@ class WebhookWorkflowJobQueuedPropWorkflowJobPropStepsItems(GitHubModel): """Workflow Step""" completed_at: Union[str, None] = Field() - conclusion: Union[ - None, Literal["failure", "skipped", "success", "cancelled"] - ] = Field() + conclusion: Union[None, Literal["failure", "skipped", "success", "cancelled"]] = ( + Field() + ) name: str = Field() number: int = Field() started_at: Union[str, None] = Field() diff --git a/githubkit/versions/v2022_11_28/models/group_0798.py b/githubkit/versions/v2022_11_28/models/group_0798.py index ec09dd152..b120776c6 100644 --- a/githubkit/versions/v2022_11_28/models/group_0798.py +++ b/githubkit/versions/v2022_11_28/models/group_0798.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -94,15 +93,15 @@ class WebhookWorkflowJobWaitingPropWorkflowJobPropStepsItems(GitHubModel): """Workflow Step""" completed_at: Union[str, None] = Field() - conclusion: Union[ - None, Literal["failure", "skipped", "success", "cancelled"] - ] = Field() + conclusion: Union[None, Literal["failure", "skipped", "success", "cancelled"]] = ( + Field() + ) name: str = Field() number: int = Field() started_at: Union[str, None] = Field() - status: Literal[ - "completed", "in_progress", "queued", "pending", "waiting" - ] = Field() + status: Literal["completed", "in_progress", "queued", "pending", "waiting"] = ( + Field() + ) model_rebuild(WebhookWorkflowJobWaiting) diff --git a/githubkit/versions/v2022_11_28/models/group_0799.py b/githubkit/versions/v2022_11_28/models/group_0799.py index fc758daef..ea879fb47 100644 --- a/githubkit/versions/v2022_11_28/models/group_0799.py +++ b/githubkit/versions/v2022_11_28/models/group_0799.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0800.py b/githubkit/versions/v2022_11_28/models/group_0800.py index da7b69b2d..1f335873d 100644 --- a/githubkit/versions/v2022_11_28/models/group_0800.py +++ b/githubkit/versions/v2022_11_28/models/group_0800.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0801.py b/githubkit/versions/v2022_11_28/models/group_0801.py index 78e049999..0c130996a 100644 --- a/githubkit/versions/v2022_11_28/models/group_0801.py +++ b/githubkit/versions/v2022_11_28/models/group_0801.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -30,9 +29,9 @@ class WebhookWorkflowRunCompletedPropWorkflowRunAllof0(GitHubModel): """Workflow Run""" - actor: Union[ - WebhookWorkflowRunCompletedPropWorkflowRunAllof0PropActor, None - ] = Field(title="User") + actor: Union[WebhookWorkflowRunCompletedPropWorkflowRunAllof0PropActor, None] = ( + Field(title="User") + ) artifacts_url: str = Field() cancel_url: str = Field() check_suite_id: int = Field() diff --git a/githubkit/versions/v2022_11_28/models/group_0802.py b/githubkit/versions/v2022_11_28/models/group_0802.py index b6337c91f..c711bf3bc 100644 --- a/githubkit/versions/v2022_11_28/models/group_0802.py +++ b/githubkit/versions/v2022_11_28/models/group_0802.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0803.py b/githubkit/versions/v2022_11_28/models/group_0803.py index ad8f9c918..a66e7b627 100644 --- a/githubkit/versions/v2022_11_28/models/group_0803.py +++ b/githubkit/versions/v2022_11_28/models/group_0803.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0804.py b/githubkit/versions/v2022_11_28/models/group_0804.py index effd314a8..0d70af4ab 100644 --- a/githubkit/versions/v2022_11_28/models/group_0804.py +++ b/githubkit/versions/v2022_11_28/models/group_0804.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0805.py b/githubkit/versions/v2022_11_28/models/group_0805.py index e54c5b0c6..7ffa1d25d 100644 --- a/githubkit/versions/v2022_11_28/models/group_0805.py +++ b/githubkit/versions/v2022_11_28/models/group_0805.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0806.py b/githubkit/versions/v2022_11_28/models/group_0806.py index 7b9c18936..99890d65e 100644 --- a/githubkit/versions/v2022_11_28/models/group_0806.py +++ b/githubkit/versions/v2022_11_28/models/group_0806.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0807.py b/githubkit/versions/v2022_11_28/models/group_0807.py index d5f306cc8..64d33a58a 100644 --- a/githubkit/versions/v2022_11_28/models/group_0807.py +++ b/githubkit/versions/v2022_11_28/models/group_0807.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0808.py b/githubkit/versions/v2022_11_28/models/group_0808.py index f85234020..f5fd9d22f 100644 --- a/githubkit/versions/v2022_11_28/models/group_0808.py +++ b/githubkit/versions/v2022_11_28/models/group_0808.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -82,9 +81,9 @@ class WebhookWorkflowRunInProgressPropWorkflowRun(GitHubModel): run_attempt: int = Field() run_number: int = Field() run_started_at: datetime = Field() - status: Literal[ - "requested", "in_progress", "completed", "queued", "pending" - ] = Field() + status: Literal["requested", "in_progress", "completed", "queued", "pending"] = ( + Field() + ) triggering_actor: WebhookWorkflowRunInProgressPropWorkflowRunMergedTriggeringActor = Field() updated_at: datetime = Field() url: str = Field() diff --git a/githubkit/versions/v2022_11_28/models/group_0809.py b/githubkit/versions/v2022_11_28/models/group_0809.py index 7b839c96b..1554ae87f 100644 --- a/githubkit/versions/v2022_11_28/models/group_0809.py +++ b/githubkit/versions/v2022_11_28/models/group_0809.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -30,9 +29,9 @@ class WebhookWorkflowRunInProgressPropWorkflowRunAllof0(GitHubModel): """Workflow Run""" - actor: Union[ - WebhookWorkflowRunInProgressPropWorkflowRunAllof0PropActor, None - ] = Field(title="User") + actor: Union[WebhookWorkflowRunInProgressPropWorkflowRunAllof0PropActor, None] = ( + Field(title="User") + ) artifacts_url: str = Field() cancel_url: str = Field() check_suite_id: int = Field() @@ -87,9 +86,9 @@ class WebhookWorkflowRunInProgressPropWorkflowRunAllof0(GitHubModel): run_attempt: int = Field() run_number: int = Field() run_started_at: datetime = Field() - status: Literal[ - "requested", "in_progress", "completed", "queued", "pending" - ] = Field() + status: Literal["requested", "in_progress", "completed", "queued", "pending"] = ( + Field() + ) triggering_actor: Union[ WebhookWorkflowRunInProgressPropWorkflowRunAllof0PropTriggeringActor, None ] = Field(title="User") diff --git a/githubkit/versions/v2022_11_28/models/group_0810.py b/githubkit/versions/v2022_11_28/models/group_0810.py index 2c35e4be4..8a2f9ffb9 100644 --- a/githubkit/versions/v2022_11_28/models/group_0810.py +++ b/githubkit/versions/v2022_11_28/models/group_0810.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0811.py b/githubkit/versions/v2022_11_28/models/group_0811.py index 7de2dc1e4..244200532 100644 --- a/githubkit/versions/v2022_11_28/models/group_0811.py +++ b/githubkit/versions/v2022_11_28/models/group_0811.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0812.py b/githubkit/versions/v2022_11_28/models/group_0812.py index 7e0196770..7e46d6f16 100644 --- a/githubkit/versions/v2022_11_28/models/group_0812.py +++ b/githubkit/versions/v2022_11_28/models/group_0812.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0813.py b/githubkit/versions/v2022_11_28/models/group_0813.py index 9c811c3f9..1fd521272 100644 --- a/githubkit/versions/v2022_11_28/models/group_0813.py +++ b/githubkit/versions/v2022_11_28/models/group_0813.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0814.py b/githubkit/versions/v2022_11_28/models/group_0814.py index a0f9ac9ce..9aebe4c38 100644 --- a/githubkit/versions/v2022_11_28/models/group_0814.py +++ b/githubkit/versions/v2022_11_28/models/group_0814.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0815.py b/githubkit/versions/v2022_11_28/models/group_0815.py index 687beecf9..f2743114f 100644 --- a/githubkit/versions/v2022_11_28/models/group_0815.py +++ b/githubkit/versions/v2022_11_28/models/group_0815.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0816.py b/githubkit/versions/v2022_11_28/models/group_0816.py index e15bcbea4..7644fe550 100644 --- a/githubkit/versions/v2022_11_28/models/group_0816.py +++ b/githubkit/versions/v2022_11_28/models/group_0816.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0817.py b/githubkit/versions/v2022_11_28/models/group_0817.py index f24ae3553..d16ddbf37 100644 --- a/githubkit/versions/v2022_11_28/models/group_0817.py +++ b/githubkit/versions/v2022_11_28/models/group_0817.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0818.py b/githubkit/versions/v2022_11_28/models/group_0818.py index 20217c309..97751730b 100644 --- a/githubkit/versions/v2022_11_28/models/group_0818.py +++ b/githubkit/versions/v2022_11_28/models/group_0818.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0819.py b/githubkit/versions/v2022_11_28/models/group_0819.py index 074805ac3..406984575 100644 --- a/githubkit/versions/v2022_11_28/models/group_0819.py +++ b/githubkit/versions/v2022_11_28/models/group_0819.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from githubkit.compat import GitHubModel, model_rebuild diff --git a/githubkit/versions/v2022_11_28/models/group_0820.py b/githubkit/versions/v2022_11_28/models/group_0820.py index 4e966b387..dc85ce165 100644 --- a/githubkit/versions/v2022_11_28/models/group_0820.py +++ b/githubkit/versions/v2022_11_28/models/group_0820.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0821.py b/githubkit/versions/v2022_11_28/models/group_0821.py index fad0edd6d..33e9e3dcc 100644 --- a/githubkit/versions/v2022_11_28/models/group_0821.py +++ b/githubkit/versions/v2022_11_28/models/group_0821.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0822.py b/githubkit/versions/v2022_11_28/models/group_0822.py index 25b501707..13773092a 100644 --- a/githubkit/versions/v2022_11_28/models/group_0822.py +++ b/githubkit/versions/v2022_11_28/models/group_0822.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0823.py b/githubkit/versions/v2022_11_28/models/group_0823.py index 9f31d787a..585475cf4 100644 --- a/githubkit/versions/v2022_11_28/models/group_0823.py +++ b/githubkit/versions/v2022_11_28/models/group_0823.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0824.py b/githubkit/versions/v2022_11_28/models/group_0824.py index bfa527e78..a2c5766c1 100644 --- a/githubkit/versions/v2022_11_28/models/group_0824.py +++ b/githubkit/versions/v2022_11_28/models/group_0824.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0825.py b/githubkit/versions/v2022_11_28/models/group_0825.py index 4ba4b78af..1d891acfc 100644 --- a/githubkit/versions/v2022_11_28/models/group_0825.py +++ b/githubkit/versions/v2022_11_28/models/group_0825.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0826.py b/githubkit/versions/v2022_11_28/models/group_0826.py index 0b290ba9b..152fcb757 100644 --- a/githubkit/versions/v2022_11_28/models/group_0826.py +++ b/githubkit/versions/v2022_11_28/models/group_0826.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from githubkit.compat import ExtraGitHubModel, model_rebuild diff --git a/githubkit/versions/v2022_11_28/models/group_0827.py b/githubkit/versions/v2022_11_28/models/group_0827.py index 7489ca0e6..42e1c20e8 100644 --- a/githubkit/versions/v2022_11_28/models/group_0827.py +++ b/githubkit/versions/v2022_11_28/models/group_0827.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0828.py b/githubkit/versions/v2022_11_28/models/group_0828.py index 66bef193e..8cbcddfe6 100644 --- a/githubkit/versions/v2022_11_28/models/group_0828.py +++ b/githubkit/versions/v2022_11_28/models/group_0828.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0829.py b/githubkit/versions/v2022_11_28/models/group_0829.py index e34509cf7..aed3fa1a8 100644 --- a/githubkit/versions/v2022_11_28/models/group_0829.py +++ b/githubkit/versions/v2022_11_28/models/group_0829.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0830.py b/githubkit/versions/v2022_11_28/models/group_0830.py index c3e0fd8e6..351ebec68 100644 --- a/githubkit/versions/v2022_11_28/models/group_0830.py +++ b/githubkit/versions/v2022_11_28/models/group_0830.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0831.py b/githubkit/versions/v2022_11_28/models/group_0831.py index cdfd053f8..4da522baf 100644 --- a/githubkit/versions/v2022_11_28/models/group_0831.py +++ b/githubkit/versions/v2022_11_28/models/group_0831.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0832.py b/githubkit/versions/v2022_11_28/models/group_0832.py index 3ec4c43a3..6b63828a9 100644 --- a/githubkit/versions/v2022_11_28/models/group_0832.py +++ b/githubkit/versions/v2022_11_28/models/group_0832.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0833.py b/githubkit/versions/v2022_11_28/models/group_0833.py index 07d4f6fe7..c642ead3b 100644 --- a/githubkit/versions/v2022_11_28/models/group_0833.py +++ b/githubkit/versions/v2022_11_28/models/group_0833.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from githubkit.compat import GitHubModel, model_rebuild diff --git a/githubkit/versions/v2022_11_28/models/group_0834.py b/githubkit/versions/v2022_11_28/models/group_0834.py index 6d7031039..34e7a41a1 100644 --- a/githubkit/versions/v2022_11_28/models/group_0834.py +++ b/githubkit/versions/v2022_11_28/models/group_0834.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0835.py b/githubkit/versions/v2022_11_28/models/group_0835.py index 88bded6aa..08c16e9ea 100644 --- a/githubkit/versions/v2022_11_28/models/group_0835.py +++ b/githubkit/versions/v2022_11_28/models/group_0835.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0836.py b/githubkit/versions/v2022_11_28/models/group_0836.py index e807d0938..2b6c200b5 100644 --- a/githubkit/versions/v2022_11_28/models/group_0836.py +++ b/githubkit/versions/v2022_11_28/models/group_0836.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0837.py b/githubkit/versions/v2022_11_28/models/group_0837.py index d155457ae..d8ee0a92c 100644 --- a/githubkit/versions/v2022_11_28/models/group_0837.py +++ b/githubkit/versions/v2022_11_28/models/group_0837.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0838.py b/githubkit/versions/v2022_11_28/models/group_0838.py index 18e33acf4..9751ae0a5 100644 --- a/githubkit/versions/v2022_11_28/models/group_0838.py +++ b/githubkit/versions/v2022_11_28/models/group_0838.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0839.py b/githubkit/versions/v2022_11_28/models/group_0839.py index 674e4878d..623041b77 100644 --- a/githubkit/versions/v2022_11_28/models/group_0839.py +++ b/githubkit/versions/v2022_11_28/models/group_0839.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0840.py b/githubkit/versions/v2022_11_28/models/group_0840.py index 2743c4bdf..007f29b18 100644 --- a/githubkit/versions/v2022_11_28/models/group_0840.py +++ b/githubkit/versions/v2022_11_28/models/group_0840.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0841.py b/githubkit/versions/v2022_11_28/models/group_0841.py index 534331a7a..f52322c46 100644 --- a/githubkit/versions/v2022_11_28/models/group_0841.py +++ b/githubkit/versions/v2022_11_28/models/group_0841.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0842.py b/githubkit/versions/v2022_11_28/models/group_0842.py index 6df84c6f5..882706ed7 100644 --- a/githubkit/versions/v2022_11_28/models/group_0842.py +++ b/githubkit/versions/v2022_11_28/models/group_0842.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0843.py b/githubkit/versions/v2022_11_28/models/group_0843.py index 7955fe667..f85a05eb9 100644 --- a/githubkit/versions/v2022_11_28/models/group_0843.py +++ b/githubkit/versions/v2022_11_28/models/group_0843.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0844.py b/githubkit/versions/v2022_11_28/models/group_0844.py index 04ab4f431..3686da588 100644 --- a/githubkit/versions/v2022_11_28/models/group_0844.py +++ b/githubkit/versions/v2022_11_28/models/group_0844.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0845.py b/githubkit/versions/v2022_11_28/models/group_0845.py index 0b4b5c4a8..232c59473 100644 --- a/githubkit/versions/v2022_11_28/models/group_0845.py +++ b/githubkit/versions/v2022_11_28/models/group_0845.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0846.py b/githubkit/versions/v2022_11_28/models/group_0846.py index fea147e80..d46a85332 100644 --- a/githubkit/versions/v2022_11_28/models/group_0846.py +++ b/githubkit/versions/v2022_11_28/models/group_0846.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0847.py b/githubkit/versions/v2022_11_28/models/group_0847.py index 8ca0134b9..a2a947252 100644 --- a/githubkit/versions/v2022_11_28/models/group_0847.py +++ b/githubkit/versions/v2022_11_28/models/group_0847.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0848.py b/githubkit/versions/v2022_11_28/models/group_0848.py index 18fafae9c..2ffeafd63 100644 --- a/githubkit/versions/v2022_11_28/models/group_0848.py +++ b/githubkit/versions/v2022_11_28/models/group_0848.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0849.py b/githubkit/versions/v2022_11_28/models/group_0849.py index 560d35275..b155361d8 100644 --- a/githubkit/versions/v2022_11_28/models/group_0849.py +++ b/githubkit/versions/v2022_11_28/models/group_0849.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0850.py b/githubkit/versions/v2022_11_28/models/group_0850.py index c8add3eb3..cef0a34c2 100644 --- a/githubkit/versions/v2022_11_28/models/group_0850.py +++ b/githubkit/versions/v2022_11_28/models/group_0850.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0851.py b/githubkit/versions/v2022_11_28/models/group_0851.py index 769e52407..0c04cf7c5 100644 --- a/githubkit/versions/v2022_11_28/models/group_0851.py +++ b/githubkit/versions/v2022_11_28/models/group_0851.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0852.py b/githubkit/versions/v2022_11_28/models/group_0852.py index 7ed55fb69..f021cd928 100644 --- a/githubkit/versions/v2022_11_28/models/group_0852.py +++ b/githubkit/versions/v2022_11_28/models/group_0852.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0853.py b/githubkit/versions/v2022_11_28/models/group_0853.py index 048f8f582..f750d1cc9 100644 --- a/githubkit/versions/v2022_11_28/models/group_0853.py +++ b/githubkit/versions/v2022_11_28/models/group_0853.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0854.py b/githubkit/versions/v2022_11_28/models/group_0854.py index e0fadeb10..e6e21ec0d 100644 --- a/githubkit/versions/v2022_11_28/models/group_0854.py +++ b/githubkit/versions/v2022_11_28/models/group_0854.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0855.py b/githubkit/versions/v2022_11_28/models/group_0855.py index ee6436503..0b346bd1e 100644 --- a/githubkit/versions/v2022_11_28/models/group_0855.py +++ b/githubkit/versions/v2022_11_28/models/group_0855.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0856.py b/githubkit/versions/v2022_11_28/models/group_0856.py index 146cc9786..de3c22c09 100644 --- a/githubkit/versions/v2022_11_28/models/group_0856.py +++ b/githubkit/versions/v2022_11_28/models/group_0856.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0857.py b/githubkit/versions/v2022_11_28/models/group_0857.py index ca75133c3..be657ea20 100644 --- a/githubkit/versions/v2022_11_28/models/group_0857.py +++ b/githubkit/versions/v2022_11_28/models/group_0857.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0858.py b/githubkit/versions/v2022_11_28/models/group_0858.py index 045b48a3b..f6532227e 100644 --- a/githubkit/versions/v2022_11_28/models/group_0858.py +++ b/githubkit/versions/v2022_11_28/models/group_0858.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0859.py b/githubkit/versions/v2022_11_28/models/group_0859.py index 798272a82..4658506c5 100644 --- a/githubkit/versions/v2022_11_28/models/group_0859.py +++ b/githubkit/versions/v2022_11_28/models/group_0859.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0860.py b/githubkit/versions/v2022_11_28/models/group_0860.py index b1ee66c3b..9ef664966 100644 --- a/githubkit/versions/v2022_11_28/models/group_0860.py +++ b/githubkit/versions/v2022_11_28/models/group_0860.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0861.py b/githubkit/versions/v2022_11_28/models/group_0861.py index adac3f02e..cd24940ff 100644 --- a/githubkit/versions/v2022_11_28/models/group_0861.py +++ b/githubkit/versions/v2022_11_28/models/group_0861.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0862.py b/githubkit/versions/v2022_11_28/models/group_0862.py index 7165e3062..9c21960a6 100644 --- a/githubkit/versions/v2022_11_28/models/group_0862.py +++ b/githubkit/versions/v2022_11_28/models/group_0862.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0863.py b/githubkit/versions/v2022_11_28/models/group_0863.py index dbaa3ecdf..83b1c7887 100644 --- a/githubkit/versions/v2022_11_28/models/group_0863.py +++ b/githubkit/versions/v2022_11_28/models/group_0863.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0864.py b/githubkit/versions/v2022_11_28/models/group_0864.py index 884ae64d6..05a3214de 100644 --- a/githubkit/versions/v2022_11_28/models/group_0864.py +++ b/githubkit/versions/v2022_11_28/models/group_0864.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0865.py b/githubkit/versions/v2022_11_28/models/group_0865.py index 97ebbc54c..ee76d8e8a 100644 --- a/githubkit/versions/v2022_11_28/models/group_0865.py +++ b/githubkit/versions/v2022_11_28/models/group_0865.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0866.py b/githubkit/versions/v2022_11_28/models/group_0866.py index e9c7f557f..1c2fa09ac 100644 --- a/githubkit/versions/v2022_11_28/models/group_0866.py +++ b/githubkit/versions/v2022_11_28/models/group_0866.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0867.py b/githubkit/versions/v2022_11_28/models/group_0867.py index d0785b16c..83e351b74 100644 --- a/githubkit/versions/v2022_11_28/models/group_0867.py +++ b/githubkit/versions/v2022_11_28/models/group_0867.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0868.py b/githubkit/versions/v2022_11_28/models/group_0868.py index 3e3feec30..022333c11 100644 --- a/githubkit/versions/v2022_11_28/models/group_0868.py +++ b/githubkit/versions/v2022_11_28/models/group_0868.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0869.py b/githubkit/versions/v2022_11_28/models/group_0869.py index be39f34fa..584db74a2 100644 --- a/githubkit/versions/v2022_11_28/models/group_0869.py +++ b/githubkit/versions/v2022_11_28/models/group_0869.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0870.py b/githubkit/versions/v2022_11_28/models/group_0870.py index f994e34b5..e5bd04750 100644 --- a/githubkit/versions/v2022_11_28/models/group_0870.py +++ b/githubkit/versions/v2022_11_28/models/group_0870.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0871.py b/githubkit/versions/v2022_11_28/models/group_0871.py index d8cd3dac3..e6a322116 100644 --- a/githubkit/versions/v2022_11_28/models/group_0871.py +++ b/githubkit/versions/v2022_11_28/models/group_0871.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0872.py b/githubkit/versions/v2022_11_28/models/group_0872.py index da9878824..184351fa2 100644 --- a/githubkit/versions/v2022_11_28/models/group_0872.py +++ b/githubkit/versions/v2022_11_28/models/group_0872.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0873.py b/githubkit/versions/v2022_11_28/models/group_0873.py index 1a0ecd844..6e2dccf88 100644 --- a/githubkit/versions/v2022_11_28/models/group_0873.py +++ b/githubkit/versions/v2022_11_28/models/group_0873.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0874.py b/githubkit/versions/v2022_11_28/models/group_0874.py index 6d3b339b7..291c94f37 100644 --- a/githubkit/versions/v2022_11_28/models/group_0874.py +++ b/githubkit/versions/v2022_11_28/models/group_0874.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0875.py b/githubkit/versions/v2022_11_28/models/group_0875.py index 71daf6da9..803b279ed 100644 --- a/githubkit/versions/v2022_11_28/models/group_0875.py +++ b/githubkit/versions/v2022_11_28/models/group_0875.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0876.py b/githubkit/versions/v2022_11_28/models/group_0876.py index 80ba38a96..e04c76aa7 100644 --- a/githubkit/versions/v2022_11_28/models/group_0876.py +++ b/githubkit/versions/v2022_11_28/models/group_0876.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0877.py b/githubkit/versions/v2022_11_28/models/group_0877.py index 361c1934a..084ce1eb4 100644 --- a/githubkit/versions/v2022_11_28/models/group_0877.py +++ b/githubkit/versions/v2022_11_28/models/group_0877.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0878.py b/githubkit/versions/v2022_11_28/models/group_0878.py index 99646cbd5..0e53c9121 100644 --- a/githubkit/versions/v2022_11_28/models/group_0878.py +++ b/githubkit/versions/v2022_11_28/models/group_0878.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0879.py b/githubkit/versions/v2022_11_28/models/group_0879.py index 39da52a71..e5211c456 100644 --- a/githubkit/versions/v2022_11_28/models/group_0879.py +++ b/githubkit/versions/v2022_11_28/models/group_0879.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0880.py b/githubkit/versions/v2022_11_28/models/group_0880.py index 9bcf59c90..f6ae240a3 100644 --- a/githubkit/versions/v2022_11_28/models/group_0880.py +++ b/githubkit/versions/v2022_11_28/models/group_0880.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/v2022_11_28/models/group_0881.py b/githubkit/versions/v2022_11_28/models/group_0881.py index 53f41a49b..f00f0e8da 100644 --- a/githubkit/versions/v2022_11_28/models/group_0881.py +++ b/githubkit/versions/v2022_11_28/models/group_0881.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/v2022_11_28/models/group_0882.py b/githubkit/versions/v2022_11_28/models/group_0882.py index 6ec359e78..27cb339f6 100644 --- a/githubkit/versions/v2022_11_28/models/group_0882.py +++ b/githubkit/versions/v2022_11_28/models/group_0882.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0883.py b/githubkit/versions/v2022_11_28/models/group_0883.py index 1f39c7943..82b58fb44 100644 --- a/githubkit/versions/v2022_11_28/models/group_0883.py +++ b/githubkit/versions/v2022_11_28/models/group_0883.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0884.py b/githubkit/versions/v2022_11_28/models/group_0884.py index e2cd4b446..17fac965f 100644 --- a/githubkit/versions/v2022_11_28/models/group_0884.py +++ b/githubkit/versions/v2022_11_28/models/group_0884.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from githubkit.compat import GitHubModel, model_rebuild diff --git a/githubkit/versions/v2022_11_28/models/group_0885.py b/githubkit/versions/v2022_11_28/models/group_0885.py index acebac3bd..22b6534f0 100644 --- a/githubkit/versions/v2022_11_28/models/group_0885.py +++ b/githubkit/versions/v2022_11_28/models/group_0885.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal @@ -30,11 +29,11 @@ class OrgsOrgInvitationsPostBody(GitHubModel): default=UNSET, description="**Required unless you provide `invitee_id`**. Email address of the person you are inviting, which can be an existing GitHub user.", ) - role: Missing[ - Literal["admin", "direct_member", "billing_manager", "reinstate"] - ] = Field( - default=UNSET, - description="The role for the new member. \n * `admin` - Organization owners with full administrative rights to the organization and complete access to all repositories and teams. \n * `direct_member` - Non-owner organization members with ability to see other members and join teams by invitation. \n * `billing_manager` - Non-owner organization members with ability to manage the billing settings of your organization. \n * `reinstate` - The previous role assigned to the invitee before they were removed from your organization. Can be one of the roles listed above. Only works if the invitee was previously part of your organization.", + role: Missing[Literal["admin", "direct_member", "billing_manager", "reinstate"]] = ( + Field( + default=UNSET, + description="The role for the new member. \n * `admin` - Organization owners with full administrative rights to the organization and complete access to all repositories and teams. \n * `direct_member` - Non-owner organization members with ability to see other members and join teams by invitation. \n * `billing_manager` - Non-owner organization members with ability to manage the billing settings of your organization. \n * `reinstate` - The previous role assigned to the invitee before they were removed from your organization. Can be one of the roles listed above. Only works if the invitee was previously part of your organization.", + ) ) team_ids: Missing[List[int]] = Field( default=UNSET, diff --git a/githubkit/versions/v2022_11_28/models/group_0886.py b/githubkit/versions/v2022_11_28/models/group_0886.py index c8d0d41d9..5e094f5a1 100644 --- a/githubkit/versions/v2022_11_28/models/group_0886.py +++ b/githubkit/versions/v2022_11_28/models/group_0886.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0887.py b/githubkit/versions/v2022_11_28/models/group_0887.py index db9618eab..0fda1e440 100644 --- a/githubkit/versions/v2022_11_28/models/group_0887.py +++ b/githubkit/versions/v2022_11_28/models/group_0887.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0888.py b/githubkit/versions/v2022_11_28/models/group_0888.py index 949b46d83..7a28ea6f2 100644 --- a/githubkit/versions/v2022_11_28/models/group_0888.py +++ b/githubkit/versions/v2022_11_28/models/group_0888.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0889.py b/githubkit/versions/v2022_11_28/models/group_0889.py index ec2ee3591..442fd0c33 100644 --- a/githubkit/versions/v2022_11_28/models/group_0889.py +++ b/githubkit/versions/v2022_11_28/models/group_0889.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0890.py b/githubkit/versions/v2022_11_28/models/group_0890.py index c727b036c..36fea21d7 100644 --- a/githubkit/versions/v2022_11_28/models/group_0890.py +++ b/githubkit/versions/v2022_11_28/models/group_0890.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0891.py b/githubkit/versions/v2022_11_28/models/group_0891.py index 15dc904ee..793575830 100644 --- a/githubkit/versions/v2022_11_28/models/group_0891.py +++ b/githubkit/versions/v2022_11_28/models/group_0891.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0892.py b/githubkit/versions/v2022_11_28/models/group_0892.py index 0f6fc3571..dc2469b07 100644 --- a/githubkit/versions/v2022_11_28/models/group_0892.py +++ b/githubkit/versions/v2022_11_28/models/group_0892.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from githubkit.compat import GitHubModel, model_rebuild diff --git a/githubkit/versions/v2022_11_28/models/group_0893.py b/githubkit/versions/v2022_11_28/models/group_0893.py index b8fd30166..343f287e2 100644 --- a/githubkit/versions/v2022_11_28/models/group_0893.py +++ b/githubkit/versions/v2022_11_28/models/group_0893.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0894.py b/githubkit/versions/v2022_11_28/models/group_0894.py index 1d684f4e2..79ab5caf5 100644 --- a/githubkit/versions/v2022_11_28/models/group_0894.py +++ b/githubkit/versions/v2022_11_28/models/group_0894.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0895.py b/githubkit/versions/v2022_11_28/models/group_0895.py index df2ca1d1e..eb9596a93 100644 --- a/githubkit/versions/v2022_11_28/models/group_0895.py +++ b/githubkit/versions/v2022_11_28/models/group_0895.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0896.py b/githubkit/versions/v2022_11_28/models/group_0896.py index 93439cb97..297f764b9 100644 --- a/githubkit/versions/v2022_11_28/models/group_0896.py +++ b/githubkit/versions/v2022_11_28/models/group_0896.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0897.py b/githubkit/versions/v2022_11_28/models/group_0897.py index 858de01ce..53f6146e3 100644 --- a/githubkit/versions/v2022_11_28/models/group_0897.py +++ b/githubkit/versions/v2022_11_28/models/group_0897.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0898.py b/githubkit/versions/v2022_11_28/models/group_0898.py index 0ae493b2c..bc57fa609 100644 --- a/githubkit/versions/v2022_11_28/models/group_0898.py +++ b/githubkit/versions/v2022_11_28/models/group_0898.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0899.py b/githubkit/versions/v2022_11_28/models/group_0899.py index 3484ae3a7..eae3d9fd7 100644 --- a/githubkit/versions/v2022_11_28/models/group_0899.py +++ b/githubkit/versions/v2022_11_28/models/group_0899.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0900.py b/githubkit/versions/v2022_11_28/models/group_0900.py index 1dc2fa54a..5b479ee53 100644 --- a/githubkit/versions/v2022_11_28/models/group_0900.py +++ b/githubkit/versions/v2022_11_28/models/group_0900.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0901.py b/githubkit/versions/v2022_11_28/models/group_0901.py index f0996b47f..d6f1105e2 100644 --- a/githubkit/versions/v2022_11_28/models/group_0901.py +++ b/githubkit/versions/v2022_11_28/models/group_0901.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0902.py b/githubkit/versions/v2022_11_28/models/group_0902.py index 01029adcf..e5d84aa24 100644 --- a/githubkit/versions/v2022_11_28/models/group_0902.py +++ b/githubkit/versions/v2022_11_28/models/group_0902.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal @@ -94,11 +93,11 @@ class OrgsOrgReposPostBody(GitHubModel): default=UNSET, description="Either `true` to allow squash-merge commits to use pull request title, or `false` to use commit message. **This property has been deprecated. Please use `squash_merge_commit_title` instead.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) squash_merge_commit_message: Missing[ Literal["PR_BODY", "COMMIT_MESSAGES", "BLANK"] diff --git a/githubkit/versions/v2022_11_28/models/group_0903.py b/githubkit/versions/v2022_11_28/models/group_0903.py index 755c2a4d3..bb8f4fc9a 100644 --- a/githubkit/versions/v2022_11_28/models/group_0903.py +++ b/githubkit/versions/v2022_11_28/models/group_0903.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0904.py b/githubkit/versions/v2022_11_28/models/group_0904.py index fab6a2f6f..f10380408 100644 --- a/githubkit/versions/v2022_11_28/models/group_0904.py +++ b/githubkit/versions/v2022_11_28/models/group_0904.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0905.py b/githubkit/versions/v2022_11_28/models/group_0905.py index 53a5e765f..f75a38dbc 100644 --- a/githubkit/versions/v2022_11_28/models/group_0905.py +++ b/githubkit/versions/v2022_11_28/models/group_0905.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0906.py b/githubkit/versions/v2022_11_28/models/group_0906.py index 53140f573..f3835d246 100644 --- a/githubkit/versions/v2022_11_28/models/group_0906.py +++ b/githubkit/versions/v2022_11_28/models/group_0906.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0907.py b/githubkit/versions/v2022_11_28/models/group_0907.py index 9dc26423f..02ba3ccdd 100644 --- a/githubkit/versions/v2022_11_28/models/group_0907.py +++ b/githubkit/versions/v2022_11_28/models/group_0907.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0908.py b/githubkit/versions/v2022_11_28/models/group_0908.py index 4b0e08e47..f19071c10 100644 --- a/githubkit/versions/v2022_11_28/models/group_0908.py +++ b/githubkit/versions/v2022_11_28/models/group_0908.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0909.py b/githubkit/versions/v2022_11_28/models/group_0909.py index 2b2568b34..d8f084a3e 100644 --- a/githubkit/versions/v2022_11_28/models/group_0909.py +++ b/githubkit/versions/v2022_11_28/models/group_0909.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0910.py b/githubkit/versions/v2022_11_28/models/group_0910.py index 7e339ea6d..f9ed8041d 100644 --- a/githubkit/versions/v2022_11_28/models/group_0910.py +++ b/githubkit/versions/v2022_11_28/models/group_0910.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0911.py b/githubkit/versions/v2022_11_28/models/group_0911.py index 4ddf970c6..7155a8c95 100644 --- a/githubkit/versions/v2022_11_28/models/group_0911.py +++ b/githubkit/versions/v2022_11_28/models/group_0911.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0912.py b/githubkit/versions/v2022_11_28/models/group_0912.py index 46a7f53a3..09a55856c 100644 --- a/githubkit/versions/v2022_11_28/models/group_0912.py +++ b/githubkit/versions/v2022_11_28/models/group_0912.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0913.py b/githubkit/versions/v2022_11_28/models/group_0913.py index 30d9f451f..6b6e99580 100644 --- a/githubkit/versions/v2022_11_28/models/group_0913.py +++ b/githubkit/versions/v2022_11_28/models/group_0913.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0914.py b/githubkit/versions/v2022_11_28/models/group_0914.py index d55d40325..2243159ab 100644 --- a/githubkit/versions/v2022_11_28/models/group_0914.py +++ b/githubkit/versions/v2022_11_28/models/group_0914.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0915.py b/githubkit/versions/v2022_11_28/models/group_0915.py index 5520948d9..3603ad202 100644 --- a/githubkit/versions/v2022_11_28/models/group_0915.py +++ b/githubkit/versions/v2022_11_28/models/group_0915.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0916.py b/githubkit/versions/v2022_11_28/models/group_0916.py index 51f26e50d..cb788d669 100644 --- a/githubkit/versions/v2022_11_28/models/group_0916.py +++ b/githubkit/versions/v2022_11_28/models/group_0916.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0917.py b/githubkit/versions/v2022_11_28/models/group_0917.py index a9f5b2aac..0164cc723 100644 --- a/githubkit/versions/v2022_11_28/models/group_0917.py +++ b/githubkit/versions/v2022_11_28/models/group_0917.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0918.py b/githubkit/versions/v2022_11_28/models/group_0918.py index 4e0dc7e8b..8e85c1489 100644 --- a/githubkit/versions/v2022_11_28/models/group_0918.py +++ b/githubkit/versions/v2022_11_28/models/group_0918.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0919.py b/githubkit/versions/v2022_11_28/models/group_0919.py index c6cb2588d..6ff9e974c 100644 --- a/githubkit/versions/v2022_11_28/models/group_0919.py +++ b/githubkit/versions/v2022_11_28/models/group_0919.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0920.py b/githubkit/versions/v2022_11_28/models/group_0920.py index ff177797f..d9c5ebe68 100644 --- a/githubkit/versions/v2022_11_28/models/group_0920.py +++ b/githubkit/versions/v2022_11_28/models/group_0920.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0921.py b/githubkit/versions/v2022_11_28/models/group_0921.py index dceb594d5..7d3245c63 100644 --- a/githubkit/versions/v2022_11_28/models/group_0921.py +++ b/githubkit/versions/v2022_11_28/models/group_0921.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from githubkit.compat import GitHubModel, model_rebuild diff --git a/githubkit/versions/v2022_11_28/models/group_0922.py b/githubkit/versions/v2022_11_28/models/group_0922.py index 1042f4756..97fe55aa9 100644 --- a/githubkit/versions/v2022_11_28/models/group_0922.py +++ b/githubkit/versions/v2022_11_28/models/group_0922.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0923.py b/githubkit/versions/v2022_11_28/models/group_0923.py index ce18c8bea..2a0dcefa7 100644 --- a/githubkit/versions/v2022_11_28/models/group_0923.py +++ b/githubkit/versions/v2022_11_28/models/group_0923.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0924.py b/githubkit/versions/v2022_11_28/models/group_0924.py index 5cd484949..e6f9395a8 100644 --- a/githubkit/versions/v2022_11_28/models/group_0924.py +++ b/githubkit/versions/v2022_11_28/models/group_0924.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0925.py b/githubkit/versions/v2022_11_28/models/group_0925.py index c92975003..17db0e859 100644 --- a/githubkit/versions/v2022_11_28/models/group_0925.py +++ b/githubkit/versions/v2022_11_28/models/group_0925.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0926.py b/githubkit/versions/v2022_11_28/models/group_0926.py index aa11a7263..78dbfee00 100644 --- a/githubkit/versions/v2022_11_28/models/group_0926.py +++ b/githubkit/versions/v2022_11_28/models/group_0926.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0927.py b/githubkit/versions/v2022_11_28/models/group_0927.py index f7c42adf1..090a030ce 100644 --- a/githubkit/versions/v2022_11_28/models/group_0927.py +++ b/githubkit/versions/v2022_11_28/models/group_0927.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0928.py b/githubkit/versions/v2022_11_28/models/group_0928.py index f0777b544..003392298 100644 --- a/githubkit/versions/v2022_11_28/models/group_0928.py +++ b/githubkit/versions/v2022_11_28/models/group_0928.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0929.py b/githubkit/versions/v2022_11_28/models/group_0929.py index 1f7191077..6009bdb4e 100644 --- a/githubkit/versions/v2022_11_28/models/group_0929.py +++ b/githubkit/versions/v2022_11_28/models/group_0929.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from githubkit.compat import GitHubModel, model_rebuild diff --git a/githubkit/versions/v2022_11_28/models/group_0930.py b/githubkit/versions/v2022_11_28/models/group_0930.py index 444816ebd..8185d7ede 100644 --- a/githubkit/versions/v2022_11_28/models/group_0930.py +++ b/githubkit/versions/v2022_11_28/models/group_0930.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0931.py b/githubkit/versions/v2022_11_28/models/group_0931.py index 1aed0cda6..b66b14460 100644 --- a/githubkit/versions/v2022_11_28/models/group_0931.py +++ b/githubkit/versions/v2022_11_28/models/group_0931.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0932.py b/githubkit/versions/v2022_11_28/models/group_0932.py index 56ecc0f15..5a474d68b 100644 --- a/githubkit/versions/v2022_11_28/models/group_0932.py +++ b/githubkit/versions/v2022_11_28/models/group_0932.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0933.py b/githubkit/versions/v2022_11_28/models/group_0933.py index 6cd11fd34..a5695c5c0 100644 --- a/githubkit/versions/v2022_11_28/models/group_0933.py +++ b/githubkit/versions/v2022_11_28/models/group_0933.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0934.py b/githubkit/versions/v2022_11_28/models/group_0934.py index e9c8b0a65..e33e0910d 100644 --- a/githubkit/versions/v2022_11_28/models/group_0934.py +++ b/githubkit/versions/v2022_11_28/models/group_0934.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0935.py b/githubkit/versions/v2022_11_28/models/group_0935.py index fa91c0def..f4e118c4e 100644 --- a/githubkit/versions/v2022_11_28/models/group_0935.py +++ b/githubkit/versions/v2022_11_28/models/group_0935.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0936.py b/githubkit/versions/v2022_11_28/models/group_0936.py index 0b14ec685..f54e4c466 100644 --- a/githubkit/versions/v2022_11_28/models/group_0936.py +++ b/githubkit/versions/v2022_11_28/models/group_0936.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal @@ -89,11 +88,11 @@ class ReposOwnerRepoPatchBody(GitHubModel): default=UNSET, description="Either `true` to allow squash-merge commits to use pull request title, or `false` to use commit message. **This property has been deprecated. Please use `squash_merge_commit_title` instead.", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) squash_merge_commit_message: Missing[ Literal["PR_BODY", "COMMIT_MESSAGES", "BLANK"] diff --git a/githubkit/versions/v2022_11_28/models/group_0937.py b/githubkit/versions/v2022_11_28/models/group_0937.py index f7aa055fe..1c86a09e0 100644 --- a/githubkit/versions/v2022_11_28/models/group_0937.py +++ b/githubkit/versions/v2022_11_28/models/group_0937.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0938.py b/githubkit/versions/v2022_11_28/models/group_0938.py index a2cbdf398..4b45f9286 100644 --- a/githubkit/versions/v2022_11_28/models/group_0938.py +++ b/githubkit/versions/v2022_11_28/models/group_0938.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0939.py b/githubkit/versions/v2022_11_28/models/group_0939.py index 10b71e450..7f44831d4 100644 --- a/githubkit/versions/v2022_11_28/models/group_0939.py +++ b/githubkit/versions/v2022_11_28/models/group_0939.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0940.py b/githubkit/versions/v2022_11_28/models/group_0940.py index 7dd156ab1..20c252166 100644 --- a/githubkit/versions/v2022_11_28/models/group_0940.py +++ b/githubkit/versions/v2022_11_28/models/group_0940.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0941.py b/githubkit/versions/v2022_11_28/models/group_0941.py index cc8f62ce6..dc08774b9 100644 --- a/githubkit/versions/v2022_11_28/models/group_0941.py +++ b/githubkit/versions/v2022_11_28/models/group_0941.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0942.py b/githubkit/versions/v2022_11_28/models/group_0942.py index 7b2efdfaf..cd92079a4 100644 --- a/githubkit/versions/v2022_11_28/models/group_0942.py +++ b/githubkit/versions/v2022_11_28/models/group_0942.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0943.py b/githubkit/versions/v2022_11_28/models/group_0943.py index b2ee843e3..8ea3942b2 100644 --- a/githubkit/versions/v2022_11_28/models/group_0943.py +++ b/githubkit/versions/v2022_11_28/models/group_0943.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0944.py b/githubkit/versions/v2022_11_28/models/group_0944.py index 221238a19..c091701cc 100644 --- a/githubkit/versions/v2022_11_28/models/group_0944.py +++ b/githubkit/versions/v2022_11_28/models/group_0944.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0945.py b/githubkit/versions/v2022_11_28/models/group_0945.py index e71571df3..47ec574ee 100644 --- a/githubkit/versions/v2022_11_28/models/group_0945.py +++ b/githubkit/versions/v2022_11_28/models/group_0945.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0946.py b/githubkit/versions/v2022_11_28/models/group_0946.py index 02be41a28..f0573dca7 100644 --- a/githubkit/versions/v2022_11_28/models/group_0946.py +++ b/githubkit/versions/v2022_11_28/models/group_0946.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0947.py b/githubkit/versions/v2022_11_28/models/group_0947.py index a5a6de553..ed6808fda 100644 --- a/githubkit/versions/v2022_11_28/models/group_0947.py +++ b/githubkit/versions/v2022_11_28/models/group_0947.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0948.py b/githubkit/versions/v2022_11_28/models/group_0948.py index 079b0ac8c..60488a298 100644 --- a/githubkit/versions/v2022_11_28/models/group_0948.py +++ b/githubkit/versions/v2022_11_28/models/group_0948.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0949.py b/githubkit/versions/v2022_11_28/models/group_0949.py index 7a9db7304..9d72bc0a3 100644 --- a/githubkit/versions/v2022_11_28/models/group_0949.py +++ b/githubkit/versions/v2022_11_28/models/group_0949.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0950.py b/githubkit/versions/v2022_11_28/models/group_0950.py index 83e899259..07b235fbb 100644 --- a/githubkit/versions/v2022_11_28/models/group_0950.py +++ b/githubkit/versions/v2022_11_28/models/group_0950.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0951.py b/githubkit/versions/v2022_11_28/models/group_0951.py index 58a596ec8..d62931f9a 100644 --- a/githubkit/versions/v2022_11_28/models/group_0951.py +++ b/githubkit/versions/v2022_11_28/models/group_0951.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0952.py b/githubkit/versions/v2022_11_28/models/group_0952.py index 936b8aac5..28385e889 100644 --- a/githubkit/versions/v2022_11_28/models/group_0952.py +++ b/githubkit/versions/v2022_11_28/models/group_0952.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0953.py b/githubkit/versions/v2022_11_28/models/group_0953.py index c21f36664..c79dac58f 100644 --- a/githubkit/versions/v2022_11_28/models/group_0953.py +++ b/githubkit/versions/v2022_11_28/models/group_0953.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0954.py b/githubkit/versions/v2022_11_28/models/group_0954.py index b651eb039..570bcf735 100644 --- a/githubkit/versions/v2022_11_28/models/group_0954.py +++ b/githubkit/versions/v2022_11_28/models/group_0954.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0955.py b/githubkit/versions/v2022_11_28/models/group_0955.py index d21dc14cf..64d6674c7 100644 --- a/githubkit/versions/v2022_11_28/models/group_0955.py +++ b/githubkit/versions/v2022_11_28/models/group_0955.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0956.py b/githubkit/versions/v2022_11_28/models/group_0956.py index bb5c502c2..df330e6c3 100644 --- a/githubkit/versions/v2022_11_28/models/group_0956.py +++ b/githubkit/versions/v2022_11_28/models/group_0956.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0957.py b/githubkit/versions/v2022_11_28/models/group_0957.py index 6555fa5b3..bf9209ee5 100644 --- a/githubkit/versions/v2022_11_28/models/group_0957.py +++ b/githubkit/versions/v2022_11_28/models/group_0957.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0958.py b/githubkit/versions/v2022_11_28/models/group_0958.py index 933a8a27b..f0b922c41 100644 --- a/githubkit/versions/v2022_11_28/models/group_0958.py +++ b/githubkit/versions/v2022_11_28/models/group_0958.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0959.py b/githubkit/versions/v2022_11_28/models/group_0959.py index d5a568931..d5193e37e 100644 --- a/githubkit/versions/v2022_11_28/models/group_0959.py +++ b/githubkit/versions/v2022_11_28/models/group_0959.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0960.py b/githubkit/versions/v2022_11_28/models/group_0960.py index cb86fe4bb..506702767 100644 --- a/githubkit/versions/v2022_11_28/models/group_0960.py +++ b/githubkit/versions/v2022_11_28/models/group_0960.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0961.py b/githubkit/versions/v2022_11_28/models/group_0961.py index 71e8c50c3..0e3536b1d 100644 --- a/githubkit/versions/v2022_11_28/models/group_0961.py +++ b/githubkit/versions/v2022_11_28/models/group_0961.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0962.py b/githubkit/versions/v2022_11_28/models/group_0962.py index 79b83365c..171e026b6 100644 --- a/githubkit/versions/v2022_11_28/models/group_0962.py +++ b/githubkit/versions/v2022_11_28/models/group_0962.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0963.py b/githubkit/versions/v2022_11_28/models/group_0963.py index 8a09d7eef..4e5e649d4 100644 --- a/githubkit/versions/v2022_11_28/models/group_0963.py +++ b/githubkit/versions/v2022_11_28/models/group_0963.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/v2022_11_28/models/group_0964.py b/githubkit/versions/v2022_11_28/models/group_0964.py index 454c472fc..2e8746f19 100644 --- a/githubkit/versions/v2022_11_28/models/group_0964.py +++ b/githubkit/versions/v2022_11_28/models/group_0964.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0965.py b/githubkit/versions/v2022_11_28/models/group_0965.py index b54c8dd14..2c40acb3b 100644 --- a/githubkit/versions/v2022_11_28/models/group_0965.py +++ b/githubkit/versions/v2022_11_28/models/group_0965.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0966.py b/githubkit/versions/v2022_11_28/models/group_0966.py index dacc26e66..39635099b 100644 --- a/githubkit/versions/v2022_11_28/models/group_0966.py +++ b/githubkit/versions/v2022_11_28/models/group_0966.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0967.py b/githubkit/versions/v2022_11_28/models/group_0967.py index 842999e78..f699ea725 100644 --- a/githubkit/versions/v2022_11_28/models/group_0967.py +++ b/githubkit/versions/v2022_11_28/models/group_0967.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0968.py b/githubkit/versions/v2022_11_28/models/group_0968.py index 3945e94ce..0a6816433 100644 --- a/githubkit/versions/v2022_11_28/models/group_0968.py +++ b/githubkit/versions/v2022_11_28/models/group_0968.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0969.py b/githubkit/versions/v2022_11_28/models/group_0969.py index 276db9909..661488f46 100644 --- a/githubkit/versions/v2022_11_28/models/group_0969.py +++ b/githubkit/versions/v2022_11_28/models/group_0969.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0970.py b/githubkit/versions/v2022_11_28/models/group_0970.py index 8e739066a..04feeadfe 100644 --- a/githubkit/versions/v2022_11_28/models/group_0970.py +++ b/githubkit/versions/v2022_11_28/models/group_0970.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0971.py b/githubkit/versions/v2022_11_28/models/group_0971.py index 944ed54c6..f44772a3b 100644 --- a/githubkit/versions/v2022_11_28/models/group_0971.py +++ b/githubkit/versions/v2022_11_28/models/group_0971.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0972.py b/githubkit/versions/v2022_11_28/models/group_0972.py index 3bc3469ab..1f7be7c63 100644 --- a/githubkit/versions/v2022_11_28/models/group_0972.py +++ b/githubkit/versions/v2022_11_28/models/group_0972.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0973.py b/githubkit/versions/v2022_11_28/models/group_0973.py index d313aae79..cad6d2023 100644 --- a/githubkit/versions/v2022_11_28/models/group_0973.py +++ b/githubkit/versions/v2022_11_28/models/group_0973.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0974.py b/githubkit/versions/v2022_11_28/models/group_0974.py index 72f8c7cfa..a92d25c56 100644 --- a/githubkit/versions/v2022_11_28/models/group_0974.py +++ b/githubkit/versions/v2022_11_28/models/group_0974.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0975.py b/githubkit/versions/v2022_11_28/models/group_0975.py index 9097d715f..1c399dbec 100644 --- a/githubkit/versions/v2022_11_28/models/group_0975.py +++ b/githubkit/versions/v2022_11_28/models/group_0975.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0976.py b/githubkit/versions/v2022_11_28/models/group_0976.py index e8657e723..669ca7afa 100644 --- a/githubkit/versions/v2022_11_28/models/group_0976.py +++ b/githubkit/versions/v2022_11_28/models/group_0976.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0977.py b/githubkit/versions/v2022_11_28/models/group_0977.py index 004f94103..4fc86a736 100644 --- a/githubkit/versions/v2022_11_28/models/group_0977.py +++ b/githubkit/versions/v2022_11_28/models/group_0977.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0978.py b/githubkit/versions/v2022_11_28/models/group_0978.py index aed93947a..5fcd45c02 100644 --- a/githubkit/versions/v2022_11_28/models/group_0978.py +++ b/githubkit/versions/v2022_11_28/models/group_0978.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0979.py b/githubkit/versions/v2022_11_28/models/group_0979.py index a59e869d5..95365e73c 100644 --- a/githubkit/versions/v2022_11_28/models/group_0979.py +++ b/githubkit/versions/v2022_11_28/models/group_0979.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal @@ -44,11 +43,11 @@ class ReposOwnerRepoCheckRunsPostBodyPropOutput(GitHubModel): default=UNSET, description='Adds information from your analysis to specific lines of code. Annotations are visible on GitHub in the **Checks** and **Files changed** tab of the pull request. The Checks API limits the number of annotations to a maximum of 50 per API request. To create more than 50 annotations, you have to make multiple requests to the [Update a check run](https://docs.github.com/rest/checks/runs#update-a-check-run) endpoint. Each time you update the check run, annotations are appended to the list of annotations that already exist for the check run. GitHub Actions are limited to 10 warning annotations and 10 error annotations per step. For details about how you can view annotations on GitHub, see "[About status checks](https://docs.github.com/articles/about-status-checks#checks)".', ) - images: Missing[ - List[ReposOwnerRepoCheckRunsPostBodyPropOutputPropImagesItems] - ] = Field( - default=UNSET, - description="Adds images to the output displayed in the GitHub pull request UI.", + images: Missing[List[ReposOwnerRepoCheckRunsPostBodyPropOutputPropImagesItems]] = ( + Field( + default=UNSET, + description="Adds images to the output displayed in the GitHub pull request UI.", + ) ) diff --git a/githubkit/versions/v2022_11_28/models/group_0980.py b/githubkit/versions/v2022_11_28/models/group_0980.py index a8ae75a0c..5b0952484 100644 --- a/githubkit/versions/v2022_11_28/models/group_0980.py +++ b/githubkit/versions/v2022_11_28/models/group_0980.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0981.py b/githubkit/versions/v2022_11_28/models/group_0981.py index 8c9840c4f..d92d5ca97 100644 --- a/githubkit/versions/v2022_11_28/models/group_0981.py +++ b/githubkit/versions/v2022_11_28/models/group_0981.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0982.py b/githubkit/versions/v2022_11_28/models/group_0982.py index 51cc856dc..bb4c2fc60 100644 --- a/githubkit/versions/v2022_11_28/models/group_0982.py +++ b/githubkit/versions/v2022_11_28/models/group_0982.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0983.py b/githubkit/versions/v2022_11_28/models/group_0983.py index de02601da..3d9879c53 100644 --- a/githubkit/versions/v2022_11_28/models/group_0983.py +++ b/githubkit/versions/v2022_11_28/models/group_0983.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0984.py b/githubkit/versions/v2022_11_28/models/group_0984.py index 7e74df8fc..205ae716a 100644 --- a/githubkit/versions/v2022_11_28/models/group_0984.py +++ b/githubkit/versions/v2022_11_28/models/group_0984.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0985.py b/githubkit/versions/v2022_11_28/models/group_0985.py index 96d32222a..2a8e7cd54 100644 --- a/githubkit/versions/v2022_11_28/models/group_0985.py +++ b/githubkit/versions/v2022_11_28/models/group_0985.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0986.py b/githubkit/versions/v2022_11_28/models/group_0986.py index 7a7f9a272..e31b287e9 100644 --- a/githubkit/versions/v2022_11_28/models/group_0986.py +++ b/githubkit/versions/v2022_11_28/models/group_0986.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0987.py b/githubkit/versions/v2022_11_28/models/group_0987.py index 13d0d8146..966577a75 100644 --- a/githubkit/versions/v2022_11_28/models/group_0987.py +++ b/githubkit/versions/v2022_11_28/models/group_0987.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0988.py b/githubkit/versions/v2022_11_28/models/group_0988.py index 7f31032c3..14e8507cc 100644 --- a/githubkit/versions/v2022_11_28/models/group_0988.py +++ b/githubkit/versions/v2022_11_28/models/group_0988.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal @@ -32,11 +31,11 @@ class ReposOwnerRepoCodeScanningAlertsAlertNumberPatchBody(GitHubModel): default=UNSET, description="**Required when the state is dismissed.** The reason for dismissing or closing the alert.", ) - dismissed_comment: Missing[ - Union[Annotated[str, Field(max_length=280)], None] - ] = Field( - default=UNSET, - description="The dismissal comment associated with the dismissal of the alert.", + dismissed_comment: Missing[Union[Annotated[str, Field(max_length=280)], None]] = ( + Field( + default=UNSET, + description="The dismissal comment associated with the dismissal of the alert.", + ) ) diff --git a/githubkit/versions/v2022_11_28/models/group_0989.py b/githubkit/versions/v2022_11_28/models/group_0989.py index db3f2051e..97149be5e 100644 --- a/githubkit/versions/v2022_11_28/models/group_0989.py +++ b/githubkit/versions/v2022_11_28/models/group_0989.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_0990.py b/githubkit/versions/v2022_11_28/models/group_0990.py index b5f63a075..39081ed4e 100644 --- a/githubkit/versions/v2022_11_28/models/group_0990.py +++ b/githubkit/versions/v2022_11_28/models/group_0990.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0991.py b/githubkit/versions/v2022_11_28/models/group_0991.py index 46f4881f3..fcbf9ab7e 100644 --- a/githubkit/versions/v2022_11_28/models/group_0991.py +++ b/githubkit/versions/v2022_11_28/models/group_0991.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_0992.py b/githubkit/versions/v2022_11_28/models/group_0992.py index e9966fe40..94896c110 100644 --- a/githubkit/versions/v2022_11_28/models/group_0992.py +++ b/githubkit/versions/v2022_11_28/models/group_0992.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0993.py b/githubkit/versions/v2022_11_28/models/group_0993.py index e2b5455ac..7694dc48a 100644 --- a/githubkit/versions/v2022_11_28/models/group_0993.py +++ b/githubkit/versions/v2022_11_28/models/group_0993.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0994.py b/githubkit/versions/v2022_11_28/models/group_0994.py index 69d2fe052..cbb5b1e1b 100644 --- a/githubkit/versions/v2022_11_28/models/group_0994.py +++ b/githubkit/versions/v2022_11_28/models/group_0994.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_0995.py b/githubkit/versions/v2022_11_28/models/group_0995.py index c1a88b769..e99811a75 100644 --- a/githubkit/versions/v2022_11_28/models/group_0995.py +++ b/githubkit/versions/v2022_11_28/models/group_0995.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_0996.py b/githubkit/versions/v2022_11_28/models/group_0996.py index 89df6330a..ceb4366fc 100644 --- a/githubkit/versions/v2022_11_28/models/group_0996.py +++ b/githubkit/versions/v2022_11_28/models/group_0996.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0997.py b/githubkit/versions/v2022_11_28/models/group_0997.py index c9a1787f7..e02fc904b 100644 --- a/githubkit/versions/v2022_11_28/models/group_0997.py +++ b/githubkit/versions/v2022_11_28/models/group_0997.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0998.py b/githubkit/versions/v2022_11_28/models/group_0998.py index abca28ab6..75effd211 100644 --- a/githubkit/versions/v2022_11_28/models/group_0998.py +++ b/githubkit/versions/v2022_11_28/models/group_0998.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_0999.py b/githubkit/versions/v2022_11_28/models/group_0999.py index 5beb89182..496e2b84a 100644 --- a/githubkit/versions/v2022_11_28/models/group_0999.py +++ b/githubkit/versions/v2022_11_28/models/group_0999.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_1000.py b/githubkit/versions/v2022_11_28/models/group_1000.py index 41d22b2d7..7a8745468 100644 --- a/githubkit/versions/v2022_11_28/models/group_1000.py +++ b/githubkit/versions/v2022_11_28/models/group_1000.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_1001.py b/githubkit/versions/v2022_11_28/models/group_1001.py index 27c3a38d0..ccb3d8aab 100644 --- a/githubkit/versions/v2022_11_28/models/group_1001.py +++ b/githubkit/versions/v2022_11_28/models/group_1001.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_1002.py b/githubkit/versions/v2022_11_28/models/group_1002.py index daa08bbc4..ed215f98b 100644 --- a/githubkit/versions/v2022_11_28/models/group_1002.py +++ b/githubkit/versions/v2022_11_28/models/group_1002.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_1003.py b/githubkit/versions/v2022_11_28/models/group_1003.py index ba0fa2598..887992d4b 100644 --- a/githubkit/versions/v2022_11_28/models/group_1003.py +++ b/githubkit/versions/v2022_11_28/models/group_1003.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_1004.py b/githubkit/versions/v2022_11_28/models/group_1004.py index f70402bd0..d872bec34 100644 --- a/githubkit/versions/v2022_11_28/models/group_1004.py +++ b/githubkit/versions/v2022_11_28/models/group_1004.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_1005.py b/githubkit/versions/v2022_11_28/models/group_1005.py index ca37f0afc..6b696bdc7 100644 --- a/githubkit/versions/v2022_11_28/models/group_1005.py +++ b/githubkit/versions/v2022_11_28/models/group_1005.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_1006.py b/githubkit/versions/v2022_11_28/models/group_1006.py index 6be7674be..438319910 100644 --- a/githubkit/versions/v2022_11_28/models/group_1006.py +++ b/githubkit/versions/v2022_11_28/models/group_1006.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_1007.py b/githubkit/versions/v2022_11_28/models/group_1007.py index 36d282a38..d8abaeb32 100644 --- a/githubkit/versions/v2022_11_28/models/group_1007.py +++ b/githubkit/versions/v2022_11_28/models/group_1007.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_1008.py b/githubkit/versions/v2022_11_28/models/group_1008.py index 933659894..6b4363613 100644 --- a/githubkit/versions/v2022_11_28/models/group_1008.py +++ b/githubkit/versions/v2022_11_28/models/group_1008.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union @@ -37,9 +36,9 @@ class ReposOwnerRepoDeploymentsPostBody(GitHubModel): default=UNSET, description="The [status](https://docs.github.com/rest/commits/statuses) contexts to verify against commit status checks. If you omit this parameter, GitHub verifies all unique contexts before creating a deployment. To bypass checking entirely, pass an empty array. Defaults to all unique contexts.", ) - payload: Missing[ - Union[ReposOwnerRepoDeploymentsPostBodyPropPayloadOneof0, str] - ] = Field(default=UNSET) + payload: Missing[Union[ReposOwnerRepoDeploymentsPostBodyPropPayloadOneof0, str]] = ( + Field(default=UNSET) + ) environment: Missing[str] = Field( default=UNSET, description="Name for the target deployment environment (e.g., `production`, `staging`, `qa`).", diff --git a/githubkit/versions/v2022_11_28/models/group_1009.py b/githubkit/versions/v2022_11_28/models/group_1009.py index 0fc87e471..8fe47fba1 100644 --- a/githubkit/versions/v2022_11_28/models/group_1009.py +++ b/githubkit/versions/v2022_11_28/models/group_1009.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_1010.py b/githubkit/versions/v2022_11_28/models/group_1010.py index 966a8b208..b51ea5c18 100644 --- a/githubkit/versions/v2022_11_28/models/group_1010.py +++ b/githubkit/versions/v2022_11_28/models/group_1010.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_1011.py b/githubkit/versions/v2022_11_28/models/group_1011.py index 0c5acced9..019ffdc28 100644 --- a/githubkit/versions/v2022_11_28/models/group_1011.py +++ b/githubkit/versions/v2022_11_28/models/group_1011.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_1012.py b/githubkit/versions/v2022_11_28/models/group_1012.py index c60275ecf..d9aaa9a55 100644 --- a/githubkit/versions/v2022_11_28/models/group_1012.py +++ b/githubkit/versions/v2022_11_28/models/group_1012.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal @@ -41,11 +40,11 @@ class ReposOwnerRepoEnvironmentsEnvironmentNamePutBody(GitHubModel): default=UNSET, description="The people or teams that may review jobs that reference the environment. You can list up to six users or teams as reviewers. The reviewers must have at least read access to the repository. Only one of the required reviewers needs to approve the job for it to proceed.", ) - deployment_branch_policy: Missing[ - Union[DeploymentBranchPolicySettings, None] - ] = Field( - default=UNSET, - description="The type of deployment branch policy for this environment. To allow all branches to deploy, set to `null`.", + deployment_branch_policy: Missing[Union[DeploymentBranchPolicySettings, None]] = ( + Field( + default=UNSET, + description="The type of deployment branch policy for this environment. To allow all branches to deploy, set to `null`.", + ) ) diff --git a/githubkit/versions/v2022_11_28/models/group_1013.py b/githubkit/versions/v2022_11_28/models/group_1013.py index 837fd3a77..164fcd76f 100644 --- a/githubkit/versions/v2022_11_28/models/group_1013.py +++ b/githubkit/versions/v2022_11_28/models/group_1013.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_1014.py b/githubkit/versions/v2022_11_28/models/group_1014.py index 56367e6b5..b159fbf0c 100644 --- a/githubkit/versions/v2022_11_28/models/group_1014.py +++ b/githubkit/versions/v2022_11_28/models/group_1014.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_1015.py b/githubkit/versions/v2022_11_28/models/group_1015.py index a91409448..d4ce0d249 100644 --- a/githubkit/versions/v2022_11_28/models/group_1015.py +++ b/githubkit/versions/v2022_11_28/models/group_1015.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_1016.py b/githubkit/versions/v2022_11_28/models/group_1016.py index f0a839fff..3c7b7645e 100644 --- a/githubkit/versions/v2022_11_28/models/group_1016.py +++ b/githubkit/versions/v2022_11_28/models/group_1016.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_1017.py b/githubkit/versions/v2022_11_28/models/group_1017.py index b43b702c8..aec8c7a15 100644 --- a/githubkit/versions/v2022_11_28/models/group_1017.py +++ b/githubkit/versions/v2022_11_28/models/group_1017.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_1018.py b/githubkit/versions/v2022_11_28/models/group_1018.py index 338043ff1..67fbc6f1e 100644 --- a/githubkit/versions/v2022_11_28/models/group_1018.py +++ b/githubkit/versions/v2022_11_28/models/group_1018.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_1019.py b/githubkit/versions/v2022_11_28/models/group_1019.py index 50c07a497..376060834 100644 --- a/githubkit/versions/v2022_11_28/models/group_1019.py +++ b/githubkit/versions/v2022_11_28/models/group_1019.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_1020.py b/githubkit/versions/v2022_11_28/models/group_1020.py index af91d33b9..4bf82006d 100644 --- a/githubkit/versions/v2022_11_28/models/group_1020.py +++ b/githubkit/versions/v2022_11_28/models/group_1020.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_1021.py b/githubkit/versions/v2022_11_28/models/group_1021.py index 8a2ddcf27..0fe1a32f9 100644 --- a/githubkit/versions/v2022_11_28/models/group_1021.py +++ b/githubkit/versions/v2022_11_28/models/group_1021.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_1022.py b/githubkit/versions/v2022_11_28/models/group_1022.py index d5a11b8f6..5ef2b62bc 100644 --- a/githubkit/versions/v2022_11_28/models/group_1022.py +++ b/githubkit/versions/v2022_11_28/models/group_1022.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_1023.py b/githubkit/versions/v2022_11_28/models/group_1023.py index b1510b91c..56b388fb9 100644 --- a/githubkit/versions/v2022_11_28/models/group_1023.py +++ b/githubkit/versions/v2022_11_28/models/group_1023.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_1024.py b/githubkit/versions/v2022_11_28/models/group_1024.py index 000a6082f..e02988ad3 100644 --- a/githubkit/versions/v2022_11_28/models/group_1024.py +++ b/githubkit/versions/v2022_11_28/models/group_1024.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_1025.py b/githubkit/versions/v2022_11_28/models/group_1025.py index ff2b59c3e..457380b7b 100644 --- a/githubkit/versions/v2022_11_28/models/group_1025.py +++ b/githubkit/versions/v2022_11_28/models/group_1025.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_1026.py b/githubkit/versions/v2022_11_28/models/group_1026.py index c16ab3360..74d3527c4 100644 --- a/githubkit/versions/v2022_11_28/models/group_1026.py +++ b/githubkit/versions/v2022_11_28/models/group_1026.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_1027.py b/githubkit/versions/v2022_11_28/models/group_1027.py index 9cd457378..43ce478ab 100644 --- a/githubkit/versions/v2022_11_28/models/group_1027.py +++ b/githubkit/versions/v2022_11_28/models/group_1027.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_1028.py b/githubkit/versions/v2022_11_28/models/group_1028.py index 672d72aed..b31d4a3e7 100644 --- a/githubkit/versions/v2022_11_28/models/group_1028.py +++ b/githubkit/versions/v2022_11_28/models/group_1028.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/v2022_11_28/models/group_1029.py b/githubkit/versions/v2022_11_28/models/group_1029.py index dc01d47f1..0a1447fc8 100644 --- a/githubkit/versions/v2022_11_28/models/group_1029.py +++ b/githubkit/versions/v2022_11_28/models/group_1029.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_1030.py b/githubkit/versions/v2022_11_28/models/group_1030.py index a80925e06..b307ef298 100644 --- a/githubkit/versions/v2022_11_28/models/group_1030.py +++ b/githubkit/versions/v2022_11_28/models/group_1030.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_1031.py b/githubkit/versions/v2022_11_28/models/group_1031.py index c5cf2bbda..9ec5ec399 100644 --- a/githubkit/versions/v2022_11_28/models/group_1031.py +++ b/githubkit/versions/v2022_11_28/models/group_1031.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_1032.py b/githubkit/versions/v2022_11_28/models/group_1032.py index 7664690b4..c2aa14687 100644 --- a/githubkit/versions/v2022_11_28/models/group_1032.py +++ b/githubkit/versions/v2022_11_28/models/group_1032.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_1033.py b/githubkit/versions/v2022_11_28/models/group_1033.py index 82ca76919..c5a5b2258 100644 --- a/githubkit/versions/v2022_11_28/models/group_1033.py +++ b/githubkit/versions/v2022_11_28/models/group_1033.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_1034.py b/githubkit/versions/v2022_11_28/models/group_1034.py index c80b51086..7727d20f6 100644 --- a/githubkit/versions/v2022_11_28/models/group_1034.py +++ b/githubkit/versions/v2022_11_28/models/group_1034.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_1035.py b/githubkit/versions/v2022_11_28/models/group_1035.py index 8a712fdd3..759975570 100644 --- a/githubkit/versions/v2022_11_28/models/group_1035.py +++ b/githubkit/versions/v2022_11_28/models/group_1035.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from githubkit.compat import GitHubModel, model_rebuild diff --git a/githubkit/versions/v2022_11_28/models/group_1036.py b/githubkit/versions/v2022_11_28/models/group_1036.py index 10629d9ab..d06271828 100644 --- a/githubkit/versions/v2022_11_28/models/group_1036.py +++ b/githubkit/versions/v2022_11_28/models/group_1036.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal @@ -22,11 +21,11 @@ class ReposOwnerRepoInvitationsInvitationIdPatchBody(GitHubModel): """ReposOwnerRepoInvitationsInvitationIdPatchBody""" - permissions: Missing[ - Literal["read", "write", "maintain", "triage", "admin"] - ] = Field( - default=UNSET, - description="The permissions that the associated user will have on the repository. Valid values are `read`, `write`, `maintain`, `triage`, and `admin`.", + permissions: Missing[Literal["read", "write", "maintain", "triage", "admin"]] = ( + Field( + default=UNSET, + description="The permissions that the associated user will have on the repository. Valid values are `read`, `write`, `maintain`, `triage`, and `admin`.", + ) ) diff --git a/githubkit/versions/v2022_11_28/models/group_1037.py b/githubkit/versions/v2022_11_28/models/group_1037.py index 246a0a674..e40165dc9 100644 --- a/githubkit/versions/v2022_11_28/models/group_1037.py +++ b/githubkit/versions/v2022_11_28/models/group_1037.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/v2022_11_28/models/group_1038.py b/githubkit/versions/v2022_11_28/models/group_1038.py index 34dff37e2..2e91230e7 100644 --- a/githubkit/versions/v2022_11_28/models/group_1038.py +++ b/githubkit/versions/v2022_11_28/models/group_1038.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_1039.py b/githubkit/versions/v2022_11_28/models/group_1039.py index 40ad3f18e..429ace692 100644 --- a/githubkit/versions/v2022_11_28/models/group_1039.py +++ b/githubkit/versions/v2022_11_28/models/group_1039.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_1040.py b/githubkit/versions/v2022_11_28/models/group_1040.py index 54677abcd..f4cf48489 100644 --- a/githubkit/versions/v2022_11_28/models/group_1040.py +++ b/githubkit/versions/v2022_11_28/models/group_1040.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_1041.py b/githubkit/versions/v2022_11_28/models/group_1041.py index d8fee54a5..e809e4006 100644 --- a/githubkit/versions/v2022_11_28/models/group_1041.py +++ b/githubkit/versions/v2022_11_28/models/group_1041.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_1042.py b/githubkit/versions/v2022_11_28/models/group_1042.py index fcc79838e..5d857cf8c 100644 --- a/githubkit/versions/v2022_11_28/models/group_1042.py +++ b/githubkit/versions/v2022_11_28/models/group_1042.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_1043.py b/githubkit/versions/v2022_11_28/models/group_1043.py index 163bd82a0..49a6d6da0 100644 --- a/githubkit/versions/v2022_11_28/models/group_1043.py +++ b/githubkit/versions/v2022_11_28/models/group_1043.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_1044.py b/githubkit/versions/v2022_11_28/models/group_1044.py index af274b6d3..bb9a1cd53 100644 --- a/githubkit/versions/v2022_11_28/models/group_1044.py +++ b/githubkit/versions/v2022_11_28/models/group_1044.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_1045.py b/githubkit/versions/v2022_11_28/models/group_1045.py index 37bccae64..0ed7e108e 100644 --- a/githubkit/versions/v2022_11_28/models/group_1045.py +++ b/githubkit/versions/v2022_11_28/models/group_1045.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_1046.py b/githubkit/versions/v2022_11_28/models/group_1046.py index 4bc49a232..d59513ace 100644 --- a/githubkit/versions/v2022_11_28/models/group_1046.py +++ b/githubkit/versions/v2022_11_28/models/group_1046.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_1047.py b/githubkit/versions/v2022_11_28/models/group_1047.py index 18cce1bad..36033eda7 100644 --- a/githubkit/versions/v2022_11_28/models/group_1047.py +++ b/githubkit/versions/v2022_11_28/models/group_1047.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_1048.py b/githubkit/versions/v2022_11_28/models/group_1048.py index b159eb528..0d0e29232 100644 --- a/githubkit/versions/v2022_11_28/models/group_1048.py +++ b/githubkit/versions/v2022_11_28/models/group_1048.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_1049.py b/githubkit/versions/v2022_11_28/models/group_1049.py index defbd6c56..dfb903bb9 100644 --- a/githubkit/versions/v2022_11_28/models/group_1049.py +++ b/githubkit/versions/v2022_11_28/models/group_1049.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_1050.py b/githubkit/versions/v2022_11_28/models/group_1050.py index 3bcd071e4..5769fdef9 100644 --- a/githubkit/versions/v2022_11_28/models/group_1050.py +++ b/githubkit/versions/v2022_11_28/models/group_1050.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal @@ -22,11 +21,11 @@ class ReposOwnerRepoIssuesIssueNumberLockPutBody(GitHubModel): """ReposOwnerRepoIssuesIssueNumberLockPutBody""" - lock_reason: Missing[ - Literal["off-topic", "too heated", "resolved", "spam"] - ] = Field( - default=UNSET, - description="The reason for locking the issue or pull request conversation. Lock will fail if you don't use one of these reasons: \n * `off-topic` \n * `too heated` \n * `resolved` \n * `spam`", + lock_reason: Missing[Literal["off-topic", "too heated", "resolved", "spam"]] = ( + Field( + default=UNSET, + description="The reason for locking the issue or pull request conversation. Lock will fail if you don't use one of these reasons: \n * `off-topic` \n * `too heated` \n * `resolved` \n * `spam`", + ) ) diff --git a/githubkit/versions/v2022_11_28/models/group_1051.py b/githubkit/versions/v2022_11_28/models/group_1051.py index b5c8abe7f..4d12ca0e6 100644 --- a/githubkit/versions/v2022_11_28/models/group_1051.py +++ b/githubkit/versions/v2022_11_28/models/group_1051.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_1052.py b/githubkit/versions/v2022_11_28/models/group_1052.py index bd53d62dd..22c941a84 100644 --- a/githubkit/versions/v2022_11_28/models/group_1052.py +++ b/githubkit/versions/v2022_11_28/models/group_1052.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_1053.py b/githubkit/versions/v2022_11_28/models/group_1053.py index 1387cce16..c9c52cd3c 100644 --- a/githubkit/versions/v2022_11_28/models/group_1053.py +++ b/githubkit/versions/v2022_11_28/models/group_1053.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_1054.py b/githubkit/versions/v2022_11_28/models/group_1054.py index 360a044a6..99482c11e 100644 --- a/githubkit/versions/v2022_11_28/models/group_1054.py +++ b/githubkit/versions/v2022_11_28/models/group_1054.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_1055.py b/githubkit/versions/v2022_11_28/models/group_1055.py index e5bd2063a..7be32859a 100644 --- a/githubkit/versions/v2022_11_28/models/group_1055.py +++ b/githubkit/versions/v2022_11_28/models/group_1055.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_1056.py b/githubkit/versions/v2022_11_28/models/group_1056.py index c22a93289..052d6bba0 100644 --- a/githubkit/versions/v2022_11_28/models/group_1056.py +++ b/githubkit/versions/v2022_11_28/models/group_1056.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_1057.py b/githubkit/versions/v2022_11_28/models/group_1057.py index 4d105f702..4db27f8af 100644 --- a/githubkit/versions/v2022_11_28/models/group_1057.py +++ b/githubkit/versions/v2022_11_28/models/group_1057.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_1058.py b/githubkit/versions/v2022_11_28/models/group_1058.py index d8b31d61c..66f746617 100644 --- a/githubkit/versions/v2022_11_28/models/group_1058.py +++ b/githubkit/versions/v2022_11_28/models/group_1058.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_1059.py b/githubkit/versions/v2022_11_28/models/group_1059.py index 722f6fd61..ee1af04ff 100644 --- a/githubkit/versions/v2022_11_28/models/group_1059.py +++ b/githubkit/versions/v2022_11_28/models/group_1059.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_1060.py b/githubkit/versions/v2022_11_28/models/group_1060.py index e2bea8c94..2b5b85a37 100644 --- a/githubkit/versions/v2022_11_28/models/group_1060.py +++ b/githubkit/versions/v2022_11_28/models/group_1060.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_1061.py b/githubkit/versions/v2022_11_28/models/group_1061.py index 4c9778648..aaa502a31 100644 --- a/githubkit/versions/v2022_11_28/models/group_1061.py +++ b/githubkit/versions/v2022_11_28/models/group_1061.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_1062.py b/githubkit/versions/v2022_11_28/models/group_1062.py index 85ea983c3..a10a166b5 100644 --- a/githubkit/versions/v2022_11_28/models/group_1062.py +++ b/githubkit/versions/v2022_11_28/models/group_1062.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_1063.py b/githubkit/versions/v2022_11_28/models/group_1063.py index e093339cf..ef4303d46 100644 --- a/githubkit/versions/v2022_11_28/models/group_1063.py +++ b/githubkit/versions/v2022_11_28/models/group_1063.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_1064.py b/githubkit/versions/v2022_11_28/models/group_1064.py index 6c0400f18..25f79e367 100644 --- a/githubkit/versions/v2022_11_28/models/group_1064.py +++ b/githubkit/versions/v2022_11_28/models/group_1064.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_1065.py b/githubkit/versions/v2022_11_28/models/group_1065.py index 786786a63..e6861b75f 100644 --- a/githubkit/versions/v2022_11_28/models/group_1065.py +++ b/githubkit/versions/v2022_11_28/models/group_1065.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_1066.py b/githubkit/versions/v2022_11_28/models/group_1066.py index db8500818..2e1d70e13 100644 --- a/githubkit/versions/v2022_11_28/models/group_1066.py +++ b/githubkit/versions/v2022_11_28/models/group_1066.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_1067.py b/githubkit/versions/v2022_11_28/models/group_1067.py index 7661bd2c4..a34439e2e 100644 --- a/githubkit/versions/v2022_11_28/models/group_1067.py +++ b/githubkit/versions/v2022_11_28/models/group_1067.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_1068.py b/githubkit/versions/v2022_11_28/models/group_1068.py index dac9f73c1..9b46e58d4 100644 --- a/githubkit/versions/v2022_11_28/models/group_1068.py +++ b/githubkit/versions/v2022_11_28/models/group_1068.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_1069.py b/githubkit/versions/v2022_11_28/models/group_1069.py index 3b4157840..0e506283f 100644 --- a/githubkit/versions/v2022_11_28/models/group_1069.py +++ b/githubkit/versions/v2022_11_28/models/group_1069.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_1070.py b/githubkit/versions/v2022_11_28/models/group_1070.py index bcfabc4dd..983710249 100644 --- a/githubkit/versions/v2022_11_28/models/group_1070.py +++ b/githubkit/versions/v2022_11_28/models/group_1070.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_1071.py b/githubkit/versions/v2022_11_28/models/group_1071.py index e7c9ebb48..c70eda7b0 100644 --- a/githubkit/versions/v2022_11_28/models/group_1071.py +++ b/githubkit/versions/v2022_11_28/models/group_1071.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_1072.py b/githubkit/versions/v2022_11_28/models/group_1072.py index f2fd473c7..64fb2be93 100644 --- a/githubkit/versions/v2022_11_28/models/group_1072.py +++ b/githubkit/versions/v2022_11_28/models/group_1072.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_1073.py b/githubkit/versions/v2022_11_28/models/group_1073.py index 2e9e57e60..60b4e7e3f 100644 --- a/githubkit/versions/v2022_11_28/models/group_1073.py +++ b/githubkit/versions/v2022_11_28/models/group_1073.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_1074.py b/githubkit/versions/v2022_11_28/models/group_1074.py index 1956c1fc6..3acd4d021 100644 --- a/githubkit/versions/v2022_11_28/models/group_1074.py +++ b/githubkit/versions/v2022_11_28/models/group_1074.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_1075.py b/githubkit/versions/v2022_11_28/models/group_1075.py index 952437ca6..b48ea50a0 100644 --- a/githubkit/versions/v2022_11_28/models/group_1075.py +++ b/githubkit/versions/v2022_11_28/models/group_1075.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_1076.py b/githubkit/versions/v2022_11_28/models/group_1076.py index 8cb27aa14..21b71134d 100644 --- a/githubkit/versions/v2022_11_28/models/group_1076.py +++ b/githubkit/versions/v2022_11_28/models/group_1076.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_1077.py b/githubkit/versions/v2022_11_28/models/group_1077.py index adef07e54..1c64cabce 100644 --- a/githubkit/versions/v2022_11_28/models/group_1077.py +++ b/githubkit/versions/v2022_11_28/models/group_1077.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_1078.py b/githubkit/versions/v2022_11_28/models/group_1078.py index 5895b7a86..a1c5168af 100644 --- a/githubkit/versions/v2022_11_28/models/group_1078.py +++ b/githubkit/versions/v2022_11_28/models/group_1078.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_1079.py b/githubkit/versions/v2022_11_28/models/group_1079.py index 42690462e..00908b602 100644 --- a/githubkit/versions/v2022_11_28/models/group_1079.py +++ b/githubkit/versions/v2022_11_28/models/group_1079.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_1080.py b/githubkit/versions/v2022_11_28/models/group_1080.py index 0f5b74ef5..19ce96346 100644 --- a/githubkit/versions/v2022_11_28/models/group_1080.py +++ b/githubkit/versions/v2022_11_28/models/group_1080.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_1081.py b/githubkit/versions/v2022_11_28/models/group_1081.py index 397173976..bc574dd95 100644 --- a/githubkit/versions/v2022_11_28/models/group_1081.py +++ b/githubkit/versions/v2022_11_28/models/group_1081.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_1082.py b/githubkit/versions/v2022_11_28/models/group_1082.py index 542b53be8..eaa87fc99 100644 --- a/githubkit/versions/v2022_11_28/models/group_1082.py +++ b/githubkit/versions/v2022_11_28/models/group_1082.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_1083.py b/githubkit/versions/v2022_11_28/models/group_1083.py index 258a28a52..ff106781d 100644 --- a/githubkit/versions/v2022_11_28/models/group_1083.py +++ b/githubkit/versions/v2022_11_28/models/group_1083.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_1084.py b/githubkit/versions/v2022_11_28/models/group_1084.py index 7efac1703..1fa538765 100644 --- a/githubkit/versions/v2022_11_28/models/group_1084.py +++ b/githubkit/versions/v2022_11_28/models/group_1084.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_1085.py b/githubkit/versions/v2022_11_28/models/group_1085.py index b5642115d..6f77dbb5a 100644 --- a/githubkit/versions/v2022_11_28/models/group_1085.py +++ b/githubkit/versions/v2022_11_28/models/group_1085.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_1086.py b/githubkit/versions/v2022_11_28/models/group_1086.py index 5f71bfa88..0adaf0241 100644 --- a/githubkit/versions/v2022_11_28/models/group_1086.py +++ b/githubkit/versions/v2022_11_28/models/group_1086.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_1087.py b/githubkit/versions/v2022_11_28/models/group_1087.py index ec494b7c7..85f6e83b1 100644 --- a/githubkit/versions/v2022_11_28/models/group_1087.py +++ b/githubkit/versions/v2022_11_28/models/group_1087.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_1088.py b/githubkit/versions/v2022_11_28/models/group_1088.py index 02ca890ec..60600e7a7 100644 --- a/githubkit/versions/v2022_11_28/models/group_1088.py +++ b/githubkit/versions/v2022_11_28/models/group_1088.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_1089.py b/githubkit/versions/v2022_11_28/models/group_1089.py index 63fc52daa..857baf92a 100644 --- a/githubkit/versions/v2022_11_28/models/group_1089.py +++ b/githubkit/versions/v2022_11_28/models/group_1089.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_1090.py b/githubkit/versions/v2022_11_28/models/group_1090.py index 08ff77f23..63a7f87ba 100644 --- a/githubkit/versions/v2022_11_28/models/group_1090.py +++ b/githubkit/versions/v2022_11_28/models/group_1090.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_1091.py b/githubkit/versions/v2022_11_28/models/group_1091.py index 12b355465..34c70f7f9 100644 --- a/githubkit/versions/v2022_11_28/models/group_1091.py +++ b/githubkit/versions/v2022_11_28/models/group_1091.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_1092.py b/githubkit/versions/v2022_11_28/models/group_1092.py index 1307b08cd..862b6ba8f 100644 --- a/githubkit/versions/v2022_11_28/models/group_1092.py +++ b/githubkit/versions/v2022_11_28/models/group_1092.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_1093.py b/githubkit/versions/v2022_11_28/models/group_1093.py index b6c915e6f..333f37ec9 100644 --- a/githubkit/versions/v2022_11_28/models/group_1093.py +++ b/githubkit/versions/v2022_11_28/models/group_1093.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_1094.py b/githubkit/versions/v2022_11_28/models/group_1094.py index 2714500b0..f49d56bca 100644 --- a/githubkit/versions/v2022_11_28/models/group_1094.py +++ b/githubkit/versions/v2022_11_28/models/group_1094.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_1095.py b/githubkit/versions/v2022_11_28/models/group_1095.py index 3146142c1..3944a35e1 100644 --- a/githubkit/versions/v2022_11_28/models/group_1095.py +++ b/githubkit/versions/v2022_11_28/models/group_1095.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_1096.py b/githubkit/versions/v2022_11_28/models/group_1096.py index 7efb45f35..297752b28 100644 --- a/githubkit/versions/v2022_11_28/models/group_1096.py +++ b/githubkit/versions/v2022_11_28/models/group_1096.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_1097.py b/githubkit/versions/v2022_11_28/models/group_1097.py index 094719ed1..8f99969f6 100644 --- a/githubkit/versions/v2022_11_28/models/group_1097.py +++ b/githubkit/versions/v2022_11_28/models/group_1097.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_1098.py b/githubkit/versions/v2022_11_28/models/group_1098.py index a3075d670..e78b9c45c 100644 --- a/githubkit/versions/v2022_11_28/models/group_1098.py +++ b/githubkit/versions/v2022_11_28/models/group_1098.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_1099.py b/githubkit/versions/v2022_11_28/models/group_1099.py index 52453b1a0..116827a53 100644 --- a/githubkit/versions/v2022_11_28/models/group_1099.py +++ b/githubkit/versions/v2022_11_28/models/group_1099.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_1100.py b/githubkit/versions/v2022_11_28/models/group_1100.py index a276be095..e2b827b1b 100644 --- a/githubkit/versions/v2022_11_28/models/group_1100.py +++ b/githubkit/versions/v2022_11_28/models/group_1100.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_1101.py b/githubkit/versions/v2022_11_28/models/group_1101.py index 04dd9d32b..c68c08211 100644 --- a/githubkit/versions/v2022_11_28/models/group_1101.py +++ b/githubkit/versions/v2022_11_28/models/group_1101.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_1102.py b/githubkit/versions/v2022_11_28/models/group_1102.py index 981f7922d..140c5808c 100644 --- a/githubkit/versions/v2022_11_28/models/group_1102.py +++ b/githubkit/versions/v2022_11_28/models/group_1102.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_1103.py b/githubkit/versions/v2022_11_28/models/group_1103.py index c8d258e38..59aae89ec 100644 --- a/githubkit/versions/v2022_11_28/models/group_1103.py +++ b/githubkit/versions/v2022_11_28/models/group_1103.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_1104.py b/githubkit/versions/v2022_11_28/models/group_1104.py index 1c67f4ec5..e248ddcbd 100644 --- a/githubkit/versions/v2022_11_28/models/group_1104.py +++ b/githubkit/versions/v2022_11_28/models/group_1104.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_1105.py b/githubkit/versions/v2022_11_28/models/group_1105.py index e460b9eda..8e53926f6 100644 --- a/githubkit/versions/v2022_11_28/models/group_1105.py +++ b/githubkit/versions/v2022_11_28/models/group_1105.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_1106.py b/githubkit/versions/v2022_11_28/models/group_1106.py index 6c3977b48..a7818cc81 100644 --- a/githubkit/versions/v2022_11_28/models/group_1106.py +++ b/githubkit/versions/v2022_11_28/models/group_1106.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_1107.py b/githubkit/versions/v2022_11_28/models/group_1107.py index 0056a0e0f..ff25ca816 100644 --- a/githubkit/versions/v2022_11_28/models/group_1107.py +++ b/githubkit/versions/v2022_11_28/models/group_1107.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_1108.py b/githubkit/versions/v2022_11_28/models/group_1108.py index 162a19731..9e0151a61 100644 --- a/githubkit/versions/v2022_11_28/models/group_1108.py +++ b/githubkit/versions/v2022_11_28/models/group_1108.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_1109.py b/githubkit/versions/v2022_11_28/models/group_1109.py index d64134382..8c9998ba6 100644 --- a/githubkit/versions/v2022_11_28/models/group_1109.py +++ b/githubkit/versions/v2022_11_28/models/group_1109.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_1110.py b/githubkit/versions/v2022_11_28/models/group_1110.py index 02f946939..2333d1363 100644 --- a/githubkit/versions/v2022_11_28/models/group_1110.py +++ b/githubkit/versions/v2022_11_28/models/group_1110.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_1111.py b/githubkit/versions/v2022_11_28/models/group_1111.py index adcc71f40..a44a260ff 100644 --- a/githubkit/versions/v2022_11_28/models/group_1111.py +++ b/githubkit/versions/v2022_11_28/models/group_1111.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_1112.py b/githubkit/versions/v2022_11_28/models/group_1112.py index 12b1178d4..df888d74e 100644 --- a/githubkit/versions/v2022_11_28/models/group_1112.py +++ b/githubkit/versions/v2022_11_28/models/group_1112.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_1113.py b/githubkit/versions/v2022_11_28/models/group_1113.py index 56e13fd03..1657765ee 100644 --- a/githubkit/versions/v2022_11_28/models/group_1113.py +++ b/githubkit/versions/v2022_11_28/models/group_1113.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_1114.py b/githubkit/versions/v2022_11_28/models/group_1114.py index f2bc5a3a8..913551bc8 100644 --- a/githubkit/versions/v2022_11_28/models/group_1114.py +++ b/githubkit/versions/v2022_11_28/models/group_1114.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_1115.py b/githubkit/versions/v2022_11_28/models/group_1115.py index b534cdf15..7e46c7317 100644 --- a/githubkit/versions/v2022_11_28/models/group_1115.py +++ b/githubkit/versions/v2022_11_28/models/group_1115.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_1116.py b/githubkit/versions/v2022_11_28/models/group_1116.py index 9017da95e..6162fd16b 100644 --- a/githubkit/versions/v2022_11_28/models/group_1116.py +++ b/githubkit/versions/v2022_11_28/models/group_1116.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_1117.py b/githubkit/versions/v2022_11_28/models/group_1117.py index 717e54f29..90c3c572e 100644 --- a/githubkit/versions/v2022_11_28/models/group_1117.py +++ b/githubkit/versions/v2022_11_28/models/group_1117.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_1118.py b/githubkit/versions/v2022_11_28/models/group_1118.py index 3d15c5db3..db0d2249c 100644 --- a/githubkit/versions/v2022_11_28/models/group_1118.py +++ b/githubkit/versions/v2022_11_28/models/group_1118.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_1119.py b/githubkit/versions/v2022_11_28/models/group_1119.py index 908b160f1..0f34e31b1 100644 --- a/githubkit/versions/v2022_11_28/models/group_1119.py +++ b/githubkit/versions/v2022_11_28/models/group_1119.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_1120.py b/githubkit/versions/v2022_11_28/models/group_1120.py index b4d5b6849..a33f8e1b9 100644 --- a/githubkit/versions/v2022_11_28/models/group_1120.py +++ b/githubkit/versions/v2022_11_28/models/group_1120.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_1121.py b/githubkit/versions/v2022_11_28/models/group_1121.py index badec465c..b9b4defa0 100644 --- a/githubkit/versions/v2022_11_28/models/group_1121.py +++ b/githubkit/versions/v2022_11_28/models/group_1121.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_1122.py b/githubkit/versions/v2022_11_28/models/group_1122.py index a8c19bbaa..5d7718128 100644 --- a/githubkit/versions/v2022_11_28/models/group_1122.py +++ b/githubkit/versions/v2022_11_28/models/group_1122.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/models/group_1123.py b/githubkit/versions/v2022_11_28/models/group_1123.py index d00f107dc..9fb8ed282 100644 --- a/githubkit/versions/v2022_11_28/models/group_1123.py +++ b/githubkit/versions/v2022_11_28/models/group_1123.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/v2022_11_28/models/group_1124.py b/githubkit/versions/v2022_11_28/models/group_1124.py index e29735d8b..3a24bb915 100644 --- a/githubkit/versions/v2022_11_28/models/group_1124.py +++ b/githubkit/versions/v2022_11_28/models/group_1124.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_1125.py b/githubkit/versions/v2022_11_28/models/group_1125.py index c64e8b079..f81f21b85 100644 --- a/githubkit/versions/v2022_11_28/models/group_1125.py +++ b/githubkit/versions/v2022_11_28/models/group_1125.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_1126.py b/githubkit/versions/v2022_11_28/models/group_1126.py index 79e84473e..5edeb55cb 100644 --- a/githubkit/versions/v2022_11_28/models/group_1126.py +++ b/githubkit/versions/v2022_11_28/models/group_1126.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_1127.py b/githubkit/versions/v2022_11_28/models/group_1127.py index ea016af74..971e58a45 100644 --- a/githubkit/versions/v2022_11_28/models/group_1127.py +++ b/githubkit/versions/v2022_11_28/models/group_1127.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_1128.py b/githubkit/versions/v2022_11_28/models/group_1128.py index 97a0b1a40..574036b59 100644 --- a/githubkit/versions/v2022_11_28/models/group_1128.py +++ b/githubkit/versions/v2022_11_28/models/group_1128.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_1129.py b/githubkit/versions/v2022_11_28/models/group_1129.py index 409a58334..04c6a0578 100644 --- a/githubkit/versions/v2022_11_28/models/group_1129.py +++ b/githubkit/versions/v2022_11_28/models/group_1129.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_1130.py b/githubkit/versions/v2022_11_28/models/group_1130.py index 97dec5a8c..40687cc1f 100644 --- a/githubkit/versions/v2022_11_28/models/group_1130.py +++ b/githubkit/versions/v2022_11_28/models/group_1130.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_1131.py b/githubkit/versions/v2022_11_28/models/group_1131.py index e907dca97..c2aace7bb 100644 --- a/githubkit/versions/v2022_11_28/models/group_1131.py +++ b/githubkit/versions/v2022_11_28/models/group_1131.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_1132.py b/githubkit/versions/v2022_11_28/models/group_1132.py index 8585dee35..f6a483044 100644 --- a/githubkit/versions/v2022_11_28/models/group_1132.py +++ b/githubkit/versions/v2022_11_28/models/group_1132.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_1133.py b/githubkit/versions/v2022_11_28/models/group_1133.py index 843adbac4..50efae3c7 100644 --- a/githubkit/versions/v2022_11_28/models/group_1133.py +++ b/githubkit/versions/v2022_11_28/models/group_1133.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_1134.py b/githubkit/versions/v2022_11_28/models/group_1134.py index 416919275..462d4423d 100644 --- a/githubkit/versions/v2022_11_28/models/group_1134.py +++ b/githubkit/versions/v2022_11_28/models/group_1134.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_1135.py b/githubkit/versions/v2022_11_28/models/group_1135.py index 040a3401a..09cbf54e3 100644 --- a/githubkit/versions/v2022_11_28/models/group_1135.py +++ b/githubkit/versions/v2022_11_28/models/group_1135.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from githubkit.compat import GitHubModel, model_rebuild diff --git a/githubkit/versions/v2022_11_28/models/group_1136.py b/githubkit/versions/v2022_11_28/models/group_1136.py index ce4d5c3c5..c2167fcac 100644 --- a/githubkit/versions/v2022_11_28/models/group_1136.py +++ b/githubkit/versions/v2022_11_28/models/group_1136.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/models/group_1137.py b/githubkit/versions/v2022_11_28/models/group_1137.py index 5946f2b8c..9b771b5c3 100644 --- a/githubkit/versions/v2022_11_28/models/group_1137.py +++ b/githubkit/versions/v2022_11_28/models/group_1137.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/models/group_1138.py b/githubkit/versions/v2022_11_28/models/group_1138.py index d51f7e16d..994900d2d 100644 --- a/githubkit/versions/v2022_11_28/models/group_1138.py +++ b/githubkit/versions/v2022_11_28/models/group_1138.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/v2022_11_28/models/group_1139.py b/githubkit/versions/v2022_11_28/models/group_1139.py index 5aec3efe2..e16a36610 100644 --- a/githubkit/versions/v2022_11_28/models/group_1139.py +++ b/githubkit/versions/v2022_11_28/models/group_1139.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/models/group_1140.py b/githubkit/versions/v2022_11_28/models/group_1140.py index 8e5eccf2c..e0fe3d9d9 100644 --- a/githubkit/versions/v2022_11_28/models/group_1140.py +++ b/githubkit/versions/v2022_11_28/models/group_1140.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal @@ -77,11 +76,11 @@ class UserReposPostBody(GitHubModel): default=UNSET, description="Whether to delete head branches when pull requests are merged", ) - squash_merge_commit_title: Missing[ - Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"] - ] = Field( - default=UNSET, - description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + squash_merge_commit_title: Missing[Literal["PR_TITLE", "COMMIT_OR_PR_TITLE"]] = ( + Field( + default=UNSET, + description="The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).", + ) ) squash_merge_commit_message: Missing[ Literal["PR_BODY", "COMMIT_MESSAGES", "BLANK"] diff --git a/githubkit/versions/v2022_11_28/models/group_1141.py b/githubkit/versions/v2022_11_28/models/group_1141.py index a37b6683d..3f7092ec4 100644 --- a/githubkit/versions/v2022_11_28/models/group_1141.py +++ b/githubkit/versions/v2022_11_28/models/group_1141.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_1142.py b/githubkit/versions/v2022_11_28/models/group_1142.py index c2ee90055..a8664c5d3 100644 --- a/githubkit/versions/v2022_11_28/models/group_1142.py +++ b/githubkit/versions/v2022_11_28/models/group_1142.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/models/group_1143.py b/githubkit/versions/v2022_11_28/models/group_1143.py index 4a652f5a5..4ac5db45a 100644 --- a/githubkit/versions/v2022_11_28/models/group_1143.py +++ b/githubkit/versions/v2022_11_28/models/group_1143.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from pydantic import Field diff --git a/githubkit/versions/v2022_11_28/rest/actions.py b/githubkit/versions/v2022_11_28/rest/actions.py index 85dfb207c..de4a4d2bc 100644 --- a/githubkit/versions/v2022_11_28/rest/actions.py +++ b/githubkit/versions/v2022_11_28/rest/actions.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref @@ -281,8 +280,7 @@ def set_github_actions_permissions_organization( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgActionsPermissionsPutBodyType, - ) -> Response: - ... + ) -> Response: ... @overload def set_github_actions_permissions_organization( @@ -293,8 +291,7 @@ def set_github_actions_permissions_organization( headers: Optional[Dict[str, str]] = None, enabled_repositories: Literal["all", "none", "selected"], allowed_actions: Missing[Literal["all", "local_only", "selected"]] = UNSET, - ) -> Response: - ... + ) -> Response: ... def set_github_actions_permissions_organization( self, @@ -333,8 +330,7 @@ async def async_set_github_actions_permissions_organization( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgActionsPermissionsPutBodyType, - ) -> Response: - ... + ) -> Response: ... @overload async def async_set_github_actions_permissions_organization( @@ -345,8 +341,7 @@ async def async_set_github_actions_permissions_organization( headers: Optional[Dict[str, str]] = None, enabled_repositories: Literal["all", "none", "selected"], allowed_actions: Missing[Literal["all", "local_only", "selected"]] = UNSET, - ) -> Response: - ... + ) -> Response: ... async def async_set_github_actions_permissions_organization( self, @@ -443,8 +438,7 @@ def set_selected_repositories_enabled_github_actions_organization( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgActionsPermissionsRepositoriesPutBodyType, - ) -> Response: - ... + ) -> Response: ... @overload def set_selected_repositories_enabled_github_actions_organization( @@ -454,8 +448,7 @@ def set_selected_repositories_enabled_github_actions_organization( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, selected_repository_ids: List[int], - ) -> Response: - ... + ) -> Response: ... def set_selected_repositories_enabled_github_actions_organization( self, @@ -494,8 +487,7 @@ async def async_set_selected_repositories_enabled_github_actions_organization( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgActionsPermissionsRepositoriesPutBodyType, - ) -> Response: - ... + ) -> Response: ... @overload async def async_set_selected_repositories_enabled_github_actions_organization( @@ -505,8 +497,7 @@ async def async_set_selected_repositories_enabled_github_actions_organization( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, selected_repository_ids: List[int], - ) -> Response: - ... + ) -> Response: ... async def async_set_selected_repositories_enabled_github_actions_organization( self, @@ -663,8 +654,7 @@ def set_allowed_actions_organization( *, headers: Optional[Dict[str, str]] = None, data: Missing[SelectedActionsType] = UNSET, - ) -> Response: - ... + ) -> Response: ... @overload def set_allowed_actions_organization( @@ -676,8 +666,7 @@ def set_allowed_actions_organization( github_owned_allowed: Missing[bool] = UNSET, verified_allowed: Missing[bool] = UNSET, patterns_allowed: Missing[List[str]] = UNSET, - ) -> Response: - ... + ) -> Response: ... def set_allowed_actions_organization( self, @@ -716,8 +705,7 @@ async def async_set_allowed_actions_organization( *, headers: Optional[Dict[str, str]] = None, data: Missing[SelectedActionsType] = UNSET, - ) -> Response: - ... + ) -> Response: ... @overload async def async_set_allowed_actions_organization( @@ -729,8 +717,7 @@ async def async_set_allowed_actions_organization( github_owned_allowed: Missing[bool] = UNSET, verified_allowed: Missing[bool] = UNSET, patterns_allowed: Missing[List[str]] = UNSET, - ) -> Response: - ... + ) -> Response: ... async def async_set_allowed_actions_organization( self, @@ -811,8 +798,7 @@ def set_github_actions_default_workflow_permissions_organization( *, headers: Optional[Dict[str, str]] = None, data: Missing[ActionsSetDefaultWorkflowPermissionsType] = UNSET, - ) -> Response: - ... + ) -> Response: ... @overload def set_github_actions_default_workflow_permissions_organization( @@ -823,8 +809,7 @@ def set_github_actions_default_workflow_permissions_organization( headers: Optional[Dict[str, str]] = None, default_workflow_permissions: Missing[Literal["read", "write"]] = UNSET, can_approve_pull_request_reviews: Missing[bool] = UNSET, - ) -> Response: - ... + ) -> Response: ... def set_github_actions_default_workflow_permissions_organization( self, @@ -863,8 +848,7 @@ async def async_set_github_actions_default_workflow_permissions_organization( *, headers: Optional[Dict[str, str]] = None, data: Missing[ActionsSetDefaultWorkflowPermissionsType] = UNSET, - ) -> Response: - ... + ) -> Response: ... @overload async def async_set_github_actions_default_workflow_permissions_organization( @@ -875,8 +859,7 @@ async def async_set_github_actions_default_workflow_permissions_organization( headers: Optional[Dict[str, str]] = None, default_workflow_permissions: Missing[Literal["read", "write"]] = UNSET, can_approve_pull_request_reviews: Missing[bool] = UNSET, - ) -> Response: - ... + ) -> Response: ... async def async_set_github_actions_default_workflow_permissions_organization( self, @@ -1023,8 +1006,7 @@ def generate_runner_jitconfig_for_org( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgActionsRunnersGenerateJitconfigPostBodyType, - ) -> Response[OrgsOrgActionsRunnersGenerateJitconfigPostResponse201]: - ... + ) -> Response[OrgsOrgActionsRunnersGenerateJitconfigPostResponse201]: ... @overload def generate_runner_jitconfig_for_org( @@ -1037,8 +1019,7 @@ def generate_runner_jitconfig_for_org( runner_group_id: int, labels: List[str], work_folder: Missing[str] = UNSET, - ) -> Response[OrgsOrgActionsRunnersGenerateJitconfigPostResponse201]: - ... + ) -> Response[OrgsOrgActionsRunnersGenerateJitconfigPostResponse201]: ... def generate_runner_jitconfig_for_org( self, @@ -1089,8 +1070,7 @@ async def async_generate_runner_jitconfig_for_org( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgActionsRunnersGenerateJitconfigPostBodyType, - ) -> Response[OrgsOrgActionsRunnersGenerateJitconfigPostResponse201]: - ... + ) -> Response[OrgsOrgActionsRunnersGenerateJitconfigPostResponse201]: ... @overload async def async_generate_runner_jitconfig_for_org( @@ -1103,8 +1083,7 @@ async def async_generate_runner_jitconfig_for_org( runner_group_id: int, labels: List[str], work_folder: Missing[str] = UNSET, - ) -> Response[OrgsOrgActionsRunnersGenerateJitconfigPostResponse201]: - ... + ) -> Response[OrgsOrgActionsRunnersGenerateJitconfigPostResponse201]: ... async def async_generate_runner_jitconfig_for_org( self, @@ -1378,8 +1357,7 @@ def set_custom_labels_for_self_hosted_runner_for_org( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgActionsRunnersRunnerIdLabelsPutBodyType, - ) -> Response[OrgsOrgActionsRunnersRunnerIdLabelsGetResponse200]: - ... + ) -> Response[OrgsOrgActionsRunnersRunnerIdLabelsGetResponse200]: ... @overload def set_custom_labels_for_self_hosted_runner_for_org( @@ -1390,8 +1368,7 @@ def set_custom_labels_for_self_hosted_runner_for_org( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, labels: List[str], - ) -> Response[OrgsOrgActionsRunnersRunnerIdLabelsGetResponse200]: - ... + ) -> Response[OrgsOrgActionsRunnersRunnerIdLabelsGetResponse200]: ... def set_custom_labels_for_self_hosted_runner_for_org( self, @@ -1442,8 +1419,7 @@ async def async_set_custom_labels_for_self_hosted_runner_for_org( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgActionsRunnersRunnerIdLabelsPutBodyType, - ) -> Response[OrgsOrgActionsRunnersRunnerIdLabelsGetResponse200]: - ... + ) -> Response[OrgsOrgActionsRunnersRunnerIdLabelsGetResponse200]: ... @overload async def async_set_custom_labels_for_self_hosted_runner_for_org( @@ -1454,8 +1430,7 @@ async def async_set_custom_labels_for_self_hosted_runner_for_org( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, labels: List[str], - ) -> Response[OrgsOrgActionsRunnersRunnerIdLabelsGetResponse200]: - ... + ) -> Response[OrgsOrgActionsRunnersRunnerIdLabelsGetResponse200]: ... async def async_set_custom_labels_for_self_hosted_runner_for_org( self, @@ -1506,8 +1481,7 @@ def add_custom_labels_to_self_hosted_runner_for_org( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgActionsRunnersRunnerIdLabelsPostBodyType, - ) -> Response[OrgsOrgActionsRunnersRunnerIdLabelsGetResponse200]: - ... + ) -> Response[OrgsOrgActionsRunnersRunnerIdLabelsGetResponse200]: ... @overload def add_custom_labels_to_self_hosted_runner_for_org( @@ -1518,8 +1492,7 @@ def add_custom_labels_to_self_hosted_runner_for_org( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, labels: List[str], - ) -> Response[OrgsOrgActionsRunnersRunnerIdLabelsGetResponse200]: - ... + ) -> Response[OrgsOrgActionsRunnersRunnerIdLabelsGetResponse200]: ... def add_custom_labels_to_self_hosted_runner_for_org( self, @@ -1570,8 +1543,7 @@ async def async_add_custom_labels_to_self_hosted_runner_for_org( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgActionsRunnersRunnerIdLabelsPostBodyType, - ) -> Response[OrgsOrgActionsRunnersRunnerIdLabelsGetResponse200]: - ... + ) -> Response[OrgsOrgActionsRunnersRunnerIdLabelsGetResponse200]: ... @overload async def async_add_custom_labels_to_self_hosted_runner_for_org( @@ -1582,8 +1554,7 @@ async def async_add_custom_labels_to_self_hosted_runner_for_org( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, labels: List[str], - ) -> Response[OrgsOrgActionsRunnersRunnerIdLabelsGetResponse200]: - ... + ) -> Response[OrgsOrgActionsRunnersRunnerIdLabelsGetResponse200]: ... async def async_add_custom_labels_to_self_hosted_runner_for_org( self, @@ -1896,8 +1867,7 @@ def create_or_update_org_secret( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgActionsSecretsSecretNamePutBodyType, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... @overload def create_or_update_org_secret( @@ -1911,8 +1881,7 @@ def create_or_update_org_secret( key_id: Missing[str] = UNSET, visibility: Literal["all", "private", "selected"], selected_repository_ids: Missing[List[int]] = UNSET, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... def create_or_update_org_secret( self, @@ -1954,8 +1923,7 @@ async def async_create_or_update_org_secret( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgActionsSecretsSecretNamePutBodyType, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... @overload async def async_create_or_update_org_secret( @@ -1969,8 +1937,7 @@ async def async_create_or_update_org_secret( key_id: Missing[str] = UNSET, visibility: Literal["all", "private", "selected"], selected_repository_ids: Missing[List[int]] = UNSET, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... async def async_create_or_update_org_secret( self, @@ -2110,8 +2077,7 @@ def set_selected_repos_for_org_secret( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgActionsSecretsSecretNameRepositoriesPutBodyType, - ) -> Response: - ... + ) -> Response: ... @overload def set_selected_repos_for_org_secret( @@ -2122,8 +2088,7 @@ def set_selected_repos_for_org_secret( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, selected_repository_ids: List[int], - ) -> Response: - ... + ) -> Response: ... def set_selected_repos_for_org_secret( self, @@ -2166,8 +2131,7 @@ async def async_set_selected_repos_for_org_secret( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgActionsSecretsSecretNameRepositoriesPutBodyType, - ) -> Response: - ... + ) -> Response: ... @overload async def async_set_selected_repos_for_org_secret( @@ -2178,8 +2142,7 @@ async def async_set_selected_repos_for_org_secret( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, selected_repository_ids: List[int], - ) -> Response: - ... + ) -> Response: ... async def async_set_selected_repos_for_org_secret( self, @@ -2363,8 +2326,7 @@ def create_org_variable( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgActionsVariablesPostBodyType, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... @overload def create_org_variable( @@ -2377,8 +2339,7 @@ def create_org_variable( value: str, visibility: Literal["all", "private", "selected"], selected_repository_ids: Missing[List[int]] = UNSET, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... def create_org_variable( self, @@ -2418,8 +2379,7 @@ async def async_create_org_variable( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgActionsVariablesPostBodyType, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... @overload async def async_create_org_variable( @@ -2432,8 +2392,7 @@ async def async_create_org_variable( value: str, visibility: Literal["all", "private", "selected"], selected_repository_ids: Missing[List[int]] = UNSET, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... async def async_create_org_variable( self, @@ -2556,8 +2515,7 @@ def update_org_variable( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgActionsVariablesNamePatchBodyType, - ) -> Response: - ... + ) -> Response: ... @overload def update_org_variable( @@ -2570,8 +2528,7 @@ def update_org_variable( value: Missing[str] = UNSET, visibility: Missing[Literal["all", "private", "selected"]] = UNSET, selected_repository_ids: Missing[List[int]] = UNSET, - ) -> Response: - ... + ) -> Response: ... def update_org_variable( self, @@ -2612,8 +2569,7 @@ async def async_update_org_variable( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgActionsVariablesNamePatchBodyType, - ) -> Response: - ... + ) -> Response: ... @overload async def async_update_org_variable( @@ -2626,8 +2582,7 @@ async def async_update_org_variable( value: Missing[str] = UNSET, visibility: Missing[Literal["all", "private", "selected"]] = UNSET, selected_repository_ids: Missing[List[int]] = UNSET, - ) -> Response: - ... + ) -> Response: ... async def async_update_org_variable( self, @@ -2730,8 +2685,7 @@ def set_selected_repos_for_org_variable( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgActionsVariablesNameRepositoriesPutBodyType, - ) -> Response: - ... + ) -> Response: ... @overload def set_selected_repos_for_org_variable( @@ -2742,8 +2696,7 @@ def set_selected_repos_for_org_variable( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, selected_repository_ids: List[int], - ) -> Response: - ... + ) -> Response: ... def set_selected_repos_for_org_variable( self, @@ -2787,8 +2740,7 @@ async def async_set_selected_repos_for_org_variable( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgActionsVariablesNameRepositoriesPutBodyType, - ) -> Response: - ... + ) -> Response: ... @overload async def async_set_selected_repos_for_org_variable( @@ -2799,8 +2751,7 @@ async def async_set_selected_repos_for_org_variable( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, selected_repository_ids: List[int], - ) -> Response: - ... + ) -> Response: ... async def async_set_selected_repos_for_org_variable( self, @@ -3443,8 +3394,7 @@ def re_run_job_for_workflow_run( data: Missing[ Union[ReposOwnerRepoActionsJobsJobIdRerunPostBodyType, None] ] = UNSET, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... @overload def re_run_job_for_workflow_run( @@ -3456,8 +3406,7 @@ def re_run_job_for_workflow_run( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, enable_debug_logging: Missing[bool] = UNSET, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... def re_run_job_for_workflow_run( self, @@ -3516,8 +3465,7 @@ async def async_re_run_job_for_workflow_run( data: Missing[ Union[ReposOwnerRepoActionsJobsJobIdRerunPostBodyType, None] ] = UNSET, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... @overload async def async_re_run_job_for_workflow_run( @@ -3529,8 +3477,7 @@ async def async_re_run_job_for_workflow_run( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, enable_debug_logging: Missing[bool] = UNSET, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... async def async_re_run_job_for_workflow_run( self, @@ -3638,8 +3585,7 @@ def set_custom_oidc_sub_claim_for_repo( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoActionsOidcCustomizationSubPutBodyType, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... @overload def set_custom_oidc_sub_claim_for_repo( @@ -3651,8 +3597,7 @@ def set_custom_oidc_sub_claim_for_repo( headers: Optional[Dict[str, str]] = None, use_default: bool, include_claim_keys: Missing[List[str]] = UNSET, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... def set_custom_oidc_sub_claim_for_repo( self, @@ -3706,8 +3651,7 @@ async def async_set_custom_oidc_sub_claim_for_repo( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoActionsOidcCustomizationSubPutBodyType, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... @overload async def async_set_custom_oidc_sub_claim_for_repo( @@ -3719,8 +3663,7 @@ async def async_set_custom_oidc_sub_claim_for_repo( headers: Optional[Dict[str, str]] = None, use_default: bool, include_claim_keys: Missing[List[str]] = UNSET, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... async def async_set_custom_oidc_sub_claim_for_repo( self, @@ -3938,8 +3881,7 @@ def set_github_actions_permissions_repository( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoActionsPermissionsPutBodyType, - ) -> Response: - ... + ) -> Response: ... @overload def set_github_actions_permissions_repository( @@ -3951,8 +3893,7 @@ def set_github_actions_permissions_repository( headers: Optional[Dict[str, str]] = None, enabled: bool, allowed_actions: Missing[Literal["all", "local_only", "selected"]] = UNSET, - ) -> Response: - ... + ) -> Response: ... def set_github_actions_permissions_repository( self, @@ -3993,8 +3934,7 @@ async def async_set_github_actions_permissions_repository( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoActionsPermissionsPutBodyType, - ) -> Response: - ... + ) -> Response: ... @overload async def async_set_github_actions_permissions_repository( @@ -4006,8 +3946,7 @@ async def async_set_github_actions_permissions_repository( headers: Optional[Dict[str, str]] = None, enabled: bool, allowed_actions: Missing[Literal["all", "local_only", "selected"]] = UNSET, - ) -> Response: - ... + ) -> Response: ... async def async_set_github_actions_permissions_repository( self, @@ -4092,8 +4031,7 @@ def set_workflow_access_to_repository( *, headers: Optional[Dict[str, str]] = None, data: ActionsWorkflowAccessToRepositoryType, - ) -> Response: - ... + ) -> Response: ... @overload def set_workflow_access_to_repository( @@ -4104,8 +4042,7 @@ def set_workflow_access_to_repository( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, access_level: Literal["none", "user", "organization"], - ) -> Response: - ... + ) -> Response: ... def set_workflow_access_to_repository( self, @@ -4146,8 +4083,7 @@ async def async_set_workflow_access_to_repository( *, headers: Optional[Dict[str, str]] = None, data: ActionsWorkflowAccessToRepositoryType, - ) -> Response: - ... + ) -> Response: ... @overload async def async_set_workflow_access_to_repository( @@ -4158,8 +4094,7 @@ async def async_set_workflow_access_to_repository( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, access_level: Literal["none", "user", "organization"], - ) -> Response: - ... + ) -> Response: ... async def async_set_workflow_access_to_repository( self, @@ -4244,8 +4179,7 @@ def set_allowed_actions_repository( *, headers: Optional[Dict[str, str]] = None, data: Missing[SelectedActionsType] = UNSET, - ) -> Response: - ... + ) -> Response: ... @overload def set_allowed_actions_repository( @@ -4258,8 +4192,7 @@ def set_allowed_actions_repository( github_owned_allowed: Missing[bool] = UNSET, verified_allowed: Missing[bool] = UNSET, patterns_allowed: Missing[List[str]] = UNSET, - ) -> Response: - ... + ) -> Response: ... def set_allowed_actions_repository( self, @@ -4300,8 +4233,7 @@ async def async_set_allowed_actions_repository( *, headers: Optional[Dict[str, str]] = None, data: Missing[SelectedActionsType] = UNSET, - ) -> Response: - ... + ) -> Response: ... @overload async def async_set_allowed_actions_repository( @@ -4314,8 +4246,7 @@ async def async_set_allowed_actions_repository( github_owned_allowed: Missing[bool] = UNSET, verified_allowed: Missing[bool] = UNSET, patterns_allowed: Missing[List[str]] = UNSET, - ) -> Response: - ... + ) -> Response: ... async def async_set_allowed_actions_repository( self, @@ -4400,8 +4331,7 @@ def set_github_actions_default_workflow_permissions_repository( *, headers: Optional[Dict[str, str]] = None, data: ActionsSetDefaultWorkflowPermissionsType, - ) -> Response: - ... + ) -> Response: ... @overload def set_github_actions_default_workflow_permissions_repository( @@ -4413,8 +4343,7 @@ def set_github_actions_default_workflow_permissions_repository( headers: Optional[Dict[str, str]] = None, default_workflow_permissions: Missing[Literal["read", "write"]] = UNSET, can_approve_pull_request_reviews: Missing[bool] = UNSET, - ) -> Response: - ... + ) -> Response: ... def set_github_actions_default_workflow_permissions_repository( self, @@ -4456,8 +4385,7 @@ async def async_set_github_actions_default_workflow_permissions_repository( *, headers: Optional[Dict[str, str]] = None, data: ActionsSetDefaultWorkflowPermissionsType, - ) -> Response: - ... + ) -> Response: ... @overload async def async_set_github_actions_default_workflow_permissions_repository( @@ -4469,8 +4397,7 @@ async def async_set_github_actions_default_workflow_permissions_repository( headers: Optional[Dict[str, str]] = None, default_workflow_permissions: Missing[Literal["read", "write"]] = UNSET, can_approve_pull_request_reviews: Missing[bool] = UNSET, - ) -> Response: - ... + ) -> Response: ... async def async_set_github_actions_default_workflow_permissions_repository( self, @@ -4624,8 +4551,7 @@ def generate_runner_jitconfig_for_repo( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoActionsRunnersGenerateJitconfigPostBodyType, - ) -> Response[OrgsOrgActionsRunnersGenerateJitconfigPostResponse201]: - ... + ) -> Response[OrgsOrgActionsRunnersGenerateJitconfigPostResponse201]: ... @overload def generate_runner_jitconfig_for_repo( @@ -4639,8 +4565,7 @@ def generate_runner_jitconfig_for_repo( runner_group_id: int, labels: List[str], work_folder: Missing[str] = UNSET, - ) -> Response[OrgsOrgActionsRunnersGenerateJitconfigPostResponse201]: - ... + ) -> Response[OrgsOrgActionsRunnersGenerateJitconfigPostResponse201]: ... def generate_runner_jitconfig_for_repo( self, @@ -4695,8 +4620,7 @@ async def async_generate_runner_jitconfig_for_repo( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoActionsRunnersGenerateJitconfigPostBodyType, - ) -> Response[OrgsOrgActionsRunnersGenerateJitconfigPostResponse201]: - ... + ) -> Response[OrgsOrgActionsRunnersGenerateJitconfigPostResponse201]: ... @overload async def async_generate_runner_jitconfig_for_repo( @@ -4710,8 +4634,7 @@ async def async_generate_runner_jitconfig_for_repo( runner_group_id: int, labels: List[str], work_folder: Missing[str] = UNSET, - ) -> Response[OrgsOrgActionsRunnersGenerateJitconfigPostResponse201]: - ... + ) -> Response[OrgsOrgActionsRunnersGenerateJitconfigPostResponse201]: ... async def async_generate_runner_jitconfig_for_repo( self, @@ -4999,8 +4922,7 @@ def set_custom_labels_for_self_hosted_runner_for_repo( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoActionsRunnersRunnerIdLabelsPutBodyType, - ) -> Response[OrgsOrgActionsRunnersRunnerIdLabelsGetResponse200]: - ... + ) -> Response[OrgsOrgActionsRunnersRunnerIdLabelsGetResponse200]: ... @overload def set_custom_labels_for_self_hosted_runner_for_repo( @@ -5012,8 +4934,7 @@ def set_custom_labels_for_self_hosted_runner_for_repo( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, labels: List[str], - ) -> Response[OrgsOrgActionsRunnersRunnerIdLabelsGetResponse200]: - ... + ) -> Response[OrgsOrgActionsRunnersRunnerIdLabelsGetResponse200]: ... def set_custom_labels_for_self_hosted_runner_for_repo( self, @@ -5068,8 +4989,7 @@ async def async_set_custom_labels_for_self_hosted_runner_for_repo( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoActionsRunnersRunnerIdLabelsPutBodyType, - ) -> Response[OrgsOrgActionsRunnersRunnerIdLabelsGetResponse200]: - ... + ) -> Response[OrgsOrgActionsRunnersRunnerIdLabelsGetResponse200]: ... @overload async def async_set_custom_labels_for_self_hosted_runner_for_repo( @@ -5081,8 +5001,7 @@ async def async_set_custom_labels_for_self_hosted_runner_for_repo( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, labels: List[str], - ) -> Response[OrgsOrgActionsRunnersRunnerIdLabelsGetResponse200]: - ... + ) -> Response[OrgsOrgActionsRunnersRunnerIdLabelsGetResponse200]: ... async def async_set_custom_labels_for_self_hosted_runner_for_repo( self, @@ -5137,8 +5056,7 @@ def add_custom_labels_to_self_hosted_runner_for_repo( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoActionsRunnersRunnerIdLabelsPostBodyType, - ) -> Response[OrgsOrgActionsRunnersRunnerIdLabelsGetResponse200]: - ... + ) -> Response[OrgsOrgActionsRunnersRunnerIdLabelsGetResponse200]: ... @overload def add_custom_labels_to_self_hosted_runner_for_repo( @@ -5150,8 +5068,7 @@ def add_custom_labels_to_self_hosted_runner_for_repo( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, labels: List[str], - ) -> Response[OrgsOrgActionsRunnersRunnerIdLabelsGetResponse200]: - ... + ) -> Response[OrgsOrgActionsRunnersRunnerIdLabelsGetResponse200]: ... def add_custom_labels_to_self_hosted_runner_for_repo( self, @@ -5206,8 +5123,7 @@ async def async_add_custom_labels_to_self_hosted_runner_for_repo( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoActionsRunnersRunnerIdLabelsPostBodyType, - ) -> Response[OrgsOrgActionsRunnersRunnerIdLabelsGetResponse200]: - ... + ) -> Response[OrgsOrgActionsRunnersRunnerIdLabelsGetResponse200]: ... @overload async def async_add_custom_labels_to_self_hosted_runner_for_repo( @@ -5219,8 +5135,7 @@ async def async_add_custom_labels_to_self_hosted_runner_for_repo( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, labels: List[str], - ) -> Response[OrgsOrgActionsRunnersRunnerIdLabelsGetResponse200]: - ... + ) -> Response[OrgsOrgActionsRunnersRunnerIdLabelsGetResponse200]: ... async def async_add_custom_labels_to_self_hosted_runner_for_repo( self, @@ -6027,8 +5942,7 @@ def review_custom_gates_for_run( data: Union[ ReviewCustomGatesCommentRequiredType, ReviewCustomGatesStateRequiredType ], - ) -> Response: - ... + ) -> Response: ... @overload def review_custom_gates_for_run( @@ -6041,8 +5955,7 @@ def review_custom_gates_for_run( headers: Optional[Dict[str, str]] = None, environment_name: str, comment: str, - ) -> Response: - ... + ) -> Response: ... @overload def review_custom_gates_for_run( @@ -6056,8 +5969,7 @@ def review_custom_gates_for_run( environment_name: str, state: Literal["approved", "rejected"], comment: Missing[str] = UNSET, - ) -> Response: - ... + ) -> Response: ... def review_custom_gates_for_run( self, @@ -6114,8 +6026,7 @@ async def async_review_custom_gates_for_run( data: Union[ ReviewCustomGatesCommentRequiredType, ReviewCustomGatesStateRequiredType ], - ) -> Response: - ... + ) -> Response: ... @overload async def async_review_custom_gates_for_run( @@ -6128,8 +6039,7 @@ async def async_review_custom_gates_for_run( headers: Optional[Dict[str, str]] = None, environment_name: str, comment: str, - ) -> Response: - ... + ) -> Response: ... @overload async def async_review_custom_gates_for_run( @@ -6143,8 +6053,7 @@ async def async_review_custom_gates_for_run( environment_name: str, state: Literal["approved", "rejected"], comment: Missing[str] = UNSET, - ) -> Response: - ... + ) -> Response: ... async def async_review_custom_gates_for_run( self, @@ -6459,8 +6368,7 @@ def review_pending_deployments_for_run( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoActionsRunsRunIdPendingDeploymentsPostBodyType, - ) -> Response[List[Deployment]]: - ... + ) -> Response[List[Deployment]]: ... @overload def review_pending_deployments_for_run( @@ -6474,8 +6382,7 @@ def review_pending_deployments_for_run( environment_ids: List[int], state: Literal["approved", "rejected"], comment: str, - ) -> Response[List[Deployment]]: - ... + ) -> Response[List[Deployment]]: ... def review_pending_deployments_for_run( self, @@ -6528,8 +6435,7 @@ async def async_review_pending_deployments_for_run( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoActionsRunsRunIdPendingDeploymentsPostBodyType, - ) -> Response[List[Deployment]]: - ... + ) -> Response[List[Deployment]]: ... @overload async def async_review_pending_deployments_for_run( @@ -6543,8 +6449,7 @@ async def async_review_pending_deployments_for_run( environment_ids: List[int], state: Literal["approved", "rejected"], comment: str, - ) -> Response[List[Deployment]]: - ... + ) -> Response[List[Deployment]]: ... async def async_review_pending_deployments_for_run( self, @@ -6599,8 +6504,7 @@ def re_run_workflow( data: Missing[ Union[ReposOwnerRepoActionsRunsRunIdRerunPostBodyType, None] ] = UNSET, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... @overload def re_run_workflow( @@ -6612,8 +6516,7 @@ def re_run_workflow( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, enable_debug_logging: Missing[bool] = UNSET, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... def re_run_workflow( self, @@ -6665,8 +6568,7 @@ async def async_re_run_workflow( data: Missing[ Union[ReposOwnerRepoActionsRunsRunIdRerunPostBodyType, None] ] = UNSET, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... @overload async def async_re_run_workflow( @@ -6678,8 +6580,7 @@ async def async_re_run_workflow( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, enable_debug_logging: Missing[bool] = UNSET, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... async def async_re_run_workflow( self, @@ -6731,8 +6632,7 @@ def re_run_workflow_failed_jobs( data: Missing[ Union[ReposOwnerRepoActionsRunsRunIdRerunFailedJobsPostBodyType, None] ] = UNSET, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... @overload def re_run_workflow_failed_jobs( @@ -6744,8 +6644,7 @@ def re_run_workflow_failed_jobs( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, enable_debug_logging: Missing[bool] = UNSET, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... def re_run_workflow_failed_jobs( self, @@ -6800,8 +6699,7 @@ async def async_re_run_workflow_failed_jobs( data: Missing[ Union[ReposOwnerRepoActionsRunsRunIdRerunFailedJobsPostBodyType, None] ] = UNSET, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... @overload async def async_re_run_workflow_failed_jobs( @@ -6813,8 +6711,7 @@ async def async_re_run_workflow_failed_jobs( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, enable_debug_logging: Missing[bool] = UNSET, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... async def async_re_run_workflow_failed_jobs( self, @@ -7063,8 +6960,7 @@ def create_or_update_repo_secret( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoActionsSecretsSecretNamePutBodyType, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... @overload def create_or_update_repo_secret( @@ -7077,8 +6973,7 @@ def create_or_update_repo_secret( headers: Optional[Dict[str, str]] = None, encrypted_value: Missing[str] = UNSET, key_id: Missing[str] = UNSET, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... def create_or_update_repo_secret( self, @@ -7122,8 +7017,7 @@ async def async_create_or_update_repo_secret( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoActionsSecretsSecretNamePutBodyType, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... @overload async def async_create_or_update_repo_secret( @@ -7136,8 +7030,7 @@ async def async_create_or_update_repo_secret( headers: Optional[Dict[str, str]] = None, encrypted_value: Missing[str] = UNSET, key_id: Missing[str] = UNSET, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... async def async_create_or_update_repo_secret( self, @@ -7280,8 +7173,7 @@ def create_repo_variable( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoActionsVariablesPostBodyType, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... @overload def create_repo_variable( @@ -7293,8 +7185,7 @@ def create_repo_variable( headers: Optional[Dict[str, str]] = None, name: str, value: str, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... def create_repo_variable( self, @@ -7336,8 +7227,7 @@ async def async_create_repo_variable( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoActionsVariablesPostBodyType, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... @overload async def async_create_repo_variable( @@ -7349,8 +7239,7 @@ async def async_create_repo_variable( headers: Optional[Dict[str, str]] = None, name: str, value: str, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... async def async_create_repo_variable( self, @@ -7479,8 +7368,7 @@ def update_repo_variable( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoActionsVariablesNamePatchBodyType, - ) -> Response: - ... + ) -> Response: ... @overload def update_repo_variable( @@ -7492,8 +7380,7 @@ def update_repo_variable( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, value: Missing[str] = UNSET, - ) -> Response: - ... + ) -> Response: ... def update_repo_variable( self, @@ -7536,8 +7423,7 @@ async def async_update_repo_variable( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoActionsVariablesNamePatchBodyType, - ) -> Response: - ... + ) -> Response: ... @overload async def async_update_repo_variable( @@ -7549,8 +7435,7 @@ async def async_update_repo_variable( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, value: Missing[str] = UNSET, - ) -> Response: - ... + ) -> Response: ... async def async_update_repo_variable( self, @@ -7739,8 +7624,7 @@ def create_workflow_dispatch( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoActionsWorkflowsWorkflowIdDispatchesPostBodyType, - ) -> Response: - ... + ) -> Response: ... @overload def create_workflow_dispatch( @@ -7755,8 +7639,7 @@ def create_workflow_dispatch( inputs: Missing[ ReposOwnerRepoActionsWorkflowsWorkflowIdDispatchesPostBodyPropInputsType ] = UNSET, - ) -> Response: - ... + ) -> Response: ... def create_workflow_dispatch( self, @@ -7803,8 +7686,7 @@ async def async_create_workflow_dispatch( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoActionsWorkflowsWorkflowIdDispatchesPostBodyType, - ) -> Response: - ... + ) -> Response: ... @overload async def async_create_workflow_dispatch( @@ -7819,8 +7701,7 @@ async def async_create_workflow_dispatch( inputs: Missing[ ReposOwnerRepoActionsWorkflowsWorkflowIdDispatchesPostBodyPropInputsType ] = UNSET, - ) -> Response: - ... + ) -> Response: ... async def async_create_workflow_dispatch( self, @@ -8246,8 +8127,7 @@ def create_or_update_environment_secret( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoEnvironmentsEnvironmentNameSecretsSecretNamePutBodyType, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... @overload def create_or_update_environment_secret( @@ -8261,8 +8141,7 @@ def create_or_update_environment_secret( headers: Optional[Dict[str, str]] = None, encrypted_value: str, key_id: str, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... def create_or_update_environment_secret( self, @@ -8315,8 +8194,7 @@ async def async_create_or_update_environment_secret( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoEnvironmentsEnvironmentNameSecretsSecretNamePutBodyType, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... @overload async def async_create_or_update_environment_secret( @@ -8330,8 +8208,7 @@ async def async_create_or_update_environment_secret( headers: Optional[Dict[str, str]] = None, encrypted_value: str, key_id: str, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... async def async_create_or_update_environment_secret( self, @@ -8491,8 +8368,7 @@ def create_environment_variable( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoEnvironmentsEnvironmentNameVariablesPostBodyType, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... @overload def create_environment_variable( @@ -8505,8 +8381,7 @@ def create_environment_variable( headers: Optional[Dict[str, str]] = None, name: str, value: str, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... def create_environment_variable( self, @@ -8557,8 +8432,7 @@ async def async_create_environment_variable( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoEnvironmentsEnvironmentNameVariablesPostBodyType, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... @overload async def async_create_environment_variable( @@ -8571,8 +8445,7 @@ async def async_create_environment_variable( headers: Optional[Dict[str, str]] = None, name: str, value: str, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... async def async_create_environment_variable( self, @@ -8714,8 +8587,7 @@ def update_environment_variable( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoEnvironmentsEnvironmentNameVariablesNamePatchBodyType, - ) -> Response: - ... + ) -> Response: ... @overload def update_environment_variable( @@ -8728,8 +8600,7 @@ def update_environment_variable( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, value: Missing[str] = UNSET, - ) -> Response: - ... + ) -> Response: ... def update_environment_variable( self, @@ -8780,8 +8651,7 @@ async def async_update_environment_variable( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoEnvironmentsEnvironmentNameVariablesNamePatchBodyType, - ) -> Response: - ... + ) -> Response: ... @overload async def async_update_environment_variable( @@ -8794,8 +8664,7 @@ async def async_update_environment_variable( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, value: Missing[str] = UNSET, - ) -> Response: - ... + ) -> Response: ... async def async_update_environment_variable( self, diff --git a/githubkit/versions/v2022_11_28/rest/activity.py b/githubkit/versions/v2022_11_28/rest/activity.py index fbafd070e..88429533f 100644 --- a/githubkit/versions/v2022_11_28/rest/activity.py +++ b/githubkit/versions/v2022_11_28/rest/activity.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref @@ -345,8 +344,7 @@ def mark_notifications_as_read( *, headers: Optional[Dict[str, str]] = None, data: Missing[NotificationsPutBodyType] = UNSET, - ) -> Response[NotificationsPutResponse202]: - ... + ) -> Response[NotificationsPutResponse202]: ... @overload def mark_notifications_as_read( @@ -356,8 +354,7 @@ def mark_notifications_as_read( headers: Optional[Dict[str, str]] = None, last_read_at: Missing[datetime] = UNSET, read: Missing[bool] = UNSET, - ) -> Response[NotificationsPutResponse202]: - ... + ) -> Response[NotificationsPutResponse202]: ... def mark_notifications_as_read( self, @@ -403,8 +400,7 @@ async def async_mark_notifications_as_read( *, headers: Optional[Dict[str, str]] = None, data: Missing[NotificationsPutBodyType] = UNSET, - ) -> Response[NotificationsPutResponse202]: - ... + ) -> Response[NotificationsPutResponse202]: ... @overload async def async_mark_notifications_as_read( @@ -414,8 +410,7 @@ async def async_mark_notifications_as_read( headers: Optional[Dict[str, str]] = None, last_read_at: Missing[datetime] = UNSET, read: Missing[bool] = UNSET, - ) -> Response[NotificationsPutResponse202]: - ... + ) -> Response[NotificationsPutResponse202]: ... async def async_mark_notifications_as_read( self, @@ -644,8 +639,7 @@ def set_thread_subscription( *, headers: Optional[Dict[str, str]] = None, data: Missing[NotificationsThreadsThreadIdSubscriptionPutBodyType] = UNSET, - ) -> Response[ThreadSubscription]: - ... + ) -> Response[ThreadSubscription]: ... @overload def set_thread_subscription( @@ -655,8 +649,7 @@ def set_thread_subscription( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, ignored: Missing[bool] = UNSET, - ) -> Response[ThreadSubscription]: - ... + ) -> Response[ThreadSubscription]: ... def set_thread_subscription( self, @@ -706,8 +699,7 @@ async def async_set_thread_subscription( *, headers: Optional[Dict[str, str]] = None, data: Missing[NotificationsThreadsThreadIdSubscriptionPutBodyType] = UNSET, - ) -> Response[ThreadSubscription]: - ... + ) -> Response[ThreadSubscription]: ... @overload async def async_set_thread_subscription( @@ -717,8 +709,7 @@ async def async_set_thread_subscription( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, ignored: Missing[bool] = UNSET, - ) -> Response[ThreadSubscription]: - ... + ) -> Response[ThreadSubscription]: ... async def async_set_thread_subscription( self, @@ -1023,8 +1014,7 @@ def mark_repo_notifications_as_read( *, headers: Optional[Dict[str, str]] = None, data: Missing[ReposOwnerRepoNotificationsPutBodyType] = UNSET, - ) -> Response[ReposOwnerRepoNotificationsPutResponse202]: - ... + ) -> Response[ReposOwnerRepoNotificationsPutResponse202]: ... @overload def mark_repo_notifications_as_read( @@ -1035,8 +1025,7 @@ def mark_repo_notifications_as_read( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, last_read_at: Missing[datetime] = UNSET, - ) -> Response[ReposOwnerRepoNotificationsPutResponse202]: - ... + ) -> Response[ReposOwnerRepoNotificationsPutResponse202]: ... def mark_repo_notifications_as_read( self, @@ -1081,8 +1070,7 @@ async def async_mark_repo_notifications_as_read( *, headers: Optional[Dict[str, str]] = None, data: Missing[ReposOwnerRepoNotificationsPutBodyType] = UNSET, - ) -> Response[ReposOwnerRepoNotificationsPutResponse202]: - ... + ) -> Response[ReposOwnerRepoNotificationsPutResponse202]: ... @overload async def async_mark_repo_notifications_as_read( @@ -1093,8 +1081,7 @@ async def async_mark_repo_notifications_as_read( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, last_read_at: Missing[datetime] = UNSET, - ) -> Response[ReposOwnerRepoNotificationsPutResponse202]: - ... + ) -> Response[ReposOwnerRepoNotificationsPutResponse202]: ... async def async_mark_repo_notifications_as_read( self, @@ -1323,8 +1310,7 @@ def set_repo_subscription( *, headers: Optional[Dict[str, str]] = None, data: Missing[ReposOwnerRepoSubscriptionPutBodyType] = UNSET, - ) -> Response[RepositorySubscription]: - ... + ) -> Response[RepositorySubscription]: ... @overload def set_repo_subscription( @@ -1336,8 +1322,7 @@ def set_repo_subscription( headers: Optional[Dict[str, str]] = None, subscribed: Missing[bool] = UNSET, ignored: Missing[bool] = UNSET, - ) -> Response[RepositorySubscription]: - ... + ) -> Response[RepositorySubscription]: ... def set_repo_subscription( self, @@ -1379,8 +1364,7 @@ async def async_set_repo_subscription( *, headers: Optional[Dict[str, str]] = None, data: Missing[ReposOwnerRepoSubscriptionPutBodyType] = UNSET, - ) -> Response[RepositorySubscription]: - ... + ) -> Response[RepositorySubscription]: ... @overload async def async_set_repo_subscription( @@ -1392,8 +1376,7 @@ async def async_set_repo_subscription( headers: Optional[Dict[str, str]] = None, subscribed: Missing[bool] = UNSET, ignored: Missing[bool] = UNSET, - ) -> Response[RepositorySubscription]: - ... + ) -> Response[RepositorySubscription]: ... async def async_set_repo_subscription( self, diff --git a/githubkit/versions/v2022_11_28/rest/apps.py b/githubkit/versions/v2022_11_28/rest/apps.py index 9676d6436..7fbead70d 100644 --- a/githubkit/versions/v2022_11_28/rest/apps.py +++ b/githubkit/versions/v2022_11_28/rest/apps.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref @@ -217,8 +216,7 @@ def update_webhook_config_for_app( *, headers: Optional[Dict[str, str]] = None, data: AppHookConfigPatchBodyType, - ) -> Response[WebhookConfig]: - ... + ) -> Response[WebhookConfig]: ... @overload def update_webhook_config_for_app( @@ -230,8 +228,7 @@ def update_webhook_config_for_app( content_type: Missing[str] = UNSET, secret: Missing[str] = UNSET, insecure_ssl: Missing[Union[str, float]] = UNSET, - ) -> Response[WebhookConfig]: - ... + ) -> Response[WebhookConfig]: ... def update_webhook_config_for_app( self, @@ -269,8 +266,7 @@ async def async_update_webhook_config_for_app( *, headers: Optional[Dict[str, str]] = None, data: AppHookConfigPatchBodyType, - ) -> Response[WebhookConfig]: - ... + ) -> Response[WebhookConfig]: ... @overload async def async_update_webhook_config_for_app( @@ -282,8 +278,7 @@ async def async_update_webhook_config_for_app( content_type: Missing[str] = UNSET, secret: Missing[str] = UNSET, insecure_ssl: Missing[Union[str, float]] = UNSET, - ) -> Response[WebhookConfig]: - ... + ) -> Response[WebhookConfig]: ... async def async_update_webhook_config_for_app( self, @@ -730,8 +725,7 @@ def create_installation_access_token( *, headers: Optional[Dict[str, str]] = None, data: Missing[AppInstallationsInstallationIdAccessTokensPostBodyType] = UNSET, - ) -> Response[InstallationToken]: - ... + ) -> Response[InstallationToken]: ... @overload def create_installation_access_token( @@ -743,8 +737,7 @@ def create_installation_access_token( repositories: Missing[List[str]] = UNSET, repository_ids: Missing[List[int]] = UNSET, permissions: Missing[AppPermissionsType] = UNSET, - ) -> Response[InstallationToken]: - ... + ) -> Response[InstallationToken]: ... def create_installation_access_token( self, @@ -797,8 +790,7 @@ async def async_create_installation_access_token( *, headers: Optional[Dict[str, str]] = None, data: Missing[AppInstallationsInstallationIdAccessTokensPostBodyType] = UNSET, - ) -> Response[InstallationToken]: - ... + ) -> Response[InstallationToken]: ... @overload async def async_create_installation_access_token( @@ -810,8 +802,7 @@ async def async_create_installation_access_token( repositories: Missing[List[str]] = UNSET, repository_ids: Missing[List[int]] = UNSET, permissions: Missing[AppPermissionsType] = UNSET, - ) -> Response[InstallationToken]: - ... + ) -> Response[InstallationToken]: ... async def async_create_installation_access_token( self, @@ -956,8 +947,7 @@ def delete_authorization( *, headers: Optional[Dict[str, str]] = None, data: ApplicationsClientIdGrantDeleteBodyType, - ) -> Response: - ... + ) -> Response: ... @overload def delete_authorization( @@ -967,8 +957,7 @@ def delete_authorization( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, access_token: str, - ) -> Response: - ... + ) -> Response: ... def delete_authorization( self, @@ -1010,8 +999,7 @@ async def async_delete_authorization( *, headers: Optional[Dict[str, str]] = None, data: ApplicationsClientIdGrantDeleteBodyType, - ) -> Response: - ... + ) -> Response: ... @overload async def async_delete_authorization( @@ -1021,8 +1009,7 @@ async def async_delete_authorization( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, access_token: str, - ) -> Response: - ... + ) -> Response: ... async def async_delete_authorization( self, @@ -1064,8 +1051,7 @@ def check_token( *, headers: Optional[Dict[str, str]] = None, data: ApplicationsClientIdTokenPostBodyType, - ) -> Response[Authorization]: - ... + ) -> Response[Authorization]: ... @overload def check_token( @@ -1075,8 +1061,7 @@ def check_token( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, access_token: str, - ) -> Response[Authorization]: - ... + ) -> Response[Authorization]: ... def check_token( self, @@ -1125,8 +1110,7 @@ async def async_check_token( *, headers: Optional[Dict[str, str]] = None, data: ApplicationsClientIdTokenPostBodyType, - ) -> Response[Authorization]: - ... + ) -> Response[Authorization]: ... @overload async def async_check_token( @@ -1136,8 +1120,7 @@ async def async_check_token( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, access_token: str, - ) -> Response[Authorization]: - ... + ) -> Response[Authorization]: ... async def async_check_token( self, @@ -1186,8 +1169,7 @@ def delete_token( *, headers: Optional[Dict[str, str]] = None, data: ApplicationsClientIdTokenDeleteBodyType, - ) -> Response: - ... + ) -> Response: ... @overload def delete_token( @@ -1197,8 +1179,7 @@ def delete_token( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, access_token: str, - ) -> Response: - ... + ) -> Response: ... def delete_token( self, @@ -1240,8 +1221,7 @@ async def async_delete_token( *, headers: Optional[Dict[str, str]] = None, data: ApplicationsClientIdTokenDeleteBodyType, - ) -> Response: - ... + ) -> Response: ... @overload async def async_delete_token( @@ -1251,8 +1231,7 @@ async def async_delete_token( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, access_token: str, - ) -> Response: - ... + ) -> Response: ... async def async_delete_token( self, @@ -1294,8 +1273,7 @@ def reset_token( *, headers: Optional[Dict[str, str]] = None, data: ApplicationsClientIdTokenPatchBodyType, - ) -> Response[Authorization]: - ... + ) -> Response[Authorization]: ... @overload def reset_token( @@ -1305,8 +1283,7 @@ def reset_token( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, access_token: str, - ) -> Response[Authorization]: - ... + ) -> Response[Authorization]: ... def reset_token( self, @@ -1353,8 +1330,7 @@ async def async_reset_token( *, headers: Optional[Dict[str, str]] = None, data: ApplicationsClientIdTokenPatchBodyType, - ) -> Response[Authorization]: - ... + ) -> Response[Authorization]: ... @overload async def async_reset_token( @@ -1364,8 +1340,7 @@ async def async_reset_token( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, access_token: str, - ) -> Response[Authorization]: - ... + ) -> Response[Authorization]: ... async def async_reset_token( self, @@ -1412,8 +1387,7 @@ def scope_token( *, headers: Optional[Dict[str, str]] = None, data: ApplicationsClientIdTokenScopedPostBodyType, - ) -> Response[Authorization]: - ... + ) -> Response[Authorization]: ... @overload def scope_token( @@ -1428,8 +1402,7 @@ def scope_token( repositories: Missing[List[str]] = UNSET, repository_ids: Missing[List[int]] = UNSET, permissions: Missing[AppPermissionsType] = UNSET, - ) -> Response[Authorization]: - ... + ) -> Response[Authorization]: ... def scope_token( self, @@ -1480,8 +1453,7 @@ async def async_scope_token( *, headers: Optional[Dict[str, str]] = None, data: ApplicationsClientIdTokenScopedPostBodyType, - ) -> Response[Authorization]: - ... + ) -> Response[Authorization]: ... @overload async def async_scope_token( @@ -1496,8 +1468,7 @@ async def async_scope_token( repositories: Missing[List[str]] = UNSET, repository_ids: Missing[List[int]] = UNSET, permissions: Missing[AppPermissionsType] = UNSET, - ) -> Response[Authorization]: - ... + ) -> Response[Authorization]: ... async def async_scope_token( self, diff --git a/githubkit/versions/v2022_11_28/rest/billing.py b/githubkit/versions/v2022_11_28/rest/billing.py index cec93552d..5f81c8796 100644 --- a/githubkit/versions/v2022_11_28/rest/billing.py +++ b/githubkit/versions/v2022_11_28/rest/billing.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref diff --git a/githubkit/versions/v2022_11_28/rest/checks.py b/githubkit/versions/v2022_11_28/rest/checks.py index c1bf5a172..0dd21cd6d 100644 --- a/githubkit/versions/v2022_11_28/rest/checks.py +++ b/githubkit/versions/v2022_11_28/rest/checks.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref @@ -79,8 +78,7 @@ def create( ReposOwnerRepoCheckRunsPostBodyOneof0Type, ReposOwnerRepoCheckRunsPostBodyOneof1Type, ], - ) -> Response[CheckRun]: - ... + ) -> Response[CheckRun]: ... @overload def create( @@ -111,8 +109,7 @@ def create( actions: Missing[ List[ReposOwnerRepoCheckRunsPostBodyPropActionsItemsType] ] = UNSET, - ) -> Response[CheckRun]: - ... + ) -> Response[CheckRun]: ... @overload def create( @@ -145,8 +142,7 @@ def create( actions: Missing[ List[ReposOwnerRepoCheckRunsPostBodyPropActionsItemsType] ] = UNSET, - ) -> Response[CheckRun]: - ... + ) -> Response[CheckRun]: ... def create( self, @@ -208,8 +204,7 @@ async def async_create( ReposOwnerRepoCheckRunsPostBodyOneof0Type, ReposOwnerRepoCheckRunsPostBodyOneof1Type, ], - ) -> Response[CheckRun]: - ... + ) -> Response[CheckRun]: ... @overload async def async_create( @@ -240,8 +235,7 @@ async def async_create( actions: Missing[ List[ReposOwnerRepoCheckRunsPostBodyPropActionsItemsType] ] = UNSET, - ) -> Response[CheckRun]: - ... + ) -> Response[CheckRun]: ... @overload async def async_create( @@ -274,8 +268,7 @@ async def async_create( actions: Missing[ List[ReposOwnerRepoCheckRunsPostBodyPropActionsItemsType] ] = UNSET, - ) -> Response[CheckRun]: - ... + ) -> Response[CheckRun]: ... async def async_create( self, @@ -384,8 +377,7 @@ def update( ReposOwnerRepoCheckRunsCheckRunIdPatchBodyAnyof0Type, ReposOwnerRepoCheckRunsCheckRunIdPatchBodyAnyof1Type, ], - ) -> Response[CheckRun]: - ... + ) -> Response[CheckRun]: ... @overload def update( @@ -418,8 +410,7 @@ def update( actions: Missing[ List[ReposOwnerRepoCheckRunsCheckRunIdPatchBodyPropActionsItemsType] ] = UNSET, - ) -> Response[CheckRun]: - ... + ) -> Response[CheckRun]: ... @overload def update( @@ -454,8 +445,7 @@ def update( actions: Missing[ List[ReposOwnerRepoCheckRunsCheckRunIdPatchBodyPropActionsItemsType] ] = UNSET, - ) -> Response[CheckRun]: - ... + ) -> Response[CheckRun]: ... def update( self, @@ -519,8 +509,7 @@ async def async_update( ReposOwnerRepoCheckRunsCheckRunIdPatchBodyAnyof0Type, ReposOwnerRepoCheckRunsCheckRunIdPatchBodyAnyof1Type, ], - ) -> Response[CheckRun]: - ... + ) -> Response[CheckRun]: ... @overload async def async_update( @@ -553,8 +542,7 @@ async def async_update( actions: Missing[ List[ReposOwnerRepoCheckRunsCheckRunIdPatchBodyPropActionsItemsType] ] = UNSET, - ) -> Response[CheckRun]: - ... + ) -> Response[CheckRun]: ... @overload async def async_update( @@ -589,8 +577,7 @@ async def async_update( actions: Missing[ List[ReposOwnerRepoCheckRunsCheckRunIdPatchBodyPropActionsItemsType] ] = UNSET, - ) -> Response[CheckRun]: - ... + ) -> Response[CheckRun]: ... async def async_update( self, @@ -772,8 +759,7 @@ def create_suite( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoCheckSuitesPostBodyType, - ) -> Response[CheckSuite]: - ... + ) -> Response[CheckSuite]: ... @overload def create_suite( @@ -784,8 +770,7 @@ def create_suite( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, head_sha: str, - ) -> Response[CheckSuite]: - ... + ) -> Response[CheckSuite]: ... def create_suite( self, @@ -827,8 +812,7 @@ async def async_create_suite( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoCheckSuitesPostBodyType, - ) -> Response[CheckSuite]: - ... + ) -> Response[CheckSuite]: ... @overload async def async_create_suite( @@ -839,8 +823,7 @@ async def async_create_suite( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, head_sha: str, - ) -> Response[CheckSuite]: - ... + ) -> Response[CheckSuite]: ... async def async_create_suite( self, @@ -882,8 +865,7 @@ def set_suites_preferences( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoCheckSuitesPreferencesPatchBodyType, - ) -> Response[CheckSuitePreference]: - ... + ) -> Response[CheckSuitePreference]: ... @overload def set_suites_preferences( @@ -898,8 +880,7 @@ def set_suites_preferences( ReposOwnerRepoCheckSuitesPreferencesPatchBodyPropAutoTriggerChecksItemsType ] ] = UNSET, - ) -> Response[CheckSuitePreference]: - ... + ) -> Response[CheckSuitePreference]: ... def set_suites_preferences( self, @@ -944,8 +925,7 @@ async def async_set_suites_preferences( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoCheckSuitesPreferencesPatchBodyType, - ) -> Response[CheckSuitePreference]: - ... + ) -> Response[CheckSuitePreference]: ... @overload async def async_set_suites_preferences( @@ -960,8 +940,7 @@ async def async_set_suites_preferences( ReposOwnerRepoCheckSuitesPreferencesPatchBodyPropAutoTriggerChecksItemsType ] ] = UNSET, - ) -> Response[CheckSuitePreference]: - ... + ) -> Response[CheckSuitePreference]: ... async def async_set_suites_preferences( self, diff --git a/githubkit/versions/v2022_11_28/rest/classroom.py b/githubkit/versions/v2022_11_28/rest/classroom.py index bad9ec959..559e1c732 100644 --- a/githubkit/versions/v2022_11_28/rest/classroom.py +++ b/githubkit/versions/v2022_11_28/rest/classroom.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref diff --git a/githubkit/versions/v2022_11_28/rest/code_scanning.py b/githubkit/versions/v2022_11_28/rest/code_scanning.py index 6138a84c2..edcb897fc 100644 --- a/githubkit/versions/v2022_11_28/rest/code_scanning.py +++ b/githubkit/versions/v2022_11_28/rest/code_scanning.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref @@ -364,8 +363,7 @@ def update_alert( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoCodeScanningAlertsAlertNumberPatchBodyType, - ) -> Response[CodeScanningAlert]: - ... + ) -> Response[CodeScanningAlert]: ... @overload def update_alert( @@ -381,8 +379,7 @@ def update_alert( Union[None, Literal["false positive", "won't fix", "used in tests"]] ] = UNSET, dismissed_comment: Missing[Union[str, None]] = UNSET, - ) -> Response[CodeScanningAlert]: - ... + ) -> Response[CodeScanningAlert]: ... def update_alert( self, @@ -438,8 +435,7 @@ async def async_update_alert( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoCodeScanningAlertsAlertNumberPatchBodyType, - ) -> Response[CodeScanningAlert]: - ... + ) -> Response[CodeScanningAlert]: ... @overload async def async_update_alert( @@ -455,8 +451,7 @@ async def async_update_alert( Union[None, Literal["false positive", "won't fix", "used in tests"]] ] = UNSET, dismissed_comment: Missing[Union[str, None]] = UNSET, - ) -> Response[CodeScanningAlert]: - ... + ) -> Response[CodeScanningAlert]: ... async def async_update_alert( self, @@ -1039,8 +1034,7 @@ def update_default_setup( *, headers: Optional[Dict[str, str]] = None, data: CodeScanningDefaultSetupUpdateType, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... @overload def update_default_setup( @@ -1066,8 +1060,7 @@ def update_default_setup( ] ] ] = UNSET, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... def update_default_setup( self, @@ -1120,8 +1113,7 @@ async def async_update_default_setup( *, headers: Optional[Dict[str, str]] = None, data: CodeScanningDefaultSetupUpdateType, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... @overload async def async_update_default_setup( @@ -1147,8 +1139,7 @@ async def async_update_default_setup( ] ] ] = UNSET, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... async def async_update_default_setup( self, @@ -1201,8 +1192,7 @@ def upload_sarif( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoCodeScanningSarifsPostBodyType, - ) -> Response[CodeScanningSarifsReceipt]: - ... + ) -> Response[CodeScanningSarifsReceipt]: ... @overload def upload_sarif( @@ -1219,8 +1209,7 @@ def upload_sarif( started_at: Missing[datetime] = UNSET, tool_name: Missing[str] = UNSET, validate_: Missing[bool] = UNSET, - ) -> Response[CodeScanningSarifsReceipt]: - ... + ) -> Response[CodeScanningSarifsReceipt]: ... def upload_sarif( self, @@ -1272,8 +1261,7 @@ async def async_upload_sarif( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoCodeScanningSarifsPostBodyType, - ) -> Response[CodeScanningSarifsReceipt]: - ... + ) -> Response[CodeScanningSarifsReceipt]: ... @overload async def async_upload_sarif( @@ -1290,8 +1278,7 @@ async def async_upload_sarif( started_at: Missing[datetime] = UNSET, tool_name: Missing[str] = UNSET, validate_: Missing[bool] = UNSET, - ) -> Response[CodeScanningSarifsReceipt]: - ... + ) -> Response[CodeScanningSarifsReceipt]: ... async def async_upload_sarif( self, diff --git a/githubkit/versions/v2022_11_28/rest/codes_of_conduct.py b/githubkit/versions/v2022_11_28/rest/codes_of_conduct.py index 038275986..b15e5854e 100644 --- a/githubkit/versions/v2022_11_28/rest/codes_of_conduct.py +++ b/githubkit/versions/v2022_11_28/rest/codes_of_conduct.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref diff --git a/githubkit/versions/v2022_11_28/rest/codespaces.py b/githubkit/versions/v2022_11_28/rest/codespaces.py index 703f787e3..67615df9e 100644 --- a/githubkit/versions/v2022_11_28/rest/codespaces.py +++ b/githubkit/versions/v2022_11_28/rest/codespaces.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref @@ -164,8 +163,7 @@ def set_codespaces_access( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgCodespacesAccessPutBodyType, - ) -> Response: - ... + ) -> Response: ... @overload def set_codespaces_access( @@ -181,8 +179,7 @@ def set_codespaces_access( "all_members_and_outside_collaborators", ], selected_usernames: Missing[List[str]] = UNSET, - ) -> Response: - ... + ) -> Response: ... def set_codespaces_access( self, @@ -226,8 +223,7 @@ async def async_set_codespaces_access( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgCodespacesAccessPutBodyType, - ) -> Response: - ... + ) -> Response: ... @overload async def async_set_codespaces_access( @@ -243,8 +239,7 @@ async def async_set_codespaces_access( "all_members_and_outside_collaborators", ], selected_usernames: Missing[List[str]] = UNSET, - ) -> Response: - ... + ) -> Response: ... async def async_set_codespaces_access( self, @@ -288,8 +283,7 @@ def set_codespaces_access_users( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgCodespacesAccessSelectedUsersPostBodyType, - ) -> Response: - ... + ) -> Response: ... @overload def set_codespaces_access_users( @@ -299,8 +293,7 @@ def set_codespaces_access_users( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, selected_usernames: List[str], - ) -> Response: - ... + ) -> Response: ... def set_codespaces_access_users( self, @@ -348,8 +341,7 @@ async def async_set_codespaces_access_users( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgCodespacesAccessSelectedUsersPostBodyType, - ) -> Response: - ... + ) -> Response: ... @overload async def async_set_codespaces_access_users( @@ -359,8 +351,7 @@ async def async_set_codespaces_access_users( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, selected_usernames: List[str], - ) -> Response: - ... + ) -> Response: ... async def async_set_codespaces_access_users( self, @@ -408,8 +399,7 @@ def delete_codespaces_access_users( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgCodespacesAccessSelectedUsersDeleteBodyType, - ) -> Response: - ... + ) -> Response: ... @overload def delete_codespaces_access_users( @@ -419,8 +409,7 @@ def delete_codespaces_access_users( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, selected_usernames: List[str], - ) -> Response: - ... + ) -> Response: ... def delete_codespaces_access_users( self, @@ -470,8 +459,7 @@ async def async_delete_codespaces_access_users( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgCodespacesAccessSelectedUsersDeleteBodyType, - ) -> Response: - ... + ) -> Response: ... @overload async def async_delete_codespaces_access_users( @@ -481,8 +469,7 @@ async def async_delete_codespaces_access_users( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, selected_usernames: List[str], - ) -> Response: - ... + ) -> Response: ... async def async_delete_codespaces_access_users( self, @@ -677,8 +664,7 @@ def create_or_update_org_secret( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgCodespacesSecretsSecretNamePutBodyType, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... @overload def create_or_update_org_secret( @@ -692,8 +678,7 @@ def create_or_update_org_secret( key_id: Missing[str] = UNSET, visibility: Literal["all", "private", "selected"], selected_repository_ids: Missing[List[int]] = UNSET, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... def create_or_update_org_secret( self, @@ -744,8 +729,7 @@ async def async_create_or_update_org_secret( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgCodespacesSecretsSecretNamePutBodyType, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... @overload async def async_create_or_update_org_secret( @@ -759,8 +743,7 @@ async def async_create_or_update_org_secret( key_id: Missing[str] = UNSET, visibility: Literal["all", "private", "selected"], selected_repository_ids: Missing[List[int]] = UNSET, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... async def async_create_or_update_org_secret( self, @@ -931,8 +914,7 @@ def set_selected_repos_for_org_secret( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgCodespacesSecretsSecretNameRepositoriesPutBodyType, - ) -> Response: - ... + ) -> Response: ... @overload def set_selected_repos_for_org_secret( @@ -943,8 +925,7 @@ def set_selected_repos_for_org_secret( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, selected_repository_ids: List[int], - ) -> Response: - ... + ) -> Response: ... def set_selected_repos_for_org_secret( self, @@ -995,8 +976,7 @@ async def async_set_selected_repos_for_org_secret( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgCodespacesSecretsSecretNameRepositoriesPutBodyType, - ) -> Response: - ... + ) -> Response: ... @overload async def async_set_selected_repos_for_org_secret( @@ -1007,8 +987,7 @@ async def async_set_selected_repos_for_org_secret( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, selected_repository_ids: List[int], - ) -> Response: - ... + ) -> Response: ... async def async_set_selected_repos_for_org_secret( self, @@ -1437,8 +1416,7 @@ def create_with_repo_for_authenticated_user( *, headers: Optional[Dict[str, str]] = None, data: Union[ReposOwnerRepoCodespacesPostBodyType, None], - ) -> Response[Codespace]: - ... + ) -> Response[Codespace]: ... @overload def create_with_repo_for_authenticated_user( @@ -1461,8 +1439,7 @@ def create_with_repo_for_authenticated_user( idle_timeout_minutes: Missing[int] = UNSET, display_name: Missing[str] = UNSET, retention_period_minutes: Missing[int] = UNSET, - ) -> Response[Codespace]: - ... + ) -> Response[Codespace]: ... def create_with_repo_for_authenticated_user( self, @@ -1518,8 +1495,7 @@ async def async_create_with_repo_for_authenticated_user( *, headers: Optional[Dict[str, str]] = None, data: Union[ReposOwnerRepoCodespacesPostBodyType, None], - ) -> Response[Codespace]: - ... + ) -> Response[Codespace]: ... @overload async def async_create_with_repo_for_authenticated_user( @@ -1542,8 +1518,7 @@ async def async_create_with_repo_for_authenticated_user( idle_timeout_minutes: Missing[int] = UNSET, display_name: Missing[str] = UNSET, retention_period_minutes: Missing[int] = UNSET, - ) -> Response[Codespace]: - ... + ) -> Response[Codespace]: ... async def async_create_with_repo_for_authenticated_user( self, @@ -2060,8 +2035,7 @@ def create_or_update_repo_secret( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoCodespacesSecretsSecretNamePutBodyType, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... @overload def create_or_update_repo_secret( @@ -2074,8 +2048,7 @@ def create_or_update_repo_secret( headers: Optional[Dict[str, str]] = None, encrypted_value: Missing[str] = UNSET, key_id: Missing[str] = UNSET, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... def create_or_update_repo_secret( self, @@ -2124,8 +2097,7 @@ async def async_create_or_update_repo_secret( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoCodespacesSecretsSecretNamePutBodyType, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... @overload async def async_create_or_update_repo_secret( @@ -2138,8 +2110,7 @@ async def async_create_or_update_repo_secret( headers: Optional[Dict[str, str]] = None, encrypted_value: Missing[str] = UNSET, key_id: Missing[str] = UNSET, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... async def async_create_or_update_repo_secret( self, @@ -2228,8 +2199,7 @@ def create_with_pr_for_authenticated_user( *, headers: Optional[Dict[str, str]] = None, data: Union[ReposOwnerRepoPullsPullNumberCodespacesPostBodyType, None], - ) -> Response[Codespace]: - ... + ) -> Response[Codespace]: ... @overload def create_with_pr_for_authenticated_user( @@ -2252,8 +2222,7 @@ def create_with_pr_for_authenticated_user( idle_timeout_minutes: Missing[int] = UNSET, display_name: Missing[str] = UNSET, retention_period_minutes: Missing[int] = UNSET, - ) -> Response[Codespace]: - ... + ) -> Response[Codespace]: ... def create_with_pr_for_authenticated_user( self, @@ -2314,8 +2283,7 @@ async def async_create_with_pr_for_authenticated_user( *, headers: Optional[Dict[str, str]] = None, data: Union[ReposOwnerRepoPullsPullNumberCodespacesPostBodyType, None], - ) -> Response[Codespace]: - ... + ) -> Response[Codespace]: ... @overload async def async_create_with_pr_for_authenticated_user( @@ -2338,8 +2306,7 @@ async def async_create_with_pr_for_authenticated_user( idle_timeout_minutes: Missing[int] = UNSET, display_name: Missing[str] = UNSET, retention_period_minutes: Missing[int] = UNSET, - ) -> Response[Codespace]: - ... + ) -> Response[Codespace]: ... async def async_create_with_pr_for_authenticated_user( self, @@ -2469,8 +2436,7 @@ def create_for_authenticated_user( *, headers: Optional[Dict[str, str]] = None, data: Union[UserCodespacesPostBodyOneof0Type, UserCodespacesPostBodyOneof1Type], - ) -> Response[Codespace]: - ... + ) -> Response[Codespace]: ... @overload def create_for_authenticated_user( @@ -2492,8 +2458,7 @@ def create_for_authenticated_user( idle_timeout_minutes: Missing[int] = UNSET, display_name: Missing[str] = UNSET, retention_period_minutes: Missing[int] = UNSET, - ) -> Response[Codespace]: - ... + ) -> Response[Codespace]: ... @overload def create_for_authenticated_user( @@ -2510,8 +2475,7 @@ def create_for_authenticated_user( devcontainer_path: Missing[str] = UNSET, working_directory: Missing[str] = UNSET, idle_timeout_minutes: Missing[int] = UNSET, - ) -> Response[Codespace]: - ... + ) -> Response[Codespace]: ... def create_for_authenticated_user( self, @@ -2567,8 +2531,7 @@ async def async_create_for_authenticated_user( *, headers: Optional[Dict[str, str]] = None, data: Union[UserCodespacesPostBodyOneof0Type, UserCodespacesPostBodyOneof1Type], - ) -> Response[Codespace]: - ... + ) -> Response[Codespace]: ... @overload async def async_create_for_authenticated_user( @@ -2590,8 +2553,7 @@ async def async_create_for_authenticated_user( idle_timeout_minutes: Missing[int] = UNSET, display_name: Missing[str] = UNSET, retention_period_minutes: Missing[int] = UNSET, - ) -> Response[Codespace]: - ... + ) -> Response[Codespace]: ... @overload async def async_create_for_authenticated_user( @@ -2608,8 +2570,7 @@ async def async_create_for_authenticated_user( devcontainer_path: Missing[str] = UNSET, working_directory: Missing[str] = UNSET, idle_timeout_minutes: Missing[int] = UNSET, - ) -> Response[Codespace]: - ... + ) -> Response[Codespace]: ... async def async_create_for_authenticated_user( self, @@ -2804,8 +2765,7 @@ def create_or_update_secret_for_authenticated_user( *, headers: Optional[Dict[str, str]] = None, data: UserCodespacesSecretsSecretNamePutBodyType, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... @overload def create_or_update_secret_for_authenticated_user( @@ -2817,8 +2777,7 @@ def create_or_update_secret_for_authenticated_user( encrypted_value: Missing[str] = UNSET, key_id: str, selected_repository_ids: Missing[List[Union[int, str]]] = UNSET, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... def create_or_update_secret_for_authenticated_user( self, @@ -2867,8 +2826,7 @@ async def async_create_or_update_secret_for_authenticated_user( *, headers: Optional[Dict[str, str]] = None, data: UserCodespacesSecretsSecretNamePutBodyType, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... @overload async def async_create_or_update_secret_for_authenticated_user( @@ -2880,8 +2838,7 @@ async def async_create_or_update_secret_for_authenticated_user( encrypted_value: Missing[str] = UNSET, key_id: str, selected_repository_ids: Missing[List[Union[int, str]]] = UNSET, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... async def async_create_or_update_secret_for_authenticated_user( self, @@ -3026,8 +2983,7 @@ def set_repositories_for_secret_for_authenticated_user( *, headers: Optional[Dict[str, str]] = None, data: UserCodespacesSecretsSecretNameRepositoriesPutBodyType, - ) -> Response: - ... + ) -> Response: ... @overload def set_repositories_for_secret_for_authenticated_user( @@ -3037,8 +2993,7 @@ def set_repositories_for_secret_for_authenticated_user( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, selected_repository_ids: List[int], - ) -> Response: - ... + ) -> Response: ... def set_repositories_for_secret_for_authenticated_user( self, @@ -3088,8 +3043,7 @@ async def async_set_repositories_for_secret_for_authenticated_user( *, headers: Optional[Dict[str, str]] = None, data: UserCodespacesSecretsSecretNameRepositoriesPutBodyType, - ) -> Response: - ... + ) -> Response: ... @overload async def async_set_repositories_for_secret_for_authenticated_user( @@ -3099,8 +3053,7 @@ async def async_set_repositories_for_secret_for_authenticated_user( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, selected_repository_ids: List[int], - ) -> Response: - ... + ) -> Response: ... async def async_set_repositories_for_secret_for_authenticated_user( self, @@ -3372,8 +3325,7 @@ def update_for_authenticated_user( *, headers: Optional[Dict[str, str]] = None, data: Missing[UserCodespacesCodespaceNamePatchBodyType] = UNSET, - ) -> Response[Codespace]: - ... + ) -> Response[Codespace]: ... @overload def update_for_authenticated_user( @@ -3385,8 +3337,7 @@ def update_for_authenticated_user( machine: Missing[str] = UNSET, display_name: Missing[str] = UNSET, recent_folders: Missing[List[str]] = UNSET, - ) -> Response[Codespace]: - ... + ) -> Response[Codespace]: ... def update_for_authenticated_user( self, @@ -3431,8 +3382,7 @@ async def async_update_for_authenticated_user( *, headers: Optional[Dict[str, str]] = None, data: Missing[UserCodespacesCodespaceNamePatchBodyType] = UNSET, - ) -> Response[Codespace]: - ... + ) -> Response[Codespace]: ... @overload async def async_update_for_authenticated_user( @@ -3444,8 +3394,7 @@ async def async_update_for_authenticated_user( machine: Missing[str] = UNSET, display_name: Missing[str] = UNSET, recent_folders: Missing[List[str]] = UNSET, - ) -> Response[Codespace]: - ... + ) -> Response[Codespace]: ... async def async_update_for_authenticated_user( self, @@ -3656,8 +3605,7 @@ def publish_for_authenticated_user( *, headers: Optional[Dict[str, str]] = None, data: UserCodespacesCodespaceNamePublishPostBodyType, - ) -> Response[CodespaceWithFullRepository]: - ... + ) -> Response[CodespaceWithFullRepository]: ... @overload def publish_for_authenticated_user( @@ -3668,8 +3616,7 @@ def publish_for_authenticated_user( headers: Optional[Dict[str, str]] = None, name: Missing[str] = UNSET, private: Missing[bool] = UNSET, - ) -> Response[CodespaceWithFullRepository]: - ... + ) -> Response[CodespaceWithFullRepository]: ... def publish_for_authenticated_user( self, @@ -3720,8 +3667,7 @@ async def async_publish_for_authenticated_user( *, headers: Optional[Dict[str, str]] = None, data: UserCodespacesCodespaceNamePublishPostBodyType, - ) -> Response[CodespaceWithFullRepository]: - ... + ) -> Response[CodespaceWithFullRepository]: ... @overload async def async_publish_for_authenticated_user( @@ -3732,8 +3678,7 @@ async def async_publish_for_authenticated_user( headers: Optional[Dict[str, str]] = None, name: Missing[str] = UNSET, private: Missing[bool] = UNSET, - ) -> Response[CodespaceWithFullRepository]: - ... + ) -> Response[CodespaceWithFullRepository]: ... async def async_publish_for_authenticated_user( self, diff --git a/githubkit/versions/v2022_11_28/rest/copilot.py b/githubkit/versions/v2022_11_28/rest/copilot.py index a66e687a4..68a4b3be6 100644 --- a/githubkit/versions/v2022_11_28/rest/copilot.py +++ b/githubkit/versions/v2022_11_28/rest/copilot.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref @@ -190,8 +189,7 @@ def add_copilot_seats_for_teams( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgCopilotBillingSelectedTeamsPostBodyType, - ) -> Response[OrgsOrgCopilotBillingSelectedTeamsPostResponse201]: - ... + ) -> Response[OrgsOrgCopilotBillingSelectedTeamsPostResponse201]: ... @overload def add_copilot_seats_for_teams( @@ -201,8 +199,7 @@ def add_copilot_seats_for_teams( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, selected_teams: List[str], - ) -> Response[OrgsOrgCopilotBillingSelectedTeamsPostResponse201]: - ... + ) -> Response[OrgsOrgCopilotBillingSelectedTeamsPostResponse201]: ... def add_copilot_seats_for_teams( self, @@ -252,8 +249,7 @@ async def async_add_copilot_seats_for_teams( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgCopilotBillingSelectedTeamsPostBodyType, - ) -> Response[OrgsOrgCopilotBillingSelectedTeamsPostResponse201]: - ... + ) -> Response[OrgsOrgCopilotBillingSelectedTeamsPostResponse201]: ... @overload async def async_add_copilot_seats_for_teams( @@ -263,8 +259,7 @@ async def async_add_copilot_seats_for_teams( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, selected_teams: List[str], - ) -> Response[OrgsOrgCopilotBillingSelectedTeamsPostResponse201]: - ... + ) -> Response[OrgsOrgCopilotBillingSelectedTeamsPostResponse201]: ... async def async_add_copilot_seats_for_teams( self, @@ -314,8 +309,7 @@ def cancel_copilot_seat_assignment_for_teams( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgCopilotBillingSelectedTeamsDeleteBodyType, - ) -> Response[OrgsOrgCopilotBillingSelectedTeamsDeleteResponse200]: - ... + ) -> Response[OrgsOrgCopilotBillingSelectedTeamsDeleteResponse200]: ... @overload def cancel_copilot_seat_assignment_for_teams( @@ -325,8 +319,7 @@ def cancel_copilot_seat_assignment_for_teams( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, selected_teams: List[str], - ) -> Response[OrgsOrgCopilotBillingSelectedTeamsDeleteResponse200]: - ... + ) -> Response[OrgsOrgCopilotBillingSelectedTeamsDeleteResponse200]: ... def cancel_copilot_seat_assignment_for_teams( self, @@ -376,8 +369,7 @@ async def async_cancel_copilot_seat_assignment_for_teams( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgCopilotBillingSelectedTeamsDeleteBodyType, - ) -> Response[OrgsOrgCopilotBillingSelectedTeamsDeleteResponse200]: - ... + ) -> Response[OrgsOrgCopilotBillingSelectedTeamsDeleteResponse200]: ... @overload async def async_cancel_copilot_seat_assignment_for_teams( @@ -387,8 +379,7 @@ async def async_cancel_copilot_seat_assignment_for_teams( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, selected_teams: List[str], - ) -> Response[OrgsOrgCopilotBillingSelectedTeamsDeleteResponse200]: - ... + ) -> Response[OrgsOrgCopilotBillingSelectedTeamsDeleteResponse200]: ... async def async_cancel_copilot_seat_assignment_for_teams( self, @@ -438,8 +429,7 @@ def add_copilot_seats_for_users( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgCopilotBillingSelectedUsersPostBodyType, - ) -> Response[OrgsOrgCopilotBillingSelectedUsersPostResponse201]: - ... + ) -> Response[OrgsOrgCopilotBillingSelectedUsersPostResponse201]: ... @overload def add_copilot_seats_for_users( @@ -449,8 +439,7 @@ def add_copilot_seats_for_users( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, selected_usernames: List[str], - ) -> Response[OrgsOrgCopilotBillingSelectedUsersPostResponse201]: - ... + ) -> Response[OrgsOrgCopilotBillingSelectedUsersPostResponse201]: ... def add_copilot_seats_for_users( self, @@ -500,8 +489,7 @@ async def async_add_copilot_seats_for_users( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgCopilotBillingSelectedUsersPostBodyType, - ) -> Response[OrgsOrgCopilotBillingSelectedUsersPostResponse201]: - ... + ) -> Response[OrgsOrgCopilotBillingSelectedUsersPostResponse201]: ... @overload async def async_add_copilot_seats_for_users( @@ -511,8 +499,7 @@ async def async_add_copilot_seats_for_users( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, selected_usernames: List[str], - ) -> Response[OrgsOrgCopilotBillingSelectedUsersPostResponse201]: - ... + ) -> Response[OrgsOrgCopilotBillingSelectedUsersPostResponse201]: ... async def async_add_copilot_seats_for_users( self, @@ -562,8 +549,7 @@ def cancel_copilot_seat_assignment_for_users( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgCopilotBillingSelectedUsersDeleteBodyType, - ) -> Response[OrgsOrgCopilotBillingSelectedUsersDeleteResponse200]: - ... + ) -> Response[OrgsOrgCopilotBillingSelectedUsersDeleteResponse200]: ... @overload def cancel_copilot_seat_assignment_for_users( @@ -573,8 +559,7 @@ def cancel_copilot_seat_assignment_for_users( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, selected_usernames: List[str], - ) -> Response[OrgsOrgCopilotBillingSelectedUsersDeleteResponse200]: - ... + ) -> Response[OrgsOrgCopilotBillingSelectedUsersDeleteResponse200]: ... def cancel_copilot_seat_assignment_for_users( self, @@ -624,8 +609,7 @@ async def async_cancel_copilot_seat_assignment_for_users( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgCopilotBillingSelectedUsersDeleteBodyType, - ) -> Response[OrgsOrgCopilotBillingSelectedUsersDeleteResponse200]: - ... + ) -> Response[OrgsOrgCopilotBillingSelectedUsersDeleteResponse200]: ... @overload async def async_cancel_copilot_seat_assignment_for_users( @@ -635,8 +619,7 @@ async def async_cancel_copilot_seat_assignment_for_users( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, selected_usernames: List[str], - ) -> Response[OrgsOrgCopilotBillingSelectedUsersDeleteResponse200]: - ... + ) -> Response[OrgsOrgCopilotBillingSelectedUsersDeleteResponse200]: ... async def async_cancel_copilot_seat_assignment_for_users( self, diff --git a/githubkit/versions/v2022_11_28/rest/dependabot.py b/githubkit/versions/v2022_11_28/rest/dependabot.py index e66814edf..8a6d7620e 100644 --- a/githubkit/versions/v2022_11_28/rest/dependabot.py +++ b/githubkit/versions/v2022_11_28/rest/dependabot.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref @@ -455,8 +454,7 @@ def create_or_update_org_secret( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgDependabotSecretsSecretNamePutBodyType, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... @overload def create_or_update_org_secret( @@ -470,8 +468,7 @@ def create_or_update_org_secret( key_id: Missing[str] = UNSET, visibility: Literal["all", "private", "selected"], selected_repository_ids: Missing[List[str]] = UNSET, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... def create_or_update_org_secret( self, @@ -513,8 +510,7 @@ async def async_create_or_update_org_secret( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgDependabotSecretsSecretNamePutBodyType, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... @overload async def async_create_or_update_org_secret( @@ -528,8 +524,7 @@ async def async_create_or_update_org_secret( key_id: Missing[str] = UNSET, visibility: Literal["all", "private", "selected"], selected_repository_ids: Missing[List[str]] = UNSET, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... async def async_create_or_update_org_secret( self, @@ -673,8 +668,7 @@ def set_selected_repos_for_org_secret( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgDependabotSecretsSecretNameRepositoriesPutBodyType, - ) -> Response: - ... + ) -> Response: ... @overload def set_selected_repos_for_org_secret( @@ -685,8 +679,7 @@ def set_selected_repos_for_org_secret( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, selected_repository_ids: List[int], - ) -> Response: - ... + ) -> Response: ... def set_selected_repos_for_org_secret( self, @@ -731,8 +724,7 @@ async def async_set_selected_repos_for_org_secret( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgDependabotSecretsSecretNameRepositoriesPutBodyType, - ) -> Response: - ... + ) -> Response: ... @overload async def async_set_selected_repos_for_org_secret( @@ -743,8 +735,7 @@ async def async_set_selected_repos_for_org_secret( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, selected_repository_ids: List[int], - ) -> Response: - ... + ) -> Response: ... async def async_set_selected_repos_for_org_secret( self, @@ -1060,8 +1051,7 @@ def update_alert( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoDependabotAlertsAlertNumberPatchBodyType, - ) -> Response[DependabotAlert]: - ... + ) -> Response[DependabotAlert]: ... @overload def update_alert( @@ -1083,8 +1073,7 @@ def update_alert( ] ] = UNSET, dismissed_comment: Missing[str] = UNSET, - ) -> Response[DependabotAlert]: - ... + ) -> Response[DependabotAlert]: ... def update_alert( self, @@ -1142,8 +1131,7 @@ async def async_update_alert( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoDependabotAlertsAlertNumberPatchBodyType, - ) -> Response[DependabotAlert]: - ... + ) -> Response[DependabotAlert]: ... @overload async def async_update_alert( @@ -1165,8 +1153,7 @@ async def async_update_alert( ] ] = UNSET, dismissed_comment: Missing[str] = UNSET, - ) -> Response[DependabotAlert]: - ... + ) -> Response[DependabotAlert]: ... async def async_update_alert( self, @@ -1374,8 +1361,7 @@ def create_or_update_repo_secret( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoDependabotSecretsSecretNamePutBodyType, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... @overload def create_or_update_repo_secret( @@ -1388,8 +1374,7 @@ def create_or_update_repo_secret( headers: Optional[Dict[str, str]] = None, encrypted_value: Missing[str] = UNSET, key_id: Missing[str] = UNSET, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... def create_or_update_repo_secret( self, @@ -1438,8 +1423,7 @@ async def async_create_or_update_repo_secret( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoDependabotSecretsSecretNamePutBodyType, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... @overload async def async_create_or_update_repo_secret( @@ -1452,8 +1436,7 @@ async def async_create_or_update_repo_secret( headers: Optional[Dict[str, str]] = None, encrypted_value: Missing[str] = UNSET, key_id: Missing[str] = UNSET, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... async def async_create_or_update_repo_secret( self, diff --git a/githubkit/versions/v2022_11_28/rest/dependency_graph.py b/githubkit/versions/v2022_11_28/rest/dependency_graph.py index 87b959992..19a7531bd 100644 --- a/githubkit/versions/v2022_11_28/rest/dependency_graph.py +++ b/githubkit/versions/v2022_11_28/rest/dependency_graph.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref @@ -187,8 +186,7 @@ def create_repository_snapshot( *, headers: Optional[Dict[str, str]] = None, data: SnapshotType, - ) -> Response[ReposOwnerRepoDependencyGraphSnapshotsPostResponse201]: - ... + ) -> Response[ReposOwnerRepoDependencyGraphSnapshotsPostResponse201]: ... @overload def create_repository_snapshot( @@ -206,8 +204,7 @@ def create_repository_snapshot( metadata: Missing[MetadataType] = UNSET, manifests: Missing[SnapshotPropManifestsType] = UNSET, scanned: datetime, - ) -> Response[ReposOwnerRepoDependencyGraphSnapshotsPostResponse201]: - ... + ) -> Response[ReposOwnerRepoDependencyGraphSnapshotsPostResponse201]: ... def create_repository_snapshot( self, @@ -252,8 +249,7 @@ async def async_create_repository_snapshot( *, headers: Optional[Dict[str, str]] = None, data: SnapshotType, - ) -> Response[ReposOwnerRepoDependencyGraphSnapshotsPostResponse201]: - ... + ) -> Response[ReposOwnerRepoDependencyGraphSnapshotsPostResponse201]: ... @overload async def async_create_repository_snapshot( @@ -271,8 +267,7 @@ async def async_create_repository_snapshot( metadata: Missing[MetadataType] = UNSET, manifests: Missing[SnapshotPropManifestsType] = UNSET, scanned: datetime, - ) -> Response[ReposOwnerRepoDependencyGraphSnapshotsPostResponse201]: - ... + ) -> Response[ReposOwnerRepoDependencyGraphSnapshotsPostResponse201]: ... async def async_create_repository_snapshot( self, diff --git a/githubkit/versions/v2022_11_28/rest/emojis.py b/githubkit/versions/v2022_11_28/rest/emojis.py index 01507f093..c45609efc 100644 --- a/githubkit/versions/v2022_11_28/rest/emojis.py +++ b/githubkit/versions/v2022_11_28/rest/emojis.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref diff --git a/githubkit/versions/v2022_11_28/rest/gists.py b/githubkit/versions/v2022_11_28/rest/gists.py index 3f84e47c7..7dbd0ac87 100644 --- a/githubkit/versions/v2022_11_28/rest/gists.py +++ b/githubkit/versions/v2022_11_28/rest/gists.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref @@ -127,8 +126,7 @@ async def async_list( @overload def create( self, *, headers: Optional[Dict[str, str]] = None, data: GistsPostBodyType - ) -> Response[GistSimple]: - ... + ) -> Response[GistSimple]: ... @overload def create( @@ -139,8 +137,7 @@ def create( description: Missing[str] = UNSET, files: GistsPostBodyPropFilesType, public: Missing[Union[bool, Literal["true", "false"]]] = UNSET, - ) -> Response[GistSimple]: - ... + ) -> Response[GistSimple]: ... def create( self, @@ -180,8 +177,7 @@ def create( @overload async def async_create( self, *, headers: Optional[Dict[str, str]] = None, data: GistsPostBodyType - ) -> Response[GistSimple]: - ... + ) -> Response[GistSimple]: ... @overload async def async_create( @@ -192,8 +188,7 @@ async def async_create( description: Missing[str] = UNSET, files: GistsPostBodyPropFilesType, public: Missing[Union[bool, Literal["true", "false"]]] = UNSET, - ) -> Response[GistSimple]: - ... + ) -> Response[GistSimple]: ... async def async_create( self, @@ -479,8 +474,7 @@ def update( *, headers: Optional[Dict[str, str]] = None, data: Union[GistsGistIdPatchBodyType, None], - ) -> Response[GistSimple]: - ... + ) -> Response[GistSimple]: ... @overload def update( @@ -491,8 +485,7 @@ def update( headers: Optional[Dict[str, str]] = None, description: Missing[str] = UNSET, files: Missing[GistsGistIdPatchBodyPropFilesType] = UNSET, - ) -> Response[GistSimple]: - ... + ) -> Response[GistSimple]: ... def update( self, @@ -543,8 +536,7 @@ async def async_update( *, headers: Optional[Dict[str, str]] = None, data: Union[GistsGistIdPatchBodyType, None], - ) -> Response[GistSimple]: - ... + ) -> Response[GistSimple]: ... @overload async def async_update( @@ -555,8 +547,7 @@ async def async_update( headers: Optional[Dict[str, str]] = None, description: Missing[str] = UNSET, files: Missing[GistsGistIdPatchBodyPropFilesType] = UNSET, - ) -> Response[GistSimple]: - ... + ) -> Response[GistSimple]: ... async def async_update( self, @@ -677,8 +668,7 @@ def create_comment( *, headers: Optional[Dict[str, str]] = None, data: GistsGistIdCommentsPostBodyType, - ) -> Response[GistComment]: - ... + ) -> Response[GistComment]: ... @overload def create_comment( @@ -688,8 +678,7 @@ def create_comment( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, body: str, - ) -> Response[GistComment]: - ... + ) -> Response[GistComment]: ... def create_comment( self, @@ -733,8 +722,7 @@ async def async_create_comment( *, headers: Optional[Dict[str, str]] = None, data: GistsGistIdCommentsPostBodyType, - ) -> Response[GistComment]: - ... + ) -> Response[GistComment]: ... @overload async def async_create_comment( @@ -744,8 +732,7 @@ async def async_create_comment( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, body: str, - ) -> Response[GistComment]: - ... + ) -> Response[GistComment]: ... async def async_create_comment( self, @@ -892,8 +879,7 @@ def update_comment( *, headers: Optional[Dict[str, str]] = None, data: GistsGistIdCommentsCommentIdPatchBodyType, - ) -> Response[GistComment]: - ... + ) -> Response[GistComment]: ... @overload def update_comment( @@ -904,8 +890,7 @@ def update_comment( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, body: str, - ) -> Response[GistComment]: - ... + ) -> Response[GistComment]: ... def update_comment( self, @@ -954,8 +939,7 @@ async def async_update_comment( *, headers: Optional[Dict[str, str]] = None, data: GistsGistIdCommentsCommentIdPatchBodyType, - ) -> Response[GistComment]: - ... + ) -> Response[GistComment]: ... @overload async def async_update_comment( @@ -966,8 +950,7 @@ async def async_update_comment( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, body: str, - ) -> Response[GistComment]: - ... + ) -> Response[GistComment]: ... async def async_update_comment( self, diff --git a/githubkit/versions/v2022_11_28/rest/git.py b/githubkit/versions/v2022_11_28/rest/git.py index fc210f55b..c69bc0e47 100644 --- a/githubkit/versions/v2022_11_28/rest/git.py +++ b/githubkit/versions/v2022_11_28/rest/git.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref @@ -65,8 +64,7 @@ def create_blob( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoGitBlobsPostBodyType, - ) -> Response[ShortBlob]: - ... + ) -> Response[ShortBlob]: ... @overload def create_blob( @@ -78,8 +76,7 @@ def create_blob( headers: Optional[Dict[str, str]] = None, content: str, encoding: Missing[str] = UNSET, - ) -> Response[ShortBlob]: - ... + ) -> Response[ShortBlob]: ... def create_blob( self, @@ -132,8 +129,7 @@ async def async_create_blob( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoGitBlobsPostBodyType, - ) -> Response[ShortBlob]: - ... + ) -> Response[ShortBlob]: ... @overload async def async_create_blob( @@ -145,8 +141,7 @@ async def async_create_blob( headers: Optional[Dict[str, str]] = None, content: str, encoding: Missing[str] = UNSET, - ) -> Response[ShortBlob]: - ... + ) -> Response[ShortBlob]: ... async def async_create_blob( self, @@ -257,8 +252,7 @@ def create_commit( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoGitCommitsPostBodyType, - ) -> Response[GitCommit]: - ... + ) -> Response[GitCommit]: ... @overload def create_commit( @@ -274,8 +268,7 @@ def create_commit( author: Missing[ReposOwnerRepoGitCommitsPostBodyPropAuthorType] = UNSET, committer: Missing[ReposOwnerRepoGitCommitsPostBodyPropCommitterType] = UNSET, signature: Missing[str] = UNSET, - ) -> Response[GitCommit]: - ... + ) -> Response[GitCommit]: ... def create_commit( self, @@ -327,8 +320,7 @@ async def async_create_commit( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoGitCommitsPostBodyType, - ) -> Response[GitCommit]: - ... + ) -> Response[GitCommit]: ... @overload async def async_create_commit( @@ -344,8 +336,7 @@ async def async_create_commit( author: Missing[ReposOwnerRepoGitCommitsPostBodyPropAuthorType] = UNSET, committer: Missing[ReposOwnerRepoGitCommitsPostBodyPropCommitterType] = UNSET, signature: Missing[str] = UNSET, - ) -> Response[GitCommit]: - ... + ) -> Response[GitCommit]: ... async def async_create_commit( self, @@ -561,8 +552,7 @@ def create_ref( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoGitRefsPostBodyType, - ) -> Response[GitRef]: - ... + ) -> Response[GitRef]: ... @overload def create_ref( @@ -574,8 +564,7 @@ def create_ref( headers: Optional[Dict[str, str]] = None, ref: str, sha: str, - ) -> Response[GitRef]: - ... + ) -> Response[GitRef]: ... def create_ref( self, @@ -626,8 +615,7 @@ async def async_create_ref( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoGitRefsPostBodyType, - ) -> Response[GitRef]: - ... + ) -> Response[GitRef]: ... @overload async def async_create_ref( @@ -639,8 +627,7 @@ async def async_create_ref( headers: Optional[Dict[str, str]] = None, ref: str, sha: str, - ) -> Response[GitRef]: - ... + ) -> Response[GitRef]: ... async def async_create_ref( self, @@ -744,8 +731,7 @@ def update_ref( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoGitRefsRefPatchBodyType, - ) -> Response[GitRef]: - ... + ) -> Response[GitRef]: ... @overload def update_ref( @@ -758,8 +744,7 @@ def update_ref( headers: Optional[Dict[str, str]] = None, sha: str, force: Missing[bool] = UNSET, - ) -> Response[GitRef]: - ... + ) -> Response[GitRef]: ... def update_ref( self, @@ -812,8 +797,7 @@ async def async_update_ref( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoGitRefsRefPatchBodyType, - ) -> Response[GitRef]: - ... + ) -> Response[GitRef]: ... @overload async def async_update_ref( @@ -826,8 +810,7 @@ async def async_update_ref( headers: Optional[Dict[str, str]] = None, sha: str, force: Missing[bool] = UNSET, - ) -> Response[GitRef]: - ... + ) -> Response[GitRef]: ... async def async_update_ref( self, @@ -879,8 +862,7 @@ def create_tag( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoGitTagsPostBodyType, - ) -> Response[GitTag]: - ... + ) -> Response[GitTag]: ... @overload def create_tag( @@ -895,8 +877,7 @@ def create_tag( object_: str, type: Literal["commit", "tree", "blob"], tagger: Missing[ReposOwnerRepoGitTagsPostBodyPropTaggerType] = UNSET, - ) -> Response[GitTag]: - ... + ) -> Response[GitTag]: ... def create_tag( self, @@ -947,8 +928,7 @@ async def async_create_tag( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoGitTagsPostBodyType, - ) -> Response[GitTag]: - ... + ) -> Response[GitTag]: ... @overload async def async_create_tag( @@ -963,8 +943,7 @@ async def async_create_tag( object_: str, type: Literal["commit", "tree", "blob"], tagger: Missing[ReposOwnerRepoGitTagsPostBodyPropTaggerType] = UNSET, - ) -> Response[GitTag]: - ... + ) -> Response[GitTag]: ... async def async_create_tag( self, @@ -1069,8 +1048,7 @@ def create_tree( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoGitTreesPostBodyType, - ) -> Response[GitTree]: - ... + ) -> Response[GitTree]: ... @overload def create_tree( @@ -1082,8 +1060,7 @@ def create_tree( headers: Optional[Dict[str, str]] = None, tree: List[ReposOwnerRepoGitTreesPostBodyPropTreeItemsType], base_tree: Missing[str] = UNSET, - ) -> Response[GitTree]: - ... + ) -> Response[GitTree]: ... def create_tree( self, @@ -1136,8 +1113,7 @@ async def async_create_tree( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoGitTreesPostBodyType, - ) -> Response[GitTree]: - ... + ) -> Response[GitTree]: ... @overload async def async_create_tree( @@ -1149,8 +1125,7 @@ async def async_create_tree( headers: Optional[Dict[str, str]] = None, tree: List[ReposOwnerRepoGitTreesPostBodyPropTreeItemsType], base_tree: Missing[str] = UNSET, - ) -> Response[GitTree]: - ... + ) -> Response[GitTree]: ... async def async_create_tree( self, diff --git a/githubkit/versions/v2022_11_28/rest/gitignore.py b/githubkit/versions/v2022_11_28/rest/gitignore.py index 8b322e648..befe98c56 100644 --- a/githubkit/versions/v2022_11_28/rest/gitignore.py +++ b/githubkit/versions/v2022_11_28/rest/gitignore.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref diff --git a/githubkit/versions/v2022_11_28/rest/interactions.py b/githubkit/versions/v2022_11_28/rest/interactions.py index b3b759d7c..1d1d6c1e4 100644 --- a/githubkit/versions/v2022_11_28/rest/interactions.py +++ b/githubkit/versions/v2022_11_28/rest/interactions.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref @@ -118,8 +117,7 @@ def set_restrictions_for_org( *, headers: Optional[Dict[str, str]] = None, data: InteractionLimitType, - ) -> Response[InteractionLimitResponse]: - ... + ) -> Response[InteractionLimitResponse]: ... @overload def set_restrictions_for_org( @@ -132,8 +130,7 @@ def set_restrictions_for_org( expiry: Missing[ Literal["one_day", "three_days", "one_week", "one_month", "six_months"] ] = UNSET, - ) -> Response[InteractionLimitResponse]: - ... + ) -> Response[InteractionLimitResponse]: ... def set_restrictions_for_org( self, @@ -176,8 +173,7 @@ async def async_set_restrictions_for_org( *, headers: Optional[Dict[str, str]] = None, data: InteractionLimitType, - ) -> Response[InteractionLimitResponse]: - ... + ) -> Response[InteractionLimitResponse]: ... @overload async def async_set_restrictions_for_org( @@ -190,8 +186,7 @@ async def async_set_restrictions_for_org( expiry: Missing[ Literal["one_day", "three_days", "one_week", "one_month", "six_months"] ] = UNSET, - ) -> Response[InteractionLimitResponse]: - ... + ) -> Response[InteractionLimitResponse]: ... async def async_set_restrictions_for_org( self, @@ -341,8 +336,7 @@ def set_restrictions_for_repo( *, headers: Optional[Dict[str, str]] = None, data: InteractionLimitType, - ) -> Response[InteractionLimitResponse]: - ... + ) -> Response[InteractionLimitResponse]: ... @overload def set_restrictions_for_repo( @@ -356,8 +350,7 @@ def set_restrictions_for_repo( expiry: Missing[ Literal["one_day", "three_days", "one_week", "one_month", "six_months"] ] = UNSET, - ) -> Response[InteractionLimitResponse]: - ... + ) -> Response[InteractionLimitResponse]: ... def set_restrictions_for_repo( self, @@ -400,8 +393,7 @@ async def async_set_restrictions_for_repo( *, headers: Optional[Dict[str, str]] = None, data: InteractionLimitType, - ) -> Response[InteractionLimitResponse]: - ... + ) -> Response[InteractionLimitResponse]: ... @overload async def async_set_restrictions_for_repo( @@ -415,8 +407,7 @@ async def async_set_restrictions_for_repo( expiry: Missing[ Literal["one_day", "three_days", "one_week", "one_month", "six_months"] ] = UNSET, - ) -> Response[InteractionLimitResponse]: - ... + ) -> Response[InteractionLimitResponse]: ... async def async_set_restrictions_for_repo( self, @@ -552,8 +543,7 @@ async def async_get_restrictions_for_authenticated_user( @overload def set_restrictions_for_authenticated_user( self, *, headers: Optional[Dict[str, str]] = None, data: InteractionLimitType - ) -> Response[InteractionLimitResponse]: - ... + ) -> Response[InteractionLimitResponse]: ... @overload def set_restrictions_for_authenticated_user( @@ -565,8 +555,7 @@ def set_restrictions_for_authenticated_user( expiry: Missing[ Literal["one_day", "three_days", "one_week", "one_month", "six_months"] ] = UNSET, - ) -> Response[InteractionLimitResponse]: - ... + ) -> Response[InteractionLimitResponse]: ... def set_restrictions_for_authenticated_user( self, @@ -604,8 +593,7 @@ def set_restrictions_for_authenticated_user( @overload async def async_set_restrictions_for_authenticated_user( self, *, headers: Optional[Dict[str, str]] = None, data: InteractionLimitType - ) -> Response[InteractionLimitResponse]: - ... + ) -> Response[InteractionLimitResponse]: ... @overload async def async_set_restrictions_for_authenticated_user( @@ -617,8 +605,7 @@ async def async_set_restrictions_for_authenticated_user( expiry: Missing[ Literal["one_day", "three_days", "one_week", "one_month", "six_months"] ] = UNSET, - ) -> Response[InteractionLimitResponse]: - ... + ) -> Response[InteractionLimitResponse]: ... async def async_set_restrictions_for_authenticated_user( self, diff --git a/githubkit/versions/v2022_11_28/rest/issues.py b/githubkit/versions/v2022_11_28/rest/issues.py index 4860b1062..a96ea70f2 100644 --- a/githubkit/versions/v2022_11_28/rest/issues.py +++ b/githubkit/versions/v2022_11_28/rest/issues.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref @@ -545,8 +544,7 @@ def create( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoIssuesPostBodyType, - ) -> Response[Issue]: - ... + ) -> Response[Issue]: ... @overload def create( @@ -564,8 +562,7 @@ def create( List[Union[str, ReposOwnerRepoIssuesPostBodyPropLabelsItemsOneof1Type]] ] = UNSET, assignees: Missing[List[str]] = UNSET, - ) -> Response[Issue]: - ... + ) -> Response[Issue]: ... def create( self, @@ -621,8 +618,7 @@ async def async_create( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoIssuesPostBodyType, - ) -> Response[Issue]: - ... + ) -> Response[Issue]: ... @overload async def async_create( @@ -640,8 +636,7 @@ async def async_create( List[Union[str, ReposOwnerRepoIssuesPostBodyPropLabelsItemsOneof1Type]] ] = UNSET, assignees: Missing[List[str]] = UNSET, - ) -> Response[Issue]: - ... + ) -> Response[Issue]: ... async def async_create( self, @@ -874,8 +869,7 @@ def update_comment( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoIssuesCommentsCommentIdPatchBodyType, - ) -> Response[IssueComment]: - ... + ) -> Response[IssueComment]: ... @overload def update_comment( @@ -887,8 +881,7 @@ def update_comment( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, body: str, - ) -> Response[IssueComment]: - ... + ) -> Response[IssueComment]: ... def update_comment( self, @@ -941,8 +934,7 @@ async def async_update_comment( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoIssuesCommentsCommentIdPatchBodyType, - ) -> Response[IssueComment]: - ... + ) -> Response[IssueComment]: ... @overload async def async_update_comment( @@ -954,8 +946,7 @@ async def async_update_comment( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, body: str, - ) -> Response[IssueComment]: - ... + ) -> Response[IssueComment]: ... async def async_update_comment( self, @@ -1188,8 +1179,7 @@ def update( *, headers: Optional[Dict[str, str]] = None, data: Missing[ReposOwnerRepoIssuesIssueNumberPatchBodyType] = UNSET, - ) -> Response[Issue]: - ... + ) -> Response[Issue]: ... @overload def update( @@ -1217,8 +1207,7 @@ def update( ] ] = UNSET, assignees: Missing[List[str]] = UNSET, - ) -> Response[Issue]: - ... + ) -> Response[Issue]: ... def update( self, @@ -1275,8 +1264,7 @@ async def async_update( *, headers: Optional[Dict[str, str]] = None, data: Missing[ReposOwnerRepoIssuesIssueNumberPatchBodyType] = UNSET, - ) -> Response[Issue]: - ... + ) -> Response[Issue]: ... @overload async def async_update( @@ -1304,8 +1292,7 @@ async def async_update( ] ] = UNSET, assignees: Missing[List[str]] = UNSET, - ) -> Response[Issue]: - ... + ) -> Response[Issue]: ... async def async_update( self, @@ -1362,8 +1349,7 @@ def add_assignees( *, headers: Optional[Dict[str, str]] = None, data: Missing[ReposOwnerRepoIssuesIssueNumberAssigneesPostBodyType] = UNSET, - ) -> Response[Issue]: - ... + ) -> Response[Issue]: ... @overload def add_assignees( @@ -1375,8 +1361,7 @@ def add_assignees( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, assignees: Missing[List[str]] = UNSET, - ) -> Response[Issue]: - ... + ) -> Response[Issue]: ... def add_assignees( self, @@ -1422,8 +1407,7 @@ async def async_add_assignees( *, headers: Optional[Dict[str, str]] = None, data: Missing[ReposOwnerRepoIssuesIssueNumberAssigneesPostBodyType] = UNSET, - ) -> Response[Issue]: - ... + ) -> Response[Issue]: ... @overload async def async_add_assignees( @@ -1435,8 +1419,7 @@ async def async_add_assignees( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, assignees: Missing[List[str]] = UNSET, - ) -> Response[Issue]: - ... + ) -> Response[Issue]: ... async def async_add_assignees( self, @@ -1482,8 +1465,7 @@ def remove_assignees( *, headers: Optional[Dict[str, str]] = None, data: Missing[ReposOwnerRepoIssuesIssueNumberAssigneesDeleteBodyType] = UNSET, - ) -> Response[Issue]: - ... + ) -> Response[Issue]: ... @overload def remove_assignees( @@ -1495,8 +1477,7 @@ def remove_assignees( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, assignees: Missing[List[str]] = UNSET, - ) -> Response[Issue]: - ... + ) -> Response[Issue]: ... def remove_assignees( self, @@ -1542,8 +1523,7 @@ async def async_remove_assignees( *, headers: Optional[Dict[str, str]] = None, data: Missing[ReposOwnerRepoIssuesIssueNumberAssigneesDeleteBodyType] = UNSET, - ) -> Response[Issue]: - ... + ) -> Response[Issue]: ... @overload async def async_remove_assignees( @@ -1555,8 +1535,7 @@ async def async_remove_assignees( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, assignees: Missing[List[str]] = UNSET, - ) -> Response[Issue]: - ... + ) -> Response[Issue]: ... async def async_remove_assignees( self, @@ -1732,8 +1711,7 @@ def create_comment( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoIssuesIssueNumberCommentsPostBodyType, - ) -> Response[IssueComment]: - ... + ) -> Response[IssueComment]: ... @overload def create_comment( @@ -1745,8 +1723,7 @@ def create_comment( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, body: str, - ) -> Response[IssueComment]: - ... + ) -> Response[IssueComment]: ... def create_comment( self, @@ -1803,8 +1780,7 @@ async def async_create_comment( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoIssuesIssueNumberCommentsPostBodyType, - ) -> Response[IssueComment]: - ... + ) -> Response[IssueComment]: ... @overload async def async_create_comment( @@ -1816,8 +1792,7 @@ async def async_create_comment( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, body: str, - ) -> Response[IssueComment]: - ... + ) -> Response[IssueComment]: ... async def async_create_comment( self, @@ -2138,8 +2113,7 @@ def set_labels( str, ] ] = UNSET, - ) -> Response[List[Label]]: - ... + ) -> Response[List[Label]]: ... @overload def set_labels( @@ -2151,8 +2125,7 @@ def set_labels( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, labels: Missing[List[str]] = UNSET, - ) -> Response[List[Label]]: - ... + ) -> Response[List[Label]]: ... @overload def set_labels( @@ -2166,8 +2139,7 @@ def set_labels( labels: Missing[ List[ReposOwnerRepoIssuesIssueNumberLabelsPutBodyOneof2PropLabelsItemsType] ] = UNSET, - ) -> Response[List[Label]]: - ... + ) -> Response[List[Label]]: ... def set_labels( self, @@ -2253,8 +2225,7 @@ async def async_set_labels( str, ] ] = UNSET, - ) -> Response[List[Label]]: - ... + ) -> Response[List[Label]]: ... @overload async def async_set_labels( @@ -2266,8 +2237,7 @@ async def async_set_labels( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, labels: Missing[List[str]] = UNSET, - ) -> Response[List[Label]]: - ... + ) -> Response[List[Label]]: ... @overload async def async_set_labels( @@ -2281,8 +2251,7 @@ async def async_set_labels( labels: Missing[ List[ReposOwnerRepoIssuesIssueNumberLabelsPutBodyOneof2PropLabelsItemsType] ] = UNSET, - ) -> Response[List[Label]]: - ... + ) -> Response[List[Label]]: ... async def async_set_labels( self, @@ -2368,8 +2337,7 @@ def add_labels( str, ] ] = UNSET, - ) -> Response[List[Label]]: - ... + ) -> Response[List[Label]]: ... @overload def add_labels( @@ -2381,8 +2349,7 @@ def add_labels( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, labels: Missing[List[str]] = UNSET, - ) -> Response[List[Label]]: - ... + ) -> Response[List[Label]]: ... @overload def add_labels( @@ -2396,8 +2363,7 @@ def add_labels( labels: Missing[ List[ReposOwnerRepoIssuesIssueNumberLabelsPostBodyOneof2PropLabelsItemsType] ] = UNSET, - ) -> Response[List[Label]]: - ... + ) -> Response[List[Label]]: ... def add_labels( self, @@ -2483,8 +2449,7 @@ async def async_add_labels( str, ] ] = UNSET, - ) -> Response[List[Label]]: - ... + ) -> Response[List[Label]]: ... @overload async def async_add_labels( @@ -2496,8 +2461,7 @@ async def async_add_labels( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, labels: Missing[List[str]] = UNSET, - ) -> Response[List[Label]]: - ... + ) -> Response[List[Label]]: ... @overload async def async_add_labels( @@ -2511,8 +2475,7 @@ async def async_add_labels( labels: Missing[ List[ReposOwnerRepoIssuesIssueNumberLabelsPostBodyOneof2PropLabelsItemsType] ] = UNSET, - ) -> Response[List[Label]]: - ... + ) -> Response[List[Label]]: ... async def async_add_labels( self, @@ -2704,8 +2667,7 @@ def lock( data: Missing[ Union[ReposOwnerRepoIssuesIssueNumberLockPutBodyType, None] ] = UNSET, - ) -> Response: - ... + ) -> Response: ... @overload def lock( @@ -2719,8 +2681,7 @@ def lock( lock_reason: Missing[ Literal["off-topic", "too heated", "resolved", "spam"] ] = UNSET, - ) -> Response: - ... + ) -> Response: ... def lock( self, @@ -2781,8 +2742,7 @@ async def async_lock( data: Missing[ Union[ReposOwnerRepoIssuesIssueNumberLockPutBodyType, None] ] = UNSET, - ) -> Response: - ... + ) -> Response: ... @overload async def async_lock( @@ -2796,8 +2756,7 @@ async def async_lock( lock_reason: Missing[ Literal["off-topic", "too heated", "resolved", "spam"] ] = UNSET, - ) -> Response: - ... + ) -> Response: ... async def async_lock( self, @@ -3203,8 +3162,7 @@ def create_label( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoLabelsPostBodyType, - ) -> Response[Label]: - ... + ) -> Response[Label]: ... @overload def create_label( @@ -3217,8 +3175,7 @@ def create_label( name: str, color: Missing[str] = UNSET, description: Missing[str] = UNSET, - ) -> Response[Label]: - ... + ) -> Response[Label]: ... def create_label( self, @@ -3269,8 +3226,7 @@ async def async_create_label( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoLabelsPostBodyType, - ) -> Response[Label]: - ... + ) -> Response[Label]: ... @overload async def async_create_label( @@ -3283,8 +3239,7 @@ async def async_create_label( name: str, color: Missing[str] = UNSET, description: Missing[str] = UNSET, - ) -> Response[Label]: - ... + ) -> Response[Label]: ... async def async_create_label( self, @@ -3428,8 +3383,7 @@ def update_label( *, headers: Optional[Dict[str, str]] = None, data: Missing[ReposOwnerRepoLabelsNamePatchBodyType] = UNSET, - ) -> Response[Label]: - ... + ) -> Response[Label]: ... @overload def update_label( @@ -3443,8 +3397,7 @@ def update_label( new_name: Missing[str] = UNSET, color: Missing[str] = UNSET, description: Missing[str] = UNSET, - ) -> Response[Label]: - ... + ) -> Response[Label]: ... def update_label( self, @@ -3488,8 +3441,7 @@ async def async_update_label( *, headers: Optional[Dict[str, str]] = None, data: Missing[ReposOwnerRepoLabelsNamePatchBodyType] = UNSET, - ) -> Response[Label]: - ... + ) -> Response[Label]: ... @overload async def async_update_label( @@ -3503,8 +3455,7 @@ async def async_update_label( new_name: Missing[str] = UNSET, color: Missing[str] = UNSET, description: Missing[str] = UNSET, - ) -> Response[Label]: - ... + ) -> Response[Label]: ... async def async_update_label( self, @@ -3629,8 +3580,7 @@ def create_milestone( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoMilestonesPostBodyType, - ) -> Response[Milestone]: - ... + ) -> Response[Milestone]: ... @overload def create_milestone( @@ -3644,8 +3594,7 @@ def create_milestone( state: Missing[Literal["open", "closed"]] = UNSET, description: Missing[str] = UNSET, due_on: Missing[datetime] = UNSET, - ) -> Response[Milestone]: - ... + ) -> Response[Milestone]: ... def create_milestone( self, @@ -3696,8 +3645,7 @@ async def async_create_milestone( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoMilestonesPostBodyType, - ) -> Response[Milestone]: - ... + ) -> Response[Milestone]: ... @overload async def async_create_milestone( @@ -3711,8 +3659,7 @@ async def async_create_milestone( state: Missing[Literal["open", "closed"]] = UNSET, description: Missing[str] = UNSET, due_on: Missing[datetime] = UNSET, - ) -> Response[Milestone]: - ... + ) -> Response[Milestone]: ... async def async_create_milestone( self, @@ -3866,8 +3813,7 @@ def update_milestone( *, headers: Optional[Dict[str, str]] = None, data: Missing[ReposOwnerRepoMilestonesMilestoneNumberPatchBodyType] = UNSET, - ) -> Response[Milestone]: - ... + ) -> Response[Milestone]: ... @overload def update_milestone( @@ -3882,8 +3828,7 @@ def update_milestone( state: Missing[Literal["open", "closed"]] = UNSET, description: Missing[str] = UNSET, due_on: Missing[datetime] = UNSET, - ) -> Response[Milestone]: - ... + ) -> Response[Milestone]: ... def update_milestone( self, @@ -3929,8 +3874,7 @@ async def async_update_milestone( *, headers: Optional[Dict[str, str]] = None, data: Missing[ReposOwnerRepoMilestonesMilestoneNumberPatchBodyType] = UNSET, - ) -> Response[Milestone]: - ... + ) -> Response[Milestone]: ... @overload async def async_update_milestone( @@ -3945,8 +3889,7 @@ async def async_update_milestone( state: Missing[Literal["open", "closed"]] = UNSET, description: Missing[str] = UNSET, due_on: Missing[datetime] = UNSET, - ) -> Response[Milestone]: - ... + ) -> Response[Milestone]: ... async def async_update_milestone( self, diff --git a/githubkit/versions/v2022_11_28/rest/licenses.py b/githubkit/versions/v2022_11_28/rest/licenses.py index 188ec078c..d7321f0ef 100644 --- a/githubkit/versions/v2022_11_28/rest/licenses.py +++ b/githubkit/versions/v2022_11_28/rest/licenses.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref diff --git a/githubkit/versions/v2022_11_28/rest/markdown.py b/githubkit/versions/v2022_11_28/rest/markdown.py index eba79977c..d474f684d 100644 --- a/githubkit/versions/v2022_11_28/rest/markdown.py +++ b/githubkit/versions/v2022_11_28/rest/markdown.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref @@ -48,8 +47,7 @@ def _github(self) -> GitHubCore: @overload def render( self, *, headers: Optional[Dict[str, str]] = None, data: MarkdownPostBodyType - ) -> Response[str]: - ... + ) -> Response[str]: ... @overload def render( @@ -60,8 +58,7 @@ def render( text: str, mode: Missing[Literal["markdown", "gfm"]] = UNSET, context: Missing[str] = UNSET, - ) -> Response[str]: - ... + ) -> Response[str]: ... def render( self, @@ -96,8 +93,7 @@ def render( @overload async def async_render( self, *, headers: Optional[Dict[str, str]] = None, data: MarkdownPostBodyType - ) -> Response[str]: - ... + ) -> Response[str]: ... @overload async def async_render( @@ -108,8 +104,7 @@ async def async_render( text: str, mode: Missing[Literal["markdown", "gfm"]] = UNSET, context: Missing[str] = UNSET, - ) -> Response[str]: - ... + ) -> Response[str]: ... async def async_render( self, diff --git a/githubkit/versions/v2022_11_28/rest/meta.py b/githubkit/versions/v2022_11_28/rest/meta.py index f67ca652f..a30cfdd4e 100644 --- a/githubkit/versions/v2022_11_28/rest/meta.py +++ b/githubkit/versions/v2022_11_28/rest/meta.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref diff --git a/githubkit/versions/v2022_11_28/rest/migrations.py b/githubkit/versions/v2022_11_28/rest/migrations.py index 87a4769d6..f07e5761a 100644 --- a/githubkit/versions/v2022_11_28/rest/migrations.py +++ b/githubkit/versions/v2022_11_28/rest/migrations.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref @@ -132,8 +131,7 @@ def start_for_org( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgMigrationsPostBodyType, - ) -> Response[Migration]: - ... + ) -> Response[Migration]: ... @overload def start_for_org( @@ -151,8 +149,7 @@ def start_for_org( exclude_owner_projects: Missing[bool] = UNSET, org_metadata_only: Missing[bool] = UNSET, exclude: Missing[List[Literal["repositories"]]] = UNSET, - ) -> Response[Migration]: - ... + ) -> Response[Migration]: ... def start_for_org( self, @@ -201,8 +198,7 @@ async def async_start_for_org( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgMigrationsPostBodyType, - ) -> Response[Migration]: - ... + ) -> Response[Migration]: ... @overload async def async_start_for_org( @@ -220,8 +216,7 @@ async def async_start_for_org( exclude_owner_projects: Missing[bool] = UNSET, org_metadata_only: Missing[bool] = UNSET, exclude: Missing[List[Literal["repositories"]]] = UNSET, - ) -> Response[Migration]: - ... + ) -> Response[Migration]: ... async def async_start_for_org( self, @@ -601,8 +596,7 @@ def start_import( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoImportPutBodyType, - ) -> Response[Import]: - ... + ) -> Response[Import]: ... @overload def start_import( @@ -617,8 +611,7 @@ def start_import( vcs_username: Missing[str] = UNSET, vcs_password: Missing[str] = UNSET, tfvc_project: Missing[str] = UNSET, - ) -> Response[Import]: - ... + ) -> Response[Import]: ... def start_import( self, @@ -670,8 +663,7 @@ async def async_start_import( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoImportPutBodyType, - ) -> Response[Import]: - ... + ) -> Response[Import]: ... @overload async def async_start_import( @@ -686,8 +678,7 @@ async def async_start_import( vcs_username: Missing[str] = UNSET, vcs_password: Missing[str] = UNSET, tfvc_project: Missing[str] = UNSET, - ) -> Response[Import]: - ... + ) -> Response[Import]: ... async def async_start_import( self, @@ -787,8 +778,7 @@ def update_import( *, headers: Optional[Dict[str, str]] = None, data: Missing[Union[ReposOwnerRepoImportPatchBodyType, None]] = UNSET, - ) -> Response[Import]: - ... + ) -> Response[Import]: ... @overload def update_import( @@ -802,8 +792,7 @@ def update_import( vcs_password: Missing[str] = UNSET, vcs: Missing[Literal["subversion", "tfvc", "git", "mercurial"]] = UNSET, tfvc_project: Missing[str] = UNSET, - ) -> Response[Import]: - ... + ) -> Response[Import]: ... def update_import( self, @@ -850,8 +839,7 @@ async def async_update_import( *, headers: Optional[Dict[str, str]] = None, data: Missing[Union[ReposOwnerRepoImportPatchBodyType, None]] = UNSET, - ) -> Response[Import]: - ... + ) -> Response[Import]: ... @overload async def async_update_import( @@ -865,8 +853,7 @@ async def async_update_import( vcs_password: Missing[str] = UNSET, vcs: Missing[Literal["subversion", "tfvc", "git", "mercurial"]] = UNSET, tfvc_project: Missing[str] = UNSET, - ) -> Response[Import]: - ... + ) -> Response[Import]: ... async def async_update_import( self, @@ -982,8 +969,7 @@ def map_commit_author( *, headers: Optional[Dict[str, str]] = None, data: Missing[ReposOwnerRepoImportAuthorsAuthorIdPatchBodyType] = UNSET, - ) -> Response[PorterAuthor]: - ... + ) -> Response[PorterAuthor]: ... @overload def map_commit_author( @@ -996,8 +982,7 @@ def map_commit_author( headers: Optional[Dict[str, str]] = None, email: Missing[str] = UNSET, name: Missing[str] = UNSET, - ) -> Response[PorterAuthor]: - ... + ) -> Response[PorterAuthor]: ... def map_commit_author( self, @@ -1051,8 +1036,7 @@ async def async_map_commit_author( *, headers: Optional[Dict[str, str]] = None, data: Missing[ReposOwnerRepoImportAuthorsAuthorIdPatchBodyType] = UNSET, - ) -> Response[PorterAuthor]: - ... + ) -> Response[PorterAuthor]: ... @overload async def async_map_commit_author( @@ -1065,8 +1049,7 @@ async def async_map_commit_author( headers: Optional[Dict[str, str]] = None, email: Missing[str] = UNSET, name: Missing[str] = UNSET, - ) -> Response[PorterAuthor]: - ... + ) -> Response[PorterAuthor]: ... async def async_map_commit_author( self, @@ -1173,8 +1156,7 @@ def set_lfs_preference( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoImportLfsPatchBodyType, - ) -> Response[Import]: - ... + ) -> Response[Import]: ... @overload def set_lfs_preference( @@ -1185,8 +1167,7 @@ def set_lfs_preference( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, use_lfs: Literal["opt_in", "opt_out"], - ) -> Response[Import]: - ... + ) -> Response[Import]: ... def set_lfs_preference( self, @@ -1237,8 +1218,7 @@ async def async_set_lfs_preference( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoImportLfsPatchBodyType, - ) -> Response[Import]: - ... + ) -> Response[Import]: ... @overload async def async_set_lfs_preference( @@ -1249,8 +1229,7 @@ async def async_set_lfs_preference( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, use_lfs: Literal["opt_in", "opt_out"], - ) -> Response[Import]: - ... + ) -> Response[Import]: ... async def async_set_lfs_preference( self, @@ -1367,8 +1346,7 @@ def start_for_authenticated_user( *, headers: Optional[Dict[str, str]] = None, data: UserMigrationsPostBodyType, - ) -> Response[Migration]: - ... + ) -> Response[Migration]: ... @overload def start_for_authenticated_user( @@ -1385,8 +1363,7 @@ def start_for_authenticated_user( org_metadata_only: Missing[bool] = UNSET, exclude: Missing[List[Literal["repositories"]]] = UNSET, repositories: List[str], - ) -> Response[Migration]: - ... + ) -> Response[Migration]: ... def start_for_authenticated_user( self, @@ -1434,8 +1411,7 @@ async def async_start_for_authenticated_user( *, headers: Optional[Dict[str, str]] = None, data: UserMigrationsPostBodyType, - ) -> Response[Migration]: - ... + ) -> Response[Migration]: ... @overload async def async_start_for_authenticated_user( @@ -1452,8 +1428,7 @@ async def async_start_for_authenticated_user( org_metadata_only: Missing[bool] = UNSET, exclude: Missing[List[Literal["repositories"]]] = UNSET, repositories: List[str], - ) -> Response[Migration]: - ... + ) -> Response[Migration]: ... async def async_start_for_authenticated_user( self, diff --git a/githubkit/versions/v2022_11_28/rest/oidc.py b/githubkit/versions/v2022_11_28/rest/oidc.py index 01ac12a21..d78bc64ea 100644 --- a/githubkit/versions/v2022_11_28/rest/oidc.py +++ b/githubkit/versions/v2022_11_28/rest/oidc.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref @@ -93,8 +92,7 @@ def update_oidc_custom_sub_template_for_org( *, headers: Optional[Dict[str, str]] = None, data: OidcCustomSubType, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... @overload def update_oidc_custom_sub_template_for_org( @@ -104,8 +102,7 @@ def update_oidc_custom_sub_template_for_org( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, include_claim_keys: List[str], - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... def update_oidc_custom_sub_template_for_org( self, @@ -149,8 +146,7 @@ async def async_update_oidc_custom_sub_template_for_org( *, headers: Optional[Dict[str, str]] = None, data: OidcCustomSubType, - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... @overload async def async_update_oidc_custom_sub_template_for_org( @@ -160,8 +156,7 @@ async def async_update_oidc_custom_sub_template_for_org( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, include_claim_keys: List[str], - ) -> Response[EmptyObject]: - ... + ) -> Response[EmptyObject]: ... async def async_update_oidc_custom_sub_template_for_org( self, diff --git a/githubkit/versions/v2022_11_28/rest/orgs.py b/githubkit/versions/v2022_11_28/rest/orgs.py index 699bbe3a7..476ccfc93 100644 --- a/githubkit/versions/v2022_11_28/rest/orgs.py +++ b/githubkit/versions/v2022_11_28/rest/orgs.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref @@ -264,8 +263,7 @@ def update( *, headers: Optional[Dict[str, str]] = None, data: Missing[OrgsOrgPatchBodyType] = UNSET, - ) -> Response[OrganizationFull]: - ... + ) -> Response[OrganizationFull]: ... @overload def update( @@ -309,8 +307,7 @@ def update( ] = UNSET, secret_scanning_push_protection_custom_link_enabled: Missing[bool] = UNSET, secret_scanning_push_protection_custom_link: Missing[str] = UNSET, - ) -> Response[OrganizationFull]: - ... + ) -> Response[OrganizationFull]: ... def update( self, @@ -362,8 +359,7 @@ async def async_update( *, headers: Optional[Dict[str, str]] = None, data: Missing[OrgsOrgPatchBodyType] = UNSET, - ) -> Response[OrganizationFull]: - ... + ) -> Response[OrganizationFull]: ... @overload async def async_update( @@ -407,8 +403,7 @@ async def async_update( ] = UNSET, secret_scanning_push_protection_custom_link_enabled: Missing[bool] = UNSET, secret_scanning_push_protection_custom_link: Missing[str] = UNSET, - ) -> Response[OrganizationFull]: - ... + ) -> Response[OrganizationFull]: ... async def async_update( self, @@ -792,8 +787,7 @@ def create_webhook( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgHooksPostBodyType, - ) -> Response[OrgHook]: - ... + ) -> Response[OrgHook]: ... @overload def create_webhook( @@ -806,8 +800,7 @@ def create_webhook( config: OrgsOrgHooksPostBodyPropConfigType, events: Missing[List[str]] = UNSET, active: Missing[bool] = UNSET, - ) -> Response[OrgHook]: - ... + ) -> Response[OrgHook]: ... def create_webhook( self, @@ -851,8 +844,7 @@ async def async_create_webhook( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgHooksPostBodyType, - ) -> Response[OrgHook]: - ... + ) -> Response[OrgHook]: ... @overload async def async_create_webhook( @@ -865,8 +857,7 @@ async def async_create_webhook( config: OrgsOrgHooksPostBodyPropConfigType, events: Missing[List[str]] = UNSET, active: Missing[bool] = UNSET, - ) -> Response[OrgHook]: - ... + ) -> Response[OrgHook]: ... async def async_create_webhook( self, @@ -1009,8 +1000,7 @@ def update_webhook( *, headers: Optional[Dict[str, str]] = None, data: Missing[OrgsOrgHooksHookIdPatchBodyType] = UNSET, - ) -> Response[OrgHook]: - ... + ) -> Response[OrgHook]: ... @overload def update_webhook( @@ -1024,8 +1014,7 @@ def update_webhook( events: Missing[List[str]] = UNSET, active: Missing[bool] = UNSET, name: Missing[str] = UNSET, - ) -> Response[OrgHook]: - ... + ) -> Response[OrgHook]: ... def update_webhook( self, @@ -1076,8 +1065,7 @@ async def async_update_webhook( *, headers: Optional[Dict[str, str]] = None, data: Missing[OrgsOrgHooksHookIdPatchBodyType] = UNSET, - ) -> Response[OrgHook]: - ... + ) -> Response[OrgHook]: ... @overload async def async_update_webhook( @@ -1091,8 +1079,7 @@ async def async_update_webhook( events: Missing[List[str]] = UNSET, active: Missing[bool] = UNSET, name: Missing[str] = UNSET, - ) -> Response[OrgHook]: - ... + ) -> Response[OrgHook]: ... async def async_update_webhook( self, @@ -1187,8 +1174,7 @@ def update_webhook_config_for_org( *, headers: Optional[Dict[str, str]] = None, data: Missing[OrgsOrgHooksHookIdConfigPatchBodyType] = UNSET, - ) -> Response[WebhookConfig]: - ... + ) -> Response[WebhookConfig]: ... @overload def update_webhook_config_for_org( @@ -1202,8 +1188,7 @@ def update_webhook_config_for_org( content_type: Missing[str] = UNSET, secret: Missing[str] = UNSET, insecure_ssl: Missing[Union[str, float]] = UNSET, - ) -> Response[WebhookConfig]: - ... + ) -> Response[WebhookConfig]: ... def update_webhook_config_for_org( self, @@ -1245,8 +1230,7 @@ async def async_update_webhook_config_for_org( *, headers: Optional[Dict[str, str]] = None, data: Missing[OrgsOrgHooksHookIdConfigPatchBodyType] = UNSET, - ) -> Response[WebhookConfig]: - ... + ) -> Response[WebhookConfig]: ... @overload async def async_update_webhook_config_for_org( @@ -1260,8 +1244,7 @@ async def async_update_webhook_config_for_org( content_type: Missing[str] = UNSET, secret: Missing[str] = UNSET, insecure_ssl: Missing[Union[str, float]] = UNSET, - ) -> Response[WebhookConfig]: - ... + ) -> Response[WebhookConfig]: ... async def async_update_webhook_config_for_org( self, @@ -1684,8 +1667,7 @@ def create_invitation( *, headers: Optional[Dict[str, str]] = None, data: Missing[OrgsOrgInvitationsPostBodyType] = UNSET, - ) -> Response[OrganizationInvitation]: - ... + ) -> Response[OrganizationInvitation]: ... @overload def create_invitation( @@ -1700,8 +1682,7 @@ def create_invitation( Literal["admin", "direct_member", "billing_manager", "reinstate"] ] = UNSET, team_ids: Missing[List[int]] = UNSET, - ) -> Response[OrganizationInvitation]: - ... + ) -> Response[OrganizationInvitation]: ... def create_invitation( self, @@ -1750,8 +1731,7 @@ async def async_create_invitation( *, headers: Optional[Dict[str, str]] = None, data: Missing[OrgsOrgInvitationsPostBodyType] = UNSET, - ) -> Response[OrganizationInvitation]: - ... + ) -> Response[OrganizationInvitation]: ... @overload async def async_create_invitation( @@ -1766,8 +1746,7 @@ async def async_create_invitation( Literal["admin", "direct_member", "billing_manager", "reinstate"] ] = UNSET, team_ids: Missing[List[int]] = UNSET, - ) -> Response[OrganizationInvitation]: - ... + ) -> Response[OrganizationInvitation]: ... async def async_create_invitation( self, @@ -2153,8 +2132,7 @@ def set_membership_for_user( *, headers: Optional[Dict[str, str]] = None, data: Missing[OrgsOrgMembershipsUsernamePutBodyType] = UNSET, - ) -> Response[OrgMembership]: - ... + ) -> Response[OrgMembership]: ... @overload def set_membership_for_user( @@ -2165,8 +2143,7 @@ def set_membership_for_user( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, role: Missing[Literal["admin", "member"]] = UNSET, - ) -> Response[OrgMembership]: - ... + ) -> Response[OrgMembership]: ... def set_membership_for_user( self, @@ -2217,8 +2194,7 @@ async def async_set_membership_for_user( *, headers: Optional[Dict[str, str]] = None, data: Missing[OrgsOrgMembershipsUsernamePutBodyType] = UNSET, - ) -> Response[OrgMembership]: - ... + ) -> Response[OrgMembership]: ... @overload async def async_set_membership_for_user( @@ -2229,8 +2205,7 @@ async def async_set_membership_for_user( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, role: Missing[Literal["admin", "member"]] = UNSET, - ) -> Response[OrgMembership]: - ... + ) -> Response[OrgMembership]: ... async def async_set_membership_for_user( self, @@ -2450,8 +2425,7 @@ def create_custom_organization_role( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgOrganizationRolesPostBodyType, - ) -> Response[OrganizationRole]: - ... + ) -> Response[OrganizationRole]: ... @overload def create_custom_organization_role( @@ -2463,8 +2437,7 @@ def create_custom_organization_role( name: str, description: Missing[str] = UNSET, permissions: List[str], - ) -> Response[OrganizationRole]: - ... + ) -> Response[OrganizationRole]: ... def create_custom_organization_role( self, @@ -2514,8 +2487,7 @@ async def async_create_custom_organization_role( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgOrganizationRolesPostBodyType, - ) -> Response[OrganizationRole]: - ... + ) -> Response[OrganizationRole]: ... @overload async def async_create_custom_organization_role( @@ -2527,8 +2499,7 @@ async def async_create_custom_organization_role( name: str, description: Missing[str] = UNSET, permissions: List[str], - ) -> Response[OrganizationRole]: - ... + ) -> Response[OrganizationRole]: ... async def async_create_custom_organization_role( self, @@ -2909,8 +2880,7 @@ def patch_custom_organization_role( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgOrganizationRolesRoleIdPatchBodyType, - ) -> Response[OrganizationRole]: - ... + ) -> Response[OrganizationRole]: ... @overload def patch_custom_organization_role( @@ -2923,8 +2893,7 @@ def patch_custom_organization_role( name: Missing[str] = UNSET, description: Missing[str] = UNSET, permissions: Missing[List[str]] = UNSET, - ) -> Response[OrganizationRole]: - ... + ) -> Response[OrganizationRole]: ... def patch_custom_organization_role( self, @@ -2976,8 +2945,7 @@ async def async_patch_custom_organization_role( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgOrganizationRolesRoleIdPatchBodyType, - ) -> Response[OrganizationRole]: - ... + ) -> Response[OrganizationRole]: ... @overload async def async_patch_custom_organization_role( @@ -2990,8 +2958,7 @@ async def async_patch_custom_organization_role( name: Missing[str] = UNSET, description: Missing[str] = UNSET, permissions: Missing[List[str]] = UNSET, - ) -> Response[OrganizationRole]: - ... + ) -> Response[OrganizationRole]: ... async def async_patch_custom_organization_role( self, @@ -3241,8 +3208,7 @@ def convert_member_to_outside_collaborator( *, headers: Optional[Dict[str, str]] = None, data: Missing[OrgsOrgOutsideCollaboratorsUsernamePutBodyType] = UNSET, - ) -> Response[OrgsOrgOutsideCollaboratorsUsernamePutResponse202]: - ... + ) -> Response[OrgsOrgOutsideCollaboratorsUsernamePutResponse202]: ... @overload def convert_member_to_outside_collaborator( @@ -3253,8 +3219,7 @@ def convert_member_to_outside_collaborator( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, async_: Missing[bool] = UNSET, - ) -> Response[OrgsOrgOutsideCollaboratorsUsernamePutResponse202]: - ... + ) -> Response[OrgsOrgOutsideCollaboratorsUsernamePutResponse202]: ... def convert_member_to_outside_collaborator( self, @@ -3303,8 +3268,7 @@ async def async_convert_member_to_outside_collaborator( *, headers: Optional[Dict[str, str]] = None, data: Missing[OrgsOrgOutsideCollaboratorsUsernamePutBodyType] = UNSET, - ) -> Response[OrgsOrgOutsideCollaboratorsUsernamePutResponse202]: - ... + ) -> Response[OrgsOrgOutsideCollaboratorsUsernamePutResponse202]: ... @overload async def async_convert_member_to_outside_collaborator( @@ -3315,8 +3279,7 @@ async def async_convert_member_to_outside_collaborator( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, async_: Missing[bool] = UNSET, - ) -> Response[OrgsOrgOutsideCollaboratorsUsernamePutResponse202]: - ... + ) -> Response[OrgsOrgOutsideCollaboratorsUsernamePutResponse202]: ... async def async_convert_member_to_outside_collaborator( self, @@ -3522,8 +3485,7 @@ def review_pat_grant_requests_in_bulk( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgPersonalAccessTokenRequestsPostBodyType, - ) -> Response[AppHookDeliveriesDeliveryIdAttemptsPostResponse202]: - ... + ) -> Response[AppHookDeliveriesDeliveryIdAttemptsPostResponse202]: ... @overload def review_pat_grant_requests_in_bulk( @@ -3535,8 +3497,7 @@ def review_pat_grant_requests_in_bulk( pat_request_ids: Missing[List[int]] = UNSET, action: Literal["approve", "deny"], reason: Missing[Union[str, None]] = UNSET, - ) -> Response[AppHookDeliveriesDeliveryIdAttemptsPostResponse202]: - ... + ) -> Response[AppHookDeliveriesDeliveryIdAttemptsPostResponse202]: ... def review_pat_grant_requests_in_bulk( self, @@ -3587,8 +3548,7 @@ async def async_review_pat_grant_requests_in_bulk( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgPersonalAccessTokenRequestsPostBodyType, - ) -> Response[AppHookDeliveriesDeliveryIdAttemptsPostResponse202]: - ... + ) -> Response[AppHookDeliveriesDeliveryIdAttemptsPostResponse202]: ... @overload async def async_review_pat_grant_requests_in_bulk( @@ -3600,8 +3560,7 @@ async def async_review_pat_grant_requests_in_bulk( pat_request_ids: Missing[List[int]] = UNSET, action: Literal["approve", "deny"], reason: Missing[Union[str, None]] = UNSET, - ) -> Response[AppHookDeliveriesDeliveryIdAttemptsPostResponse202]: - ... + ) -> Response[AppHookDeliveriesDeliveryIdAttemptsPostResponse202]: ... async def async_review_pat_grant_requests_in_bulk( self, @@ -3653,8 +3612,7 @@ def review_pat_grant_request( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgPersonalAccessTokenRequestsPatRequestIdPostBodyType, - ) -> Response: - ... + ) -> Response: ... @overload def review_pat_grant_request( @@ -3666,8 +3624,7 @@ def review_pat_grant_request( headers: Optional[Dict[str, str]] = None, action: Literal["approve", "deny"], reason: Missing[Union[str, None]] = UNSET, - ) -> Response: - ... + ) -> Response: ... def review_pat_grant_request( self, @@ -3722,8 +3679,7 @@ async def async_review_pat_grant_request( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgPersonalAccessTokenRequestsPatRequestIdPostBodyType, - ) -> Response: - ... + ) -> Response: ... @overload async def async_review_pat_grant_request( @@ -3735,8 +3691,7 @@ async def async_review_pat_grant_request( headers: Optional[Dict[str, str]] = None, action: Literal["approve", "deny"], reason: Missing[Union[str, None]] = UNSET, - ) -> Response: - ... + ) -> Response: ... async def async_review_pat_grant_request( self, @@ -3978,8 +3933,7 @@ def update_pat_accesses( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgPersonalAccessTokensPostBodyType, - ) -> Response[AppHookDeliveriesDeliveryIdAttemptsPostResponse202]: - ... + ) -> Response[AppHookDeliveriesDeliveryIdAttemptsPostResponse202]: ... @overload def update_pat_accesses( @@ -3990,8 +3944,7 @@ def update_pat_accesses( headers: Optional[Dict[str, str]] = None, action: Literal["revoke"], pat_ids: List[int], - ) -> Response[AppHookDeliveriesDeliveryIdAttemptsPostResponse202]: - ... + ) -> Response[AppHookDeliveriesDeliveryIdAttemptsPostResponse202]: ... def update_pat_accesses( self, @@ -4042,8 +3995,7 @@ async def async_update_pat_accesses( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgPersonalAccessTokensPostBodyType, - ) -> Response[AppHookDeliveriesDeliveryIdAttemptsPostResponse202]: - ... + ) -> Response[AppHookDeliveriesDeliveryIdAttemptsPostResponse202]: ... @overload async def async_update_pat_accesses( @@ -4054,8 +4006,7 @@ async def async_update_pat_accesses( headers: Optional[Dict[str, str]] = None, action: Literal["revoke"], pat_ids: List[int], - ) -> Response[AppHookDeliveriesDeliveryIdAttemptsPostResponse202]: - ... + ) -> Response[AppHookDeliveriesDeliveryIdAttemptsPostResponse202]: ... async def async_update_pat_accesses( self, @@ -4107,8 +4058,7 @@ def update_pat_access( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgPersonalAccessTokensPatIdPostBodyType, - ) -> Response: - ... + ) -> Response: ... @overload def update_pat_access( @@ -4119,8 +4069,7 @@ def update_pat_access( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, action: Literal["revoke"], - ) -> Response: - ... + ) -> Response: ... def update_pat_access( self, @@ -4171,8 +4120,7 @@ async def async_update_pat_access( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgPersonalAccessTokensPatIdPostBodyType, - ) -> Response: - ... + ) -> Response: ... @overload async def async_update_pat_access( @@ -4183,8 +4131,7 @@ async def async_update_pat_access( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, action: Literal["revoke"], - ) -> Response: - ... + ) -> Response: ... async def async_update_pat_access( self, @@ -4362,8 +4309,7 @@ def create_or_update_custom_properties( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgPropertiesSchemaPatchBodyType, - ) -> Response[List[OrgCustomProperty]]: - ... + ) -> Response[List[OrgCustomProperty]]: ... @overload def create_or_update_custom_properties( @@ -4373,8 +4319,7 @@ def create_or_update_custom_properties( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, properties: List[OrgCustomPropertyType], - ) -> Response[List[OrgCustomProperty]]: - ... + ) -> Response[List[OrgCustomProperty]]: ... def create_or_update_custom_properties( self, @@ -4424,8 +4369,7 @@ async def async_create_or_update_custom_properties( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgPropertiesSchemaPatchBodyType, - ) -> Response[List[OrgCustomProperty]]: - ... + ) -> Response[List[OrgCustomProperty]]: ... @overload async def async_create_or_update_custom_properties( @@ -4435,8 +4379,7 @@ async def async_create_or_update_custom_properties( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, properties: List[OrgCustomPropertyType], - ) -> Response[List[OrgCustomProperty]]: - ... + ) -> Response[List[OrgCustomProperty]]: ... async def async_create_or_update_custom_properties( self, @@ -4539,8 +4482,7 @@ def create_or_update_custom_property( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgPropertiesSchemaCustomPropertyNamePutBodyType, - ) -> Response[OrgCustomProperty]: - ... + ) -> Response[OrgCustomProperty]: ... @overload def create_or_update_custom_property( @@ -4555,8 +4497,7 @@ def create_or_update_custom_property( default_value: Missing[Union[str, None]] = UNSET, description: Missing[Union[str, None]] = UNSET, allowed_values: Missing[Union[List[str], None]] = UNSET, - ) -> Response[OrgCustomProperty]: - ... + ) -> Response[OrgCustomProperty]: ... def create_or_update_custom_property( self, @@ -4608,8 +4549,7 @@ async def async_create_or_update_custom_property( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgPropertiesSchemaCustomPropertyNamePutBodyType, - ) -> Response[OrgCustomProperty]: - ... + ) -> Response[OrgCustomProperty]: ... @overload async def async_create_or_update_custom_property( @@ -4624,8 +4564,7 @@ async def async_create_or_update_custom_property( default_value: Missing[Union[str, None]] = UNSET, description: Missing[Union[str, None]] = UNSET, allowed_values: Missing[Union[List[str], None]] = UNSET, - ) -> Response[OrgCustomProperty]: - ... + ) -> Response[OrgCustomProperty]: ... async def async_create_or_update_custom_property( self, @@ -4800,8 +4739,7 @@ def create_or_update_custom_properties_values_for_repos( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgPropertiesValuesPatchBodyType, - ) -> Response: - ... + ) -> Response: ... @overload def create_or_update_custom_properties_values_for_repos( @@ -4812,8 +4750,7 @@ def create_or_update_custom_properties_values_for_repos( headers: Optional[Dict[str, str]] = None, repository_names: List[str], properties: List[CustomPropertyValueType], - ) -> Response: - ... + ) -> Response: ... def create_or_update_custom_properties_values_for_repos( self, @@ -4861,8 +4798,7 @@ async def async_create_or_update_custom_properties_values_for_repos( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgPropertiesValuesPatchBodyType, - ) -> Response: - ... + ) -> Response: ... @overload async def async_create_or_update_custom_properties_values_for_repos( @@ -4873,8 +4809,7 @@ async def async_create_or_update_custom_properties_values_for_repos( headers: Optional[Dict[str, str]] = None, repository_names: List[str], properties: List[CustomPropertyValueType], - ) -> Response: - ... + ) -> Response: ... async def async_create_or_update_custom_properties_values_for_repos( self, @@ -5244,8 +5179,7 @@ def enable_or_disable_security_product_on_all_org_repos( *, headers: Optional[Dict[str, str]] = None, data: Missing[OrgsOrgSecurityProductEnablementPostBodyType] = UNSET, - ) -> Response: - ... + ) -> Response: ... @overload def enable_or_disable_security_product_on_all_org_repos( @@ -5265,8 +5199,7 @@ def enable_or_disable_security_product_on_all_org_repos( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, query_suite: Missing[Literal["default", "extended"]] = UNSET, - ) -> Response: - ... + ) -> Response: ... def enable_or_disable_security_product_on_all_org_repos( self, @@ -5326,8 +5259,7 @@ async def async_enable_or_disable_security_product_on_all_org_repos( *, headers: Optional[Dict[str, str]] = None, data: Missing[OrgsOrgSecurityProductEnablementPostBodyType] = UNSET, - ) -> Response: - ... + ) -> Response: ... @overload async def async_enable_or_disable_security_product_on_all_org_repos( @@ -5347,8 +5279,7 @@ async def async_enable_or_disable_security_product_on_all_org_repos( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, query_suite: Missing[Literal["default", "extended"]] = UNSET, - ) -> Response: - ... + ) -> Response: ... async def async_enable_or_disable_security_product_on_all_org_repos( self, @@ -5522,8 +5453,7 @@ def update_membership_for_authenticated_user( *, headers: Optional[Dict[str, str]] = None, data: UserMembershipsOrgsOrgPatchBodyType, - ) -> Response[OrgMembership]: - ... + ) -> Response[OrgMembership]: ... @overload def update_membership_for_authenticated_user( @@ -5533,8 +5463,7 @@ def update_membership_for_authenticated_user( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, state: Literal["active"], - ) -> Response[OrgMembership]: - ... + ) -> Response[OrgMembership]: ... def update_membership_for_authenticated_user( self, @@ -5584,8 +5513,7 @@ async def async_update_membership_for_authenticated_user( *, headers: Optional[Dict[str, str]] = None, data: UserMembershipsOrgsOrgPatchBodyType, - ) -> Response[OrgMembership]: - ... + ) -> Response[OrgMembership]: ... @overload async def async_update_membership_for_authenticated_user( @@ -5595,8 +5523,7 @@ async def async_update_membership_for_authenticated_user( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, state: Literal["active"], - ) -> Response[OrgMembership]: - ... + ) -> Response[OrgMembership]: ... async def async_update_membership_for_authenticated_user( self, diff --git a/githubkit/versions/v2022_11_28/rest/packages.py b/githubkit/versions/v2022_11_28/rest/packages.py index 0561cfe88..3594ce588 100644 --- a/githubkit/versions/v2022_11_28/rest/packages.py +++ b/githubkit/versions/v2022_11_28/rest/packages.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref diff --git a/githubkit/versions/v2022_11_28/rest/projects.py b/githubkit/versions/v2022_11_28/rest/projects.py index cd727410c..c93be4cb9 100644 --- a/githubkit/versions/v2022_11_28/rest/projects.py +++ b/githubkit/versions/v2022_11_28/rest/projects.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref @@ -146,8 +145,7 @@ def create_for_org( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgProjectsPostBodyType, - ) -> Response[Project]: - ... + ) -> Response[Project]: ... @overload def create_for_org( @@ -158,8 +156,7 @@ def create_for_org( headers: Optional[Dict[str, str]] = None, name: str, body: Missing[str] = UNSET, - ) -> Response[Project]: - ... + ) -> Response[Project]: ... def create_for_org( self, @@ -211,8 +208,7 @@ async def async_create_for_org( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgProjectsPostBodyType, - ) -> Response[Project]: - ... + ) -> Response[Project]: ... @overload async def async_create_for_org( @@ -223,8 +219,7 @@ async def async_create_for_org( headers: Optional[Dict[str, str]] = None, name: str, body: Missing[str] = UNSET, - ) -> Response[Project]: - ... + ) -> Response[Project]: ... async def async_create_for_org( self, @@ -378,8 +373,7 @@ def update_card( *, headers: Optional[Dict[str, str]] = None, data: Missing[ProjectsColumnsCardsCardIdPatchBodyType] = UNSET, - ) -> Response[ProjectCard]: - ... + ) -> Response[ProjectCard]: ... @overload def update_card( @@ -390,8 +384,7 @@ def update_card( headers: Optional[Dict[str, str]] = None, note: Missing[Union[str, None]] = UNSET, archived: Missing[bool] = UNSET, - ) -> Response[ProjectCard]: - ... + ) -> Response[ProjectCard]: ... def update_card( self, @@ -442,8 +435,7 @@ async def async_update_card( *, headers: Optional[Dict[str, str]] = None, data: Missing[ProjectsColumnsCardsCardIdPatchBodyType] = UNSET, - ) -> Response[ProjectCard]: - ... + ) -> Response[ProjectCard]: ... @overload async def async_update_card( @@ -454,8 +446,7 @@ async def async_update_card( headers: Optional[Dict[str, str]] = None, note: Missing[Union[str, None]] = UNSET, archived: Missing[bool] = UNSET, - ) -> Response[ProjectCard]: - ... + ) -> Response[ProjectCard]: ... async def async_update_card( self, @@ -506,8 +497,7 @@ def move_card( *, headers: Optional[Dict[str, str]] = None, data: ProjectsColumnsCardsCardIdMovesPostBodyType, - ) -> Response[ProjectsColumnsCardsCardIdMovesPostResponse201]: - ... + ) -> Response[ProjectsColumnsCardsCardIdMovesPostResponse201]: ... @overload def move_card( @@ -518,8 +508,7 @@ def move_card( headers: Optional[Dict[str, str]] = None, position: str, column_id: Missing[int] = UNSET, - ) -> Response[ProjectsColumnsCardsCardIdMovesPostResponse201]: - ... + ) -> Response[ProjectsColumnsCardsCardIdMovesPostResponse201]: ... def move_card( self, @@ -572,8 +561,7 @@ async def async_move_card( *, headers: Optional[Dict[str, str]] = None, data: ProjectsColumnsCardsCardIdMovesPostBodyType, - ) -> Response[ProjectsColumnsCardsCardIdMovesPostResponse201]: - ... + ) -> Response[ProjectsColumnsCardsCardIdMovesPostResponse201]: ... @overload async def async_move_card( @@ -584,8 +572,7 @@ async def async_move_card( headers: Optional[Dict[str, str]] = None, position: str, column_id: Missing[int] = UNSET, - ) -> Response[ProjectsColumnsCardsCardIdMovesPostResponse201]: - ... + ) -> Response[ProjectsColumnsCardsCardIdMovesPostResponse201]: ... async def async_move_card( self, @@ -738,8 +725,7 @@ def update_column( *, headers: Optional[Dict[str, str]] = None, data: ProjectsColumnsColumnIdPatchBodyType, - ) -> Response[ProjectColumn]: - ... + ) -> Response[ProjectColumn]: ... @overload def update_column( @@ -749,8 +735,7 @@ def update_column( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, name: str, - ) -> Response[ProjectColumn]: - ... + ) -> Response[ProjectColumn]: ... def update_column( self, @@ -794,8 +779,7 @@ async def async_update_column( *, headers: Optional[Dict[str, str]] = None, data: ProjectsColumnsColumnIdPatchBodyType, - ) -> Response[ProjectColumn]: - ... + ) -> Response[ProjectColumn]: ... @overload async def async_update_column( @@ -805,8 +789,7 @@ async def async_update_column( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, name: str, - ) -> Response[ProjectColumn]: - ... + ) -> Response[ProjectColumn]: ... async def async_update_column( self, @@ -927,8 +910,7 @@ def create_card( ProjectsColumnsColumnIdCardsPostBodyOneof0Type, ProjectsColumnsColumnIdCardsPostBodyOneof1Type, ], - ) -> Response[ProjectCard]: - ... + ) -> Response[ProjectCard]: ... @overload def create_card( @@ -938,8 +920,7 @@ def create_card( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, note: Union[str, None], - ) -> Response[ProjectCard]: - ... + ) -> Response[ProjectCard]: ... @overload def create_card( @@ -950,8 +931,7 @@ def create_card( headers: Optional[Dict[str, str]] = None, content_id: int, content_type: str, - ) -> Response[ProjectCard]: - ... + ) -> Response[ProjectCard]: ... def create_card( self, @@ -1021,8 +1001,7 @@ async def async_create_card( ProjectsColumnsColumnIdCardsPostBodyOneof0Type, ProjectsColumnsColumnIdCardsPostBodyOneof1Type, ], - ) -> Response[ProjectCard]: - ... + ) -> Response[ProjectCard]: ... @overload async def async_create_card( @@ -1032,8 +1011,7 @@ async def async_create_card( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, note: Union[str, None], - ) -> Response[ProjectCard]: - ... + ) -> Response[ProjectCard]: ... @overload async def async_create_card( @@ -1044,8 +1022,7 @@ async def async_create_card( headers: Optional[Dict[str, str]] = None, content_id: int, content_type: str, - ) -> Response[ProjectCard]: - ... + ) -> Response[ProjectCard]: ... async def async_create_card( self, @@ -1112,8 +1089,7 @@ def move_column( *, headers: Optional[Dict[str, str]] = None, data: ProjectsColumnsColumnIdMovesPostBodyType, - ) -> Response[ProjectsColumnsColumnIdMovesPostResponse201]: - ... + ) -> Response[ProjectsColumnsColumnIdMovesPostResponse201]: ... @overload def move_column( @@ -1123,8 +1099,7 @@ def move_column( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, position: str, - ) -> Response[ProjectsColumnsColumnIdMovesPostResponse201]: - ... + ) -> Response[ProjectsColumnsColumnIdMovesPostResponse201]: ... def move_column( self, @@ -1174,8 +1149,7 @@ async def async_move_column( *, headers: Optional[Dict[str, str]] = None, data: ProjectsColumnsColumnIdMovesPostBodyType, - ) -> Response[ProjectsColumnsColumnIdMovesPostResponse201]: - ... + ) -> Response[ProjectsColumnsColumnIdMovesPostResponse201]: ... @overload async def async_move_column( @@ -1185,8 +1159,7 @@ async def async_move_column( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, position: str, - ) -> Response[ProjectsColumnsColumnIdMovesPostResponse201]: - ... + ) -> Response[ProjectsColumnsColumnIdMovesPostResponse201]: ... async def async_move_column( self, @@ -1338,8 +1311,7 @@ def update( *, headers: Optional[Dict[str, str]] = None, data: Missing[ProjectsProjectIdPatchBodyType] = UNSET, - ) -> Response[Project]: - ... + ) -> Response[Project]: ... @overload def update( @@ -1355,8 +1327,7 @@ def update( Literal["read", "write", "admin", "none"] ] = UNSET, private: Missing[bool] = UNSET, - ) -> Response[Project]: - ... + ) -> Response[Project]: ... def update( self, @@ -1408,8 +1379,7 @@ async def async_update( *, headers: Optional[Dict[str, str]] = None, data: Missing[ProjectsProjectIdPatchBodyType] = UNSET, - ) -> Response[Project]: - ... + ) -> Response[Project]: ... @overload async def async_update( @@ -1425,8 +1395,7 @@ async def async_update( Literal["read", "write", "admin", "none"] ] = UNSET, private: Missing[bool] = UNSET, - ) -> Response[Project]: - ... + ) -> Response[Project]: ... async def async_update( self, @@ -1559,8 +1528,7 @@ def add_collaborator( data: Missing[ Union[ProjectsProjectIdCollaboratorsUsernamePutBodyType, None] ] = UNSET, - ) -> Response: - ... + ) -> Response: ... @overload def add_collaborator( @@ -1571,8 +1539,7 @@ def add_collaborator( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, permission: Missing[Literal["read", "write", "admin"]] = UNSET, - ) -> Response: - ... + ) -> Response: ... def add_collaborator( self, @@ -1631,8 +1598,7 @@ async def async_add_collaborator( data: Missing[ Union[ProjectsProjectIdCollaboratorsUsernamePutBodyType, None] ] = UNSET, - ) -> Response: - ... + ) -> Response: ... @overload async def async_add_collaborator( @@ -1643,8 +1609,7 @@ async def async_add_collaborator( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, permission: Missing[Literal["read", "write", "admin"]] = UNSET, - ) -> Response: - ... + ) -> Response: ... async def async_add_collaborator( self, @@ -1880,8 +1845,7 @@ def create_column( *, headers: Optional[Dict[str, str]] = None, data: ProjectsProjectIdColumnsPostBodyType, - ) -> Response[ProjectColumn]: - ... + ) -> Response[ProjectColumn]: ... @overload def create_column( @@ -1891,8 +1855,7 @@ def create_column( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, name: str, - ) -> Response[ProjectColumn]: - ... + ) -> Response[ProjectColumn]: ... def create_column( self, @@ -1942,8 +1905,7 @@ async def async_create_column( *, headers: Optional[Dict[str, str]] = None, data: ProjectsProjectIdColumnsPostBodyType, - ) -> Response[ProjectColumn]: - ... + ) -> Response[ProjectColumn]: ... @overload async def async_create_column( @@ -1953,8 +1915,7 @@ async def async_create_column( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, name: str, - ) -> Response[ProjectColumn]: - ... + ) -> Response[ProjectColumn]: ... async def async_create_column( self, @@ -2087,8 +2048,7 @@ def create_for_repo( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoProjectsPostBodyType, - ) -> Response[Project]: - ... + ) -> Response[Project]: ... @overload def create_for_repo( @@ -2100,8 +2060,7 @@ def create_for_repo( headers: Optional[Dict[str, str]] = None, name: str, body: Missing[str] = UNSET, - ) -> Response[Project]: - ... + ) -> Response[Project]: ... def create_for_repo( self, @@ -2155,8 +2114,7 @@ async def async_create_for_repo( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoProjectsPostBodyType, - ) -> Response[Project]: - ... + ) -> Response[Project]: ... @overload async def async_create_for_repo( @@ -2168,8 +2126,7 @@ async def async_create_for_repo( headers: Optional[Dict[str, str]] = None, name: str, body: Missing[str] = UNSET, - ) -> Response[Project]: - ... + ) -> Response[Project]: ... async def async_create_for_repo( self, @@ -2221,8 +2178,7 @@ def create_for_authenticated_user( *, headers: Optional[Dict[str, str]] = None, data: UserProjectsPostBodyType, - ) -> Response[Project]: - ... + ) -> Response[Project]: ... @overload def create_for_authenticated_user( @@ -2232,8 +2188,7 @@ def create_for_authenticated_user( headers: Optional[Dict[str, str]] = None, name: str, body: Missing[Union[str, None]] = UNSET, - ) -> Response[Project]: - ... + ) -> Response[Project]: ... def create_for_authenticated_user( self, @@ -2281,8 +2236,7 @@ async def async_create_for_authenticated_user( *, headers: Optional[Dict[str, str]] = None, data: UserProjectsPostBodyType, - ) -> Response[Project]: - ... + ) -> Response[Project]: ... @overload async def async_create_for_authenticated_user( @@ -2292,8 +2246,7 @@ async def async_create_for_authenticated_user( headers: Optional[Dict[str, str]] = None, name: str, body: Missing[Union[str, None]] = UNSET, - ) -> Response[Project]: - ... + ) -> Response[Project]: ... async def async_create_for_authenticated_user( self, diff --git a/githubkit/versions/v2022_11_28/rest/pulls.py b/githubkit/versions/v2022_11_28/rest/pulls.py index 8ef35a6a0..6a5eb430a 100644 --- a/githubkit/versions/v2022_11_28/rest/pulls.py +++ b/githubkit/versions/v2022_11_28/rest/pulls.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref @@ -176,8 +175,7 @@ def create( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoPullsPostBodyType, - ) -> Response[PullRequest]: - ... + ) -> Response[PullRequest]: ... @overload def create( @@ -195,8 +193,7 @@ def create( maintainer_can_modify: Missing[bool] = UNSET, draft: Missing[bool] = UNSET, issue: Missing[int] = UNSET, - ) -> Response[PullRequest]: - ... + ) -> Response[PullRequest]: ... def create( self, @@ -247,8 +244,7 @@ async def async_create( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoPullsPostBodyType, - ) -> Response[PullRequest]: - ... + ) -> Response[PullRequest]: ... @overload async def async_create( @@ -266,8 +262,7 @@ async def async_create( maintainer_can_modify: Missing[bool] = UNSET, draft: Missing[bool] = UNSET, issue: Missing[int] = UNSET, - ) -> Response[PullRequest]: - ... + ) -> Response[PullRequest]: ... async def async_create( self, @@ -497,8 +492,7 @@ def update_review_comment( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoPullsCommentsCommentIdPatchBodyType, - ) -> Response[PullRequestReviewComment]: - ... + ) -> Response[PullRequestReviewComment]: ... @overload def update_review_comment( @@ -510,8 +504,7 @@ def update_review_comment( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, body: str, - ) -> Response[PullRequestReviewComment]: - ... + ) -> Response[PullRequestReviewComment]: ... def update_review_comment( self, @@ -558,8 +551,7 @@ async def async_update_review_comment( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoPullsCommentsCommentIdPatchBodyType, - ) -> Response[PullRequestReviewComment]: - ... + ) -> Response[PullRequestReviewComment]: ... @overload async def async_update_review_comment( @@ -571,8 +563,7 @@ async def async_update_review_comment( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, body: str, - ) -> Response[PullRequestReviewComment]: - ... + ) -> Response[PullRequestReviewComment]: ... async def async_update_review_comment( self, @@ -683,8 +674,7 @@ def update( *, headers: Optional[Dict[str, str]] = None, data: Missing[ReposOwnerRepoPullsPullNumberPatchBodyType] = UNSET, - ) -> Response[PullRequest]: - ... + ) -> Response[PullRequest]: ... @overload def update( @@ -700,8 +690,7 @@ def update( state: Missing[Literal["open", "closed"]] = UNSET, base: Missing[str] = UNSET, maintainer_can_modify: Missing[bool] = UNSET, - ) -> Response[PullRequest]: - ... + ) -> Response[PullRequest]: ... def update( self, @@ -754,8 +743,7 @@ async def async_update( *, headers: Optional[Dict[str, str]] = None, data: Missing[ReposOwnerRepoPullsPullNumberPatchBodyType] = UNSET, - ) -> Response[PullRequest]: - ... + ) -> Response[PullRequest]: ... @overload async def async_update( @@ -771,8 +759,7 @@ async def async_update( state: Missing[Literal["open", "closed"]] = UNSET, base: Missing[str] = UNSET, maintainer_can_modify: Missing[bool] = UNSET, - ) -> Response[PullRequest]: - ... + ) -> Response[PullRequest]: ... async def async_update( self, @@ -903,8 +890,7 @@ def create_review_comment( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoPullsPullNumberCommentsPostBodyType, - ) -> Response[PullRequestReviewComment]: - ... + ) -> Response[PullRequestReviewComment]: ... @overload def create_review_comment( @@ -925,8 +911,7 @@ def create_review_comment( start_side: Missing[Literal["LEFT", "RIGHT", "side"]] = UNSET, in_reply_to: Missing[int] = UNSET, subject_type: Missing[Literal["line", "file"]] = UNSET, - ) -> Response[PullRequestReviewComment]: - ... + ) -> Response[PullRequestReviewComment]: ... def create_review_comment( self, @@ -979,8 +964,7 @@ async def async_create_review_comment( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoPullsPullNumberCommentsPostBodyType, - ) -> Response[PullRequestReviewComment]: - ... + ) -> Response[PullRequestReviewComment]: ... @overload async def async_create_review_comment( @@ -1001,8 +985,7 @@ async def async_create_review_comment( start_side: Missing[Literal["LEFT", "RIGHT", "side"]] = UNSET, in_reply_to: Missing[int] = UNSET, subject_type: Missing[Literal["line", "file"]] = UNSET, - ) -> Response[PullRequestReviewComment]: - ... + ) -> Response[PullRequestReviewComment]: ... async def async_create_review_comment( self, @@ -1056,8 +1039,7 @@ def create_reply_for_review_comment( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoPullsPullNumberCommentsCommentIdRepliesPostBodyType, - ) -> Response[PullRequestReviewComment]: - ... + ) -> Response[PullRequestReviewComment]: ... @overload def create_reply_for_review_comment( @@ -1070,8 +1052,7 @@ def create_reply_for_review_comment( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, body: str, - ) -> Response[PullRequestReviewComment]: - ... + ) -> Response[PullRequestReviewComment]: ... def create_reply_for_review_comment( self, @@ -1128,8 +1109,7 @@ async def async_create_reply_for_review_comment( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoPullsPullNumberCommentsCommentIdRepliesPostBodyType, - ) -> Response[PullRequestReviewComment]: - ... + ) -> Response[PullRequestReviewComment]: ... @overload async def async_create_reply_for_review_comment( @@ -1142,8 +1122,7 @@ async def async_create_reply_for_review_comment( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, body: str, - ) -> Response[PullRequestReviewComment]: - ... + ) -> Response[PullRequestReviewComment]: ... async def async_create_reply_for_review_comment( self, @@ -1395,8 +1374,7 @@ def merge( data: Missing[ Union[ReposOwnerRepoPullsPullNumberMergePutBodyType, None] ] = UNSET, - ) -> Response[PullRequestMergeResult]: - ... + ) -> Response[PullRequestMergeResult]: ... @overload def merge( @@ -1411,8 +1389,7 @@ def merge( commit_message: Missing[str] = UNSET, sha: Missing[str] = UNSET, merge_method: Missing[Literal["merge", "squash", "rebase"]] = UNSET, - ) -> Response[PullRequestMergeResult]: - ... + ) -> Response[PullRequestMergeResult]: ... def merge( self, @@ -1478,8 +1455,7 @@ async def async_merge( data: Missing[ Union[ReposOwnerRepoPullsPullNumberMergePutBodyType, None] ] = UNSET, - ) -> Response[PullRequestMergeResult]: - ... + ) -> Response[PullRequestMergeResult]: ... @overload async def async_merge( @@ -1494,8 +1470,7 @@ async def async_merge( commit_message: Missing[str] = UNSET, sha: Missing[str] = UNSET, merge_method: Missing[Literal["merge", "squash", "rebase"]] = UNSET, - ) -> Response[PullRequestMergeResult]: - ... + ) -> Response[PullRequestMergeResult]: ... async def async_merge( self, @@ -1610,8 +1585,7 @@ def request_reviewers( ReposOwnerRepoPullsPullNumberRequestedReviewersPostBodyAnyof1Type, ] ] = UNSET, - ) -> Response[PullRequestSimple]: - ... + ) -> Response[PullRequestSimple]: ... @overload def request_reviewers( @@ -1624,8 +1598,7 @@ def request_reviewers( headers: Optional[Dict[str, str]] = None, reviewers: List[str], team_reviewers: Missing[List[str]] = UNSET, - ) -> Response[PullRequestSimple]: - ... + ) -> Response[PullRequestSimple]: ... @overload def request_reviewers( @@ -1638,8 +1611,7 @@ def request_reviewers( headers: Optional[Dict[str, str]] = None, reviewers: Missing[List[str]] = UNSET, team_reviewers: List[str], - ) -> Response[PullRequestSimple]: - ... + ) -> Response[PullRequestSimple]: ... def request_reviewers( self, @@ -1709,8 +1681,7 @@ async def async_request_reviewers( ReposOwnerRepoPullsPullNumberRequestedReviewersPostBodyAnyof1Type, ] ] = UNSET, - ) -> Response[PullRequestSimple]: - ... + ) -> Response[PullRequestSimple]: ... @overload async def async_request_reviewers( @@ -1723,8 +1694,7 @@ async def async_request_reviewers( headers: Optional[Dict[str, str]] = None, reviewers: List[str], team_reviewers: Missing[List[str]] = UNSET, - ) -> Response[PullRequestSimple]: - ... + ) -> Response[PullRequestSimple]: ... @overload async def async_request_reviewers( @@ -1737,8 +1707,7 @@ async def async_request_reviewers( headers: Optional[Dict[str, str]] = None, reviewers: Missing[List[str]] = UNSET, team_reviewers: List[str], - ) -> Response[PullRequestSimple]: - ... + ) -> Response[PullRequestSimple]: ... async def async_request_reviewers( self, @@ -1803,8 +1772,7 @@ def remove_requested_reviewers( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoPullsPullNumberRequestedReviewersDeleteBodyType, - ) -> Response[PullRequestSimple]: - ... + ) -> Response[PullRequestSimple]: ... @overload def remove_requested_reviewers( @@ -1817,8 +1785,7 @@ def remove_requested_reviewers( headers: Optional[Dict[str, str]] = None, reviewers: List[str], team_reviewers: Missing[List[str]] = UNSET, - ) -> Response[PullRequestSimple]: - ... + ) -> Response[PullRequestSimple]: ... def remove_requested_reviewers( self, @@ -1873,8 +1840,7 @@ async def async_remove_requested_reviewers( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoPullsPullNumberRequestedReviewersDeleteBodyType, - ) -> Response[PullRequestSimple]: - ... + ) -> Response[PullRequestSimple]: ... @overload async def async_remove_requested_reviewers( @@ -1887,8 +1853,7 @@ async def async_remove_requested_reviewers( headers: Optional[Dict[str, str]] = None, reviewers: List[str], team_reviewers: Missing[List[str]] = UNSET, - ) -> Response[PullRequestSimple]: - ... + ) -> Response[PullRequestSimple]: ... async def async_remove_requested_reviewers( self, @@ -2009,8 +1974,7 @@ def create_review( *, headers: Optional[Dict[str, str]] = None, data: Missing[ReposOwnerRepoPullsPullNumberReviewsPostBodyType] = UNSET, - ) -> Response[PullRequestReview]: - ... + ) -> Response[PullRequestReview]: ... @overload def create_review( @@ -2027,8 +1991,7 @@ def create_review( comments: Missing[ List[ReposOwnerRepoPullsPullNumberReviewsPostBodyPropCommentsItemsType] ] = UNSET, - ) -> Response[PullRequestReview]: - ... + ) -> Response[PullRequestReview]: ... def create_review( self, @@ -2081,8 +2044,7 @@ async def async_create_review( *, headers: Optional[Dict[str, str]] = None, data: Missing[ReposOwnerRepoPullsPullNumberReviewsPostBodyType] = UNSET, - ) -> Response[PullRequestReview]: - ... + ) -> Response[PullRequestReview]: ... @overload async def async_create_review( @@ -2099,8 +2061,7 @@ async def async_create_review( comments: Missing[ List[ReposOwnerRepoPullsPullNumberReviewsPostBodyPropCommentsItemsType] ] = UNSET, - ) -> Response[PullRequestReview]: - ... + ) -> Response[PullRequestReview]: ... async def async_create_review( self, @@ -2208,8 +2169,7 @@ def update_review( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoPullsPullNumberReviewsReviewIdPutBodyType, - ) -> Response[PullRequestReview]: - ... + ) -> Response[PullRequestReview]: ... @overload def update_review( @@ -2222,8 +2182,7 @@ def update_review( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, body: str, - ) -> Response[PullRequestReview]: - ... + ) -> Response[PullRequestReview]: ... def update_review( self, @@ -2278,8 +2237,7 @@ async def async_update_review( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoPullsPullNumberReviewsReviewIdPutBodyType, - ) -> Response[PullRequestReview]: - ... + ) -> Response[PullRequestReview]: ... @overload async def async_update_review( @@ -2292,8 +2250,7 @@ async def async_update_review( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, body: str, - ) -> Response[PullRequestReview]: - ... + ) -> Response[PullRequestReview]: ... async def async_update_review( self, @@ -2478,8 +2435,7 @@ def dismiss_review( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoPullsPullNumberReviewsReviewIdDismissalsPutBodyType, - ) -> Response[PullRequestReview]: - ... + ) -> Response[PullRequestReview]: ... @overload def dismiss_review( @@ -2493,8 +2449,7 @@ def dismiss_review( headers: Optional[Dict[str, str]] = None, message: str, event: Missing[Literal["DISMISS"]] = UNSET, - ) -> Response[PullRequestReview]: - ... + ) -> Response[PullRequestReview]: ... def dismiss_review( self, @@ -2555,8 +2510,7 @@ async def async_dismiss_review( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoPullsPullNumberReviewsReviewIdDismissalsPutBodyType, - ) -> Response[PullRequestReview]: - ... + ) -> Response[PullRequestReview]: ... @overload async def async_dismiss_review( @@ -2570,8 +2524,7 @@ async def async_dismiss_review( headers: Optional[Dict[str, str]] = None, message: str, event: Missing[Literal["DISMISS"]] = UNSET, - ) -> Response[PullRequestReview]: - ... + ) -> Response[PullRequestReview]: ... async def async_dismiss_review( self, @@ -2632,8 +2585,7 @@ def submit_review( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoPullsPullNumberReviewsReviewIdEventsPostBodyType, - ) -> Response[PullRequestReview]: - ... + ) -> Response[PullRequestReview]: ... @overload def submit_review( @@ -2647,8 +2599,7 @@ def submit_review( headers: Optional[Dict[str, str]] = None, body: Missing[str] = UNSET, event: Literal["APPROVE", "REQUEST_CHANGES", "COMMENT"], - ) -> Response[PullRequestReview]: - ... + ) -> Response[PullRequestReview]: ... def submit_review( self, @@ -2708,8 +2659,7 @@ async def async_submit_review( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoPullsPullNumberReviewsReviewIdEventsPostBodyType, - ) -> Response[PullRequestReview]: - ... + ) -> Response[PullRequestReview]: ... @overload async def async_submit_review( @@ -2723,8 +2673,7 @@ async def async_submit_review( headers: Optional[Dict[str, str]] = None, body: Missing[str] = UNSET, event: Literal["APPROVE", "REQUEST_CHANGES", "COMMENT"], - ) -> Response[PullRequestReview]: - ... + ) -> Response[PullRequestReview]: ... async def async_submit_review( self, @@ -2785,8 +2734,7 @@ def update_branch( data: Missing[ Union[ReposOwnerRepoPullsPullNumberUpdateBranchPutBodyType, None] ] = UNSET, - ) -> Response[ReposOwnerRepoPullsPullNumberUpdateBranchPutResponse202]: - ... + ) -> Response[ReposOwnerRepoPullsPullNumberUpdateBranchPutResponse202]: ... @overload def update_branch( @@ -2798,8 +2746,7 @@ def update_branch( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, expected_head_sha: Missing[str] = UNSET, - ) -> Response[ReposOwnerRepoPullsPullNumberUpdateBranchPutResponse202]: - ... + ) -> Response[ReposOwnerRepoPullsPullNumberUpdateBranchPutResponse202]: ... def update_branch( self, @@ -2860,8 +2807,7 @@ async def async_update_branch( data: Missing[ Union[ReposOwnerRepoPullsPullNumberUpdateBranchPutBodyType, None] ] = UNSET, - ) -> Response[ReposOwnerRepoPullsPullNumberUpdateBranchPutResponse202]: - ... + ) -> Response[ReposOwnerRepoPullsPullNumberUpdateBranchPutResponse202]: ... @overload async def async_update_branch( @@ -2873,8 +2819,7 @@ async def async_update_branch( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, expected_head_sha: Missing[str] = UNSET, - ) -> Response[ReposOwnerRepoPullsPullNumberUpdateBranchPutResponse202]: - ... + ) -> Response[ReposOwnerRepoPullsPullNumberUpdateBranchPutResponse202]: ... async def async_update_branch( self, diff --git a/githubkit/versions/v2022_11_28/rest/rate_limit.py b/githubkit/versions/v2022_11_28/rest/rate_limit.py index b9cf76012..470ae5f9f 100644 --- a/githubkit/versions/v2022_11_28/rest/rate_limit.py +++ b/githubkit/versions/v2022_11_28/rest/rate_limit.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref diff --git a/githubkit/versions/v2022_11_28/rest/reactions.py b/githubkit/versions/v2022_11_28/rest/reactions.py index 5a8446c5d..15af3de3c 100644 --- a/githubkit/versions/v2022_11_28/rest/reactions.py +++ b/githubkit/versions/v2022_11_28/rest/reactions.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref @@ -146,8 +145,7 @@ def create_for_team_discussion_comment_in_org( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgTeamsTeamSlugDiscussionsDiscussionNumberCommentsCommentNumberReactionsPostBodyType, - ) -> Response[Reaction]: - ... + ) -> Response[Reaction]: ... @overload def create_for_team_discussion_comment_in_org( @@ -162,8 +160,7 @@ def create_for_team_discussion_comment_in_org( content: Literal[ "+1", "-1", "laugh", "confused", "heart", "hooray", "rocket", "eyes" ], - ) -> Response[Reaction]: - ... + ) -> Response[Reaction]: ... def create_for_team_discussion_comment_in_org( self, @@ -217,8 +214,7 @@ async def async_create_for_team_discussion_comment_in_org( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgTeamsTeamSlugDiscussionsDiscussionNumberCommentsCommentNumberReactionsPostBodyType, - ) -> Response[Reaction]: - ... + ) -> Response[Reaction]: ... @overload async def async_create_for_team_discussion_comment_in_org( @@ -233,8 +229,7 @@ async def async_create_for_team_discussion_comment_in_org( content: Literal[ "+1", "-1", "laugh", "confused", "heart", "hooray", "rocket", "eyes" ], - ) -> Response[Reaction]: - ... + ) -> Response[Reaction]: ... async def async_create_for_team_discussion_comment_in_org( self, @@ -409,8 +404,7 @@ def create_for_team_discussion_in_org( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgTeamsTeamSlugDiscussionsDiscussionNumberReactionsPostBodyType, - ) -> Response[Reaction]: - ... + ) -> Response[Reaction]: ... @overload def create_for_team_discussion_in_org( @@ -424,8 +418,7 @@ def create_for_team_discussion_in_org( content: Literal[ "+1", "-1", "laugh", "confused", "heart", "hooray", "rocket", "eyes" ], - ) -> Response[Reaction]: - ... + ) -> Response[Reaction]: ... def create_for_team_discussion_in_org( self, @@ -476,8 +469,7 @@ async def async_create_for_team_discussion_in_org( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgTeamsTeamSlugDiscussionsDiscussionNumberReactionsPostBodyType, - ) -> Response[Reaction]: - ... + ) -> Response[Reaction]: ... @overload async def async_create_for_team_discussion_in_org( @@ -491,8 +483,7 @@ async def async_create_for_team_discussion_in_org( content: Literal[ "+1", "-1", "laugh", "confused", "heart", "hooray", "rocket", "eyes" ], - ) -> Response[Reaction]: - ... + ) -> Response[Reaction]: ... async def async_create_for_team_discussion_in_org( self, @@ -669,8 +660,7 @@ def create_for_commit_comment( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoCommentsCommentIdReactionsPostBodyType, - ) -> Response[Reaction]: - ... + ) -> Response[Reaction]: ... @overload def create_for_commit_comment( @@ -684,8 +674,7 @@ def create_for_commit_comment( content: Literal[ "+1", "-1", "laugh", "confused", "heart", "hooray", "rocket", "eyes" ], - ) -> Response[Reaction]: - ... + ) -> Response[Reaction]: ... def create_for_commit_comment( self, @@ -738,8 +727,7 @@ async def async_create_for_commit_comment( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoCommentsCommentIdReactionsPostBodyType, - ) -> Response[Reaction]: - ... + ) -> Response[Reaction]: ... @overload async def async_create_for_commit_comment( @@ -753,8 +741,7 @@ async def async_create_for_commit_comment( content: Literal[ "+1", "-1", "laugh", "confused", "heart", "hooray", "rocket", "eyes" ], - ) -> Response[Reaction]: - ... + ) -> Response[Reaction]: ... async def async_create_for_commit_comment( self, @@ -933,8 +920,7 @@ def create_for_issue_comment( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoIssuesCommentsCommentIdReactionsPostBodyType, - ) -> Response[Reaction]: - ... + ) -> Response[Reaction]: ... @overload def create_for_issue_comment( @@ -948,8 +934,7 @@ def create_for_issue_comment( content: Literal[ "+1", "-1", "laugh", "confused", "heart", "hooray", "rocket", "eyes" ], - ) -> Response[Reaction]: - ... + ) -> Response[Reaction]: ... def create_for_issue_comment( self, @@ -1004,8 +989,7 @@ async def async_create_for_issue_comment( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoIssuesCommentsCommentIdReactionsPostBodyType, - ) -> Response[Reaction]: - ... + ) -> Response[Reaction]: ... @overload async def async_create_for_issue_comment( @@ -1019,8 +1003,7 @@ async def async_create_for_issue_comment( content: Literal[ "+1", "-1", "laugh", "confused", "heart", "hooray", "rocket", "eyes" ], - ) -> Response[Reaction]: - ... + ) -> Response[Reaction]: ... async def async_create_for_issue_comment( self, @@ -1203,8 +1186,7 @@ def create_for_issue( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoIssuesIssueNumberReactionsPostBodyType, - ) -> Response[Reaction]: - ... + ) -> Response[Reaction]: ... @overload def create_for_issue( @@ -1218,8 +1200,7 @@ def create_for_issue( content: Literal[ "+1", "-1", "laugh", "confused", "heart", "hooray", "rocket", "eyes" ], - ) -> Response[Reaction]: - ... + ) -> Response[Reaction]: ... def create_for_issue( self, @@ -1272,8 +1253,7 @@ async def async_create_for_issue( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoIssuesIssueNumberReactionsPostBodyType, - ) -> Response[Reaction]: - ... + ) -> Response[Reaction]: ... @overload async def async_create_for_issue( @@ -1287,8 +1267,7 @@ async def async_create_for_issue( content: Literal[ "+1", "-1", "laugh", "confused", "heart", "hooray", "rocket", "eyes" ], - ) -> Response[Reaction]: - ... + ) -> Response[Reaction]: ... async def async_create_for_issue( self, @@ -1467,8 +1446,7 @@ def create_for_pull_request_review_comment( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoPullsCommentsCommentIdReactionsPostBodyType, - ) -> Response[Reaction]: - ... + ) -> Response[Reaction]: ... @overload def create_for_pull_request_review_comment( @@ -1482,8 +1460,7 @@ def create_for_pull_request_review_comment( content: Literal[ "+1", "-1", "laugh", "confused", "heart", "hooray", "rocket", "eyes" ], - ) -> Response[Reaction]: - ... + ) -> Response[Reaction]: ... def create_for_pull_request_review_comment( self, @@ -1538,8 +1515,7 @@ async def async_create_for_pull_request_review_comment( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoPullsCommentsCommentIdReactionsPostBodyType, - ) -> Response[Reaction]: - ... + ) -> Response[Reaction]: ... @overload async def async_create_for_pull_request_review_comment( @@ -1553,8 +1529,7 @@ async def async_create_for_pull_request_review_comment( content: Literal[ "+1", "-1", "laugh", "confused", "heart", "hooray", "rocket", "eyes" ], - ) -> Response[Reaction]: - ... + ) -> Response[Reaction]: ... async def async_create_for_pull_request_review_comment( self, @@ -1735,8 +1710,7 @@ def create_for_release( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoReleasesReleaseIdReactionsPostBodyType, - ) -> Response[Reaction]: - ... + ) -> Response[Reaction]: ... @overload def create_for_release( @@ -1748,8 +1722,7 @@ def create_for_release( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, content: Literal["+1", "laugh", "heart", "hooray", "rocket", "eyes"], - ) -> Response[Reaction]: - ... + ) -> Response[Reaction]: ... def create_for_release( self, @@ -1802,8 +1775,7 @@ async def async_create_for_release( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoReleasesReleaseIdReactionsPostBodyType, - ) -> Response[Reaction]: - ... + ) -> Response[Reaction]: ... @overload async def async_create_for_release( @@ -1815,8 +1787,7 @@ async def async_create_for_release( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, content: Literal["+1", "laugh", "heart", "hooray", "rocket", "eyes"], - ) -> Response[Reaction]: - ... + ) -> Response[Reaction]: ... async def async_create_for_release( self, @@ -1989,8 +1960,7 @@ def create_for_team_discussion_comment_legacy( *, headers: Optional[Dict[str, str]] = None, data: TeamsTeamIdDiscussionsDiscussionNumberCommentsCommentNumberReactionsPostBodyType, - ) -> Response[Reaction]: - ... + ) -> Response[Reaction]: ... @overload def create_for_team_discussion_comment_legacy( @@ -2004,8 +1974,7 @@ def create_for_team_discussion_comment_legacy( content: Literal[ "+1", "-1", "laugh", "confused", "heart", "hooray", "rocket", "eyes" ], - ) -> Response[Reaction]: - ... + ) -> Response[Reaction]: ... def create_for_team_discussion_comment_legacy( self, @@ -2057,8 +2026,7 @@ async def async_create_for_team_discussion_comment_legacy( *, headers: Optional[Dict[str, str]] = None, data: TeamsTeamIdDiscussionsDiscussionNumberCommentsCommentNumberReactionsPostBodyType, - ) -> Response[Reaction]: - ... + ) -> Response[Reaction]: ... @overload async def async_create_for_team_discussion_comment_legacy( @@ -2072,8 +2040,7 @@ async def async_create_for_team_discussion_comment_legacy( content: Literal[ "+1", "-1", "laugh", "confused", "heart", "hooray", "rocket", "eyes" ], - ) -> Response[Reaction]: - ... + ) -> Response[Reaction]: ... async def async_create_for_team_discussion_comment_legacy( self, @@ -2200,8 +2167,7 @@ def create_for_team_discussion_legacy( *, headers: Optional[Dict[str, str]] = None, data: TeamsTeamIdDiscussionsDiscussionNumberReactionsPostBodyType, - ) -> Response[Reaction]: - ... + ) -> Response[Reaction]: ... @overload def create_for_team_discussion_legacy( @@ -2214,8 +2180,7 @@ def create_for_team_discussion_legacy( content: Literal[ "+1", "-1", "laugh", "confused", "heart", "hooray", "rocket", "eyes" ], - ) -> Response[Reaction]: - ... + ) -> Response[Reaction]: ... def create_for_team_discussion_legacy( self, @@ -2264,8 +2229,7 @@ async def async_create_for_team_discussion_legacy( *, headers: Optional[Dict[str, str]] = None, data: TeamsTeamIdDiscussionsDiscussionNumberReactionsPostBodyType, - ) -> Response[Reaction]: - ... + ) -> Response[Reaction]: ... @overload async def async_create_for_team_discussion_legacy( @@ -2278,8 +2242,7 @@ async def async_create_for_team_discussion_legacy( content: Literal[ "+1", "-1", "laugh", "confused", "heart", "hooray", "rocket", "eyes" ], - ) -> Response[Reaction]: - ... + ) -> Response[Reaction]: ... async def async_create_for_team_discussion_legacy( self, diff --git a/githubkit/versions/v2022_11_28/rest/repos.py b/githubkit/versions/v2022_11_28/rest/repos.py index 839dbaba5..ef470eff4 100644 --- a/githubkit/versions/v2022_11_28/rest/repos.py +++ b/githubkit/versions/v2022_11_28/rest/repos.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref @@ -328,8 +327,7 @@ def create_in_org( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgReposPostBodyType, - ) -> Response[FullRepository]: - ... + ) -> Response[FullRepository]: ... @overload def create_in_org( @@ -369,8 +367,7 @@ def create_in_org( custom_properties: Missing[ OrgsOrgReposPostBodyPropCustomPropertiesType ] = UNSET, - ) -> Response[FullRepository]: - ... + ) -> Response[FullRepository]: ... def create_in_org( self, @@ -419,8 +416,7 @@ async def async_create_in_org( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgReposPostBodyType, - ) -> Response[FullRepository]: - ... + ) -> Response[FullRepository]: ... @overload async def async_create_in_org( @@ -460,8 +456,7 @@ async def async_create_in_org( custom_properties: Missing[ OrgsOrgReposPostBodyPropCustomPropertiesType ] = UNSET, - ) -> Response[FullRepository]: - ... + ) -> Response[FullRepository]: ... async def async_create_in_org( self, @@ -580,8 +575,7 @@ def create_org_ruleset( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgRulesetsPostBodyType, - ) -> Response[RepositoryRuleset]: - ... + ) -> Response[RepositoryRuleset]: ... @overload def create_org_ruleset( @@ -622,8 +616,7 @@ def create_org_ruleset( ] ] ] = UNSET, - ) -> Response[RepositoryRuleset]: - ... + ) -> Response[RepositoryRuleset]: ... def create_org_ruleset( self, @@ -667,8 +660,7 @@ async def async_create_org_ruleset( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgRulesetsPostBodyType, - ) -> Response[RepositoryRuleset]: - ... + ) -> Response[RepositoryRuleset]: ... @overload async def async_create_org_ruleset( @@ -709,8 +701,7 @@ async def async_create_org_ruleset( ] ] ] = UNSET, - ) -> Response[RepositoryRuleset]: - ... + ) -> Response[RepositoryRuleset]: ... async def async_create_org_ruleset( self, @@ -945,8 +936,7 @@ def update_org_ruleset( *, headers: Optional[Dict[str, str]] = None, data: Missing[OrgsOrgRulesetsRulesetIdPutBodyType] = UNSET, - ) -> Response[RepositoryRuleset]: - ... + ) -> Response[RepositoryRuleset]: ... @overload def update_org_ruleset( @@ -988,8 +978,7 @@ def update_org_ruleset( ] ] ] = UNSET, - ) -> Response[RepositoryRuleset]: - ... + ) -> Response[RepositoryRuleset]: ... def update_org_ruleset( self, @@ -1039,8 +1028,7 @@ async def async_update_org_ruleset( *, headers: Optional[Dict[str, str]] = None, data: Missing[OrgsOrgRulesetsRulesetIdPutBodyType] = UNSET, - ) -> Response[RepositoryRuleset]: - ... + ) -> Response[RepositoryRuleset]: ... @overload async def async_update_org_ruleset( @@ -1082,8 +1070,7 @@ async def async_update_org_ruleset( ] ] ] = UNSET, - ) -> Response[RepositoryRuleset]: - ... + ) -> Response[RepositoryRuleset]: ... async def async_update_org_ruleset( self, @@ -1285,8 +1272,7 @@ def update( *, headers: Optional[Dict[str, str]] = None, data: Missing[ReposOwnerRepoPatchBodyType] = UNSET, - ) -> Response[FullRepository]: - ... + ) -> Response[FullRepository]: ... @overload def update( @@ -1327,8 +1313,7 @@ def update( archived: Missing[bool] = UNSET, allow_forking: Missing[bool] = UNSET, web_commit_signoff_required: Missing[bool] = UNSET, - ) -> Response[FullRepository]: - ... + ) -> Response[FullRepository]: ... def update( self, @@ -1380,8 +1365,7 @@ async def async_update( *, headers: Optional[Dict[str, str]] = None, data: Missing[ReposOwnerRepoPatchBodyType] = UNSET, - ) -> Response[FullRepository]: - ... + ) -> Response[FullRepository]: ... @overload async def async_update( @@ -1422,8 +1406,7 @@ async def async_update( archived: Missing[bool] = UNSET, allow_forking: Missing[bool] = UNSET, web_commit_signoff_required: Missing[bool] = UNSET, - ) -> Response[FullRepository]: - ... + ) -> Response[FullRepository]: ... async def async_update( self, @@ -1639,8 +1622,7 @@ def create_autolink( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoAutolinksPostBodyType, - ) -> Response[Autolink]: - ... + ) -> Response[Autolink]: ... @overload def create_autolink( @@ -1653,8 +1635,7 @@ def create_autolink( key_prefix: str, url_template: str, is_alphanumeric: Missing[bool] = UNSET, - ) -> Response[Autolink]: - ... + ) -> Response[Autolink]: ... def create_autolink( self, @@ -1699,8 +1680,7 @@ async def async_create_autolink( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoAutolinksPostBodyType, - ) -> Response[Autolink]: - ... + ) -> Response[Autolink]: ... @overload async def async_create_autolink( @@ -1713,8 +1693,7 @@ async def async_create_autolink( key_prefix: str, url_template: str, is_alphanumeric: Missing[bool] = UNSET, - ) -> Response[Autolink]: - ... + ) -> Response[Autolink]: ... async def async_create_autolink( self, @@ -2162,8 +2141,7 @@ def update_branch_protection( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoBranchesBranchProtectionPutBodyType, - ) -> Response[ProtectedBranch]: - ... + ) -> Response[ProtectedBranch]: ... @overload def update_branch_protection( @@ -2193,8 +2171,7 @@ def update_branch_protection( required_conversation_resolution: Missing[bool] = UNSET, lock_branch: Missing[bool] = UNSET, allow_fork_syncing: Missing[bool] = UNSET, - ) -> Response[ProtectedBranch]: - ... + ) -> Response[ProtectedBranch]: ... def update_branch_protection( self, @@ -2248,8 +2225,7 @@ async def async_update_branch_protection( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoBranchesBranchProtectionPutBodyType, - ) -> Response[ProtectedBranch]: - ... + ) -> Response[ProtectedBranch]: ... @overload async def async_update_branch_protection( @@ -2279,8 +2255,7 @@ async def async_update_branch_protection( required_conversation_resolution: Missing[bool] = UNSET, lock_branch: Missing[bool] = UNSET, allow_fork_syncing: Missing[bool] = UNSET, - ) -> Response[ProtectedBranch]: - ... + ) -> Response[ProtectedBranch]: ... async def async_update_branch_protection( self, @@ -2624,8 +2599,7 @@ def update_pull_request_review_protection( data: Missing[ ReposOwnerRepoBranchesBranchProtectionRequiredPullRequestReviewsPatchBodyType ] = UNSET, - ) -> Response[ProtectedBranchPullRequestReview]: - ... + ) -> Response[ProtectedBranchPullRequestReview]: ... @overload def update_pull_request_review_protection( @@ -2646,8 +2620,7 @@ def update_pull_request_review_protection( bypass_pull_request_allowances: Missing[ ReposOwnerRepoBranchesBranchProtectionRequiredPullRequestReviewsPatchBodyPropBypassPullRequestAllowancesType ] = UNSET, - ) -> Response[ProtectedBranchPullRequestReview]: - ... + ) -> Response[ProtectedBranchPullRequestReview]: ... def update_pull_request_review_protection( self, @@ -2705,8 +2678,7 @@ async def async_update_pull_request_review_protection( data: Missing[ ReposOwnerRepoBranchesBranchProtectionRequiredPullRequestReviewsPatchBodyType ] = UNSET, - ) -> Response[ProtectedBranchPullRequestReview]: - ... + ) -> Response[ProtectedBranchPullRequestReview]: ... @overload async def async_update_pull_request_review_protection( @@ -2727,8 +2699,7 @@ async def async_update_pull_request_review_protection( bypass_pull_request_allowances: Missing[ ReposOwnerRepoBranchesBranchProtectionRequiredPullRequestReviewsPatchBodyPropBypassPullRequestAllowancesType ] = UNSET, - ) -> Response[ProtectedBranchPullRequestReview]: - ... + ) -> Response[ProtectedBranchPullRequestReview]: ... async def async_update_pull_request_review_protection( self, @@ -3040,8 +3011,7 @@ def update_status_check_protection( data: Missing[ ReposOwnerRepoBranchesBranchProtectionRequiredStatusChecksPatchBodyType ] = UNSET, - ) -> Response[StatusCheckPolicy]: - ... + ) -> Response[StatusCheckPolicy]: ... @overload def update_status_check_protection( @@ -3059,8 +3029,7 @@ def update_status_check_protection( ReposOwnerRepoBranchesBranchProtectionRequiredStatusChecksPatchBodyPropChecksItemsType ] ] = UNSET, - ) -> Response[StatusCheckPolicy]: - ... + ) -> Response[StatusCheckPolicy]: ... def update_status_check_protection( self, @@ -3121,8 +3090,7 @@ async def async_update_status_check_protection( data: Missing[ ReposOwnerRepoBranchesBranchProtectionRequiredStatusChecksPatchBodyType ] = UNSET, - ) -> Response[StatusCheckPolicy]: - ... + ) -> Response[StatusCheckPolicy]: ... @overload async def async_update_status_check_protection( @@ -3140,8 +3108,7 @@ async def async_update_status_check_protection( ReposOwnerRepoBranchesBranchProtectionRequiredStatusChecksPatchBodyPropChecksItemsType ] ] = UNSET, - ) -> Response[StatusCheckPolicy]: - ... + ) -> Response[StatusCheckPolicy]: ... async def async_update_status_check_protection( self, @@ -3261,8 +3228,7 @@ def set_status_check_contexts( List[str], ] ] = UNSET, - ) -> Response[List[str]]: - ... + ) -> Response[List[str]]: ... @overload def set_status_check_contexts( @@ -3274,8 +3240,7 @@ def set_status_check_contexts( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, contexts: List[str], - ) -> Response[List[str]]: - ... + ) -> Response[List[str]]: ... def set_status_check_contexts( self, @@ -3345,8 +3310,7 @@ async def async_set_status_check_contexts( List[str], ] ] = UNSET, - ) -> Response[List[str]]: - ... + ) -> Response[List[str]]: ... @overload async def async_set_status_check_contexts( @@ -3358,8 +3322,7 @@ async def async_set_status_check_contexts( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, contexts: List[str], - ) -> Response[List[str]]: - ... + ) -> Response[List[str]]: ... async def async_set_status_check_contexts( self, @@ -3429,8 +3392,7 @@ def add_status_check_contexts( List[str], ] ] = UNSET, - ) -> Response[List[str]]: - ... + ) -> Response[List[str]]: ... @overload def add_status_check_contexts( @@ -3442,8 +3404,7 @@ def add_status_check_contexts( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, contexts: List[str], - ) -> Response[List[str]]: - ... + ) -> Response[List[str]]: ... def add_status_check_contexts( self, @@ -3514,8 +3475,7 @@ async def async_add_status_check_contexts( List[str], ] ] = UNSET, - ) -> Response[List[str]]: - ... + ) -> Response[List[str]]: ... @overload async def async_add_status_check_contexts( @@ -3527,8 +3487,7 @@ async def async_add_status_check_contexts( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, contexts: List[str], - ) -> Response[List[str]]: - ... + ) -> Response[List[str]]: ... async def async_add_status_check_contexts( self, @@ -3599,8 +3558,7 @@ def remove_status_check_contexts( List[str], ] ] = UNSET, - ) -> Response[List[str]]: - ... + ) -> Response[List[str]]: ... @overload def remove_status_check_contexts( @@ -3612,8 +3570,7 @@ def remove_status_check_contexts( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, contexts: List[str], - ) -> Response[List[str]]: - ... + ) -> Response[List[str]]: ... def remove_status_check_contexts( self, @@ -3683,8 +3640,7 @@ async def async_remove_status_check_contexts( List[str], ] ] = UNSET, - ) -> Response[List[str]]: - ... + ) -> Response[List[str]]: ... @overload async def async_remove_status_check_contexts( @@ -3696,8 +3652,7 @@ async def async_remove_status_check_contexts( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, contexts: List[str], - ) -> Response[List[str]]: - ... + ) -> Response[List[str]]: ... async def async_remove_status_check_contexts( self, @@ -3915,8 +3870,7 @@ def set_app_access_restrictions( List[str], ] ] = UNSET, - ) -> Response[List[Integration]]: - ... + ) -> Response[List[Integration]]: ... @overload def set_app_access_restrictions( @@ -3928,8 +3882,7 @@ def set_app_access_restrictions( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, apps: List[str], - ) -> Response[List[Integration]]: - ... + ) -> Response[List[Integration]]: ... def set_app_access_restrictions( self, @@ -3998,8 +3951,7 @@ async def async_set_app_access_restrictions( List[str], ] ] = UNSET, - ) -> Response[List[Integration]]: - ... + ) -> Response[List[Integration]]: ... @overload async def async_set_app_access_restrictions( @@ -4011,8 +3963,7 @@ async def async_set_app_access_restrictions( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, apps: List[str], - ) -> Response[List[Integration]]: - ... + ) -> Response[List[Integration]]: ... async def async_set_app_access_restrictions( self, @@ -4081,8 +4032,7 @@ def add_app_access_restrictions( List[str], ] ] = UNSET, - ) -> Response[List[Integration]]: - ... + ) -> Response[List[Integration]]: ... @overload def add_app_access_restrictions( @@ -4094,8 +4044,7 @@ def add_app_access_restrictions( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, apps: List[str], - ) -> Response[List[Integration]]: - ... + ) -> Response[List[Integration]]: ... def add_app_access_restrictions( self, @@ -4164,8 +4113,7 @@ async def async_add_app_access_restrictions( List[str], ] ] = UNSET, - ) -> Response[List[Integration]]: - ... + ) -> Response[List[Integration]]: ... @overload async def async_add_app_access_restrictions( @@ -4177,8 +4125,7 @@ async def async_add_app_access_restrictions( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, apps: List[str], - ) -> Response[List[Integration]]: - ... + ) -> Response[List[Integration]]: ... async def async_add_app_access_restrictions( self, @@ -4247,8 +4194,7 @@ def remove_app_access_restrictions( List[str], ] ] = UNSET, - ) -> Response[List[Integration]]: - ... + ) -> Response[List[Integration]]: ... @overload def remove_app_access_restrictions( @@ -4260,8 +4206,7 @@ def remove_app_access_restrictions( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, apps: List[str], - ) -> Response[List[Integration]]: - ... + ) -> Response[List[Integration]]: ... def remove_app_access_restrictions( self, @@ -4330,8 +4275,7 @@ async def async_remove_app_access_restrictions( List[str], ] ] = UNSET, - ) -> Response[List[Integration]]: - ... + ) -> Response[List[Integration]]: ... @overload async def async_remove_app_access_restrictions( @@ -4343,8 +4287,7 @@ async def async_remove_app_access_restrictions( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, apps: List[str], - ) -> Response[List[Integration]]: - ... + ) -> Response[List[Integration]]: ... async def async_remove_app_access_restrictions( self, @@ -4469,8 +4412,7 @@ def set_team_access_restrictions( List[str], ] ] = UNSET, - ) -> Response[List[Team]]: - ... + ) -> Response[List[Team]]: ... @overload def set_team_access_restrictions( @@ -4482,8 +4424,7 @@ def set_team_access_restrictions( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, teams: List[str], - ) -> Response[List[Team]]: - ... + ) -> Response[List[Team]]: ... def set_team_access_restrictions( self, @@ -4552,8 +4493,7 @@ async def async_set_team_access_restrictions( List[str], ] ] = UNSET, - ) -> Response[List[Team]]: - ... + ) -> Response[List[Team]]: ... @overload async def async_set_team_access_restrictions( @@ -4565,8 +4505,7 @@ async def async_set_team_access_restrictions( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, teams: List[str], - ) -> Response[List[Team]]: - ... + ) -> Response[List[Team]]: ... async def async_set_team_access_restrictions( self, @@ -4635,8 +4574,7 @@ def add_team_access_restrictions( List[str], ] ] = UNSET, - ) -> Response[List[Team]]: - ... + ) -> Response[List[Team]]: ... @overload def add_team_access_restrictions( @@ -4648,8 +4586,7 @@ def add_team_access_restrictions( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, teams: List[str], - ) -> Response[List[Team]]: - ... + ) -> Response[List[Team]]: ... def add_team_access_restrictions( self, @@ -4718,8 +4655,7 @@ async def async_add_team_access_restrictions( List[str], ] ] = UNSET, - ) -> Response[List[Team]]: - ... + ) -> Response[List[Team]]: ... @overload async def async_add_team_access_restrictions( @@ -4731,8 +4667,7 @@ async def async_add_team_access_restrictions( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, teams: List[str], - ) -> Response[List[Team]]: - ... + ) -> Response[List[Team]]: ... async def async_add_team_access_restrictions( self, @@ -4801,8 +4736,7 @@ def remove_team_access_restrictions( List[str], ] ] = UNSET, - ) -> Response[List[Team]]: - ... + ) -> Response[List[Team]]: ... @overload def remove_team_access_restrictions( @@ -4814,8 +4748,7 @@ def remove_team_access_restrictions( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, teams: List[str], - ) -> Response[List[Team]]: - ... + ) -> Response[List[Team]]: ... def remove_team_access_restrictions( self, @@ -4884,8 +4817,7 @@ async def async_remove_team_access_restrictions( List[str], ] ] = UNSET, - ) -> Response[List[Team]]: - ... + ) -> Response[List[Team]]: ... @overload async def async_remove_team_access_restrictions( @@ -4897,8 +4829,7 @@ async def async_remove_team_access_restrictions( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, teams: List[str], - ) -> Response[List[Team]]: - ... + ) -> Response[List[Team]]: ... async def async_remove_team_access_restrictions( self, @@ -5023,8 +4954,7 @@ def set_user_access_restrictions( List[str], ] ] = UNSET, - ) -> Response[List[SimpleUser]]: - ... + ) -> Response[List[SimpleUser]]: ... @overload def set_user_access_restrictions( @@ -5036,8 +4966,7 @@ def set_user_access_restrictions( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, users: List[str], - ) -> Response[List[SimpleUser]]: - ... + ) -> Response[List[SimpleUser]]: ... def set_user_access_restrictions( self, @@ -5106,8 +5035,7 @@ async def async_set_user_access_restrictions( List[str], ] ] = UNSET, - ) -> Response[List[SimpleUser]]: - ... + ) -> Response[List[SimpleUser]]: ... @overload async def async_set_user_access_restrictions( @@ -5119,8 +5047,7 @@ async def async_set_user_access_restrictions( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, users: List[str], - ) -> Response[List[SimpleUser]]: - ... + ) -> Response[List[SimpleUser]]: ... async def async_set_user_access_restrictions( self, @@ -5189,8 +5116,7 @@ def add_user_access_restrictions( List[str], ] ] = UNSET, - ) -> Response[List[SimpleUser]]: - ... + ) -> Response[List[SimpleUser]]: ... @overload def add_user_access_restrictions( @@ -5202,8 +5128,7 @@ def add_user_access_restrictions( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, users: List[str], - ) -> Response[List[SimpleUser]]: - ... + ) -> Response[List[SimpleUser]]: ... def add_user_access_restrictions( self, @@ -5272,8 +5197,7 @@ async def async_add_user_access_restrictions( List[str], ] ] = UNSET, - ) -> Response[List[SimpleUser]]: - ... + ) -> Response[List[SimpleUser]]: ... @overload async def async_add_user_access_restrictions( @@ -5285,8 +5209,7 @@ async def async_add_user_access_restrictions( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, users: List[str], - ) -> Response[List[SimpleUser]]: - ... + ) -> Response[List[SimpleUser]]: ... async def async_add_user_access_restrictions( self, @@ -5355,8 +5278,7 @@ def remove_user_access_restrictions( List[str], ] ] = UNSET, - ) -> Response[List[SimpleUser]]: - ... + ) -> Response[List[SimpleUser]]: ... @overload def remove_user_access_restrictions( @@ -5368,8 +5290,7 @@ def remove_user_access_restrictions( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, users: List[str], - ) -> Response[List[SimpleUser]]: - ... + ) -> Response[List[SimpleUser]]: ... def remove_user_access_restrictions( self, @@ -5438,8 +5359,7 @@ async def async_remove_user_access_restrictions( List[str], ] ] = UNSET, - ) -> Response[List[SimpleUser]]: - ... + ) -> Response[List[SimpleUser]]: ... @overload async def async_remove_user_access_restrictions( @@ -5451,8 +5371,7 @@ async def async_remove_user_access_restrictions( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, users: List[str], - ) -> Response[List[SimpleUser]]: - ... + ) -> Response[List[SimpleUser]]: ... async def async_remove_user_access_restrictions( self, @@ -5516,8 +5435,7 @@ def rename_branch( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoBranchesBranchRenamePostBodyType, - ) -> Response[BranchWithProtection]: - ... + ) -> Response[BranchWithProtection]: ... @overload def rename_branch( @@ -5529,8 +5447,7 @@ def rename_branch( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, new_name: str, - ) -> Response[BranchWithProtection]: - ... + ) -> Response[BranchWithProtection]: ... def rename_branch( self, @@ -5584,8 +5501,7 @@ async def async_rename_branch( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoBranchesBranchRenamePostBodyType, - ) -> Response[BranchWithProtection]: - ... + ) -> Response[BranchWithProtection]: ... @overload async def async_rename_branch( @@ -5597,8 +5513,7 @@ async def async_rename_branch( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, new_name: str, - ) -> Response[BranchWithProtection]: - ... + ) -> Response[BranchWithProtection]: ... async def async_rename_branch( self, @@ -5834,8 +5749,7 @@ def add_collaborator( *, headers: Optional[Dict[str, str]] = None, data: Missing[ReposOwnerRepoCollaboratorsUsernamePutBodyType] = UNSET, - ) -> Response[RepositoryInvitation]: - ... + ) -> Response[RepositoryInvitation]: ... @overload def add_collaborator( @@ -5847,8 +5761,7 @@ def add_collaborator( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, permission: Missing[str] = UNSET, - ) -> Response[RepositoryInvitation]: - ... + ) -> Response[RepositoryInvitation]: ... def add_collaborator( self, @@ -5901,8 +5814,7 @@ async def async_add_collaborator( *, headers: Optional[Dict[str, str]] = None, data: Missing[ReposOwnerRepoCollaboratorsUsernamePutBodyType] = UNSET, - ) -> Response[RepositoryInvitation]: - ... + ) -> Response[RepositoryInvitation]: ... @overload async def async_add_collaborator( @@ -5914,8 +5826,7 @@ async def async_add_collaborator( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, permission: Missing[str] = UNSET, - ) -> Response[RepositoryInvitation]: - ... + ) -> Response[RepositoryInvitation]: ... async def async_add_collaborator( self, @@ -6238,8 +6149,7 @@ def update_commit_comment( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoCommentsCommentIdPatchBodyType, - ) -> Response[CommitComment]: - ... + ) -> Response[CommitComment]: ... @overload def update_commit_comment( @@ -6251,8 +6161,7 @@ def update_commit_comment( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, body: str, - ) -> Response[CommitComment]: - ... + ) -> Response[CommitComment]: ... def update_commit_comment( self, @@ -6303,8 +6212,7 @@ async def async_update_commit_comment( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoCommentsCommentIdPatchBodyType, - ) -> Response[CommitComment]: - ... + ) -> Response[CommitComment]: ... @overload async def async_update_commit_comment( @@ -6316,8 +6224,7 @@ async def async_update_commit_comment( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, body: str, - ) -> Response[CommitComment]: - ... + ) -> Response[CommitComment]: ... async def async_update_commit_comment( self, @@ -6592,8 +6499,7 @@ def create_commit_comment( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoCommitsCommitShaCommentsPostBodyType, - ) -> Response[CommitComment]: - ... + ) -> Response[CommitComment]: ... @overload def create_commit_comment( @@ -6608,8 +6514,7 @@ def create_commit_comment( path: Missing[str] = UNSET, position: Missing[int] = UNSET, line: Missing[int] = UNSET, - ) -> Response[CommitComment]: - ... + ) -> Response[CommitComment]: ... def create_commit_comment( self, @@ -6664,8 +6569,7 @@ async def async_create_commit_comment( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoCommitsCommitShaCommentsPostBodyType, - ) -> Response[CommitComment]: - ... + ) -> Response[CommitComment]: ... @overload async def async_create_commit_comment( @@ -6680,8 +6584,7 @@ async def async_create_commit_comment( path: Missing[str] = UNSET, position: Missing[int] = UNSET, line: Missing[int] = UNSET, - ) -> Response[CommitComment]: - ... + ) -> Response[CommitComment]: ... async def async_create_commit_comment( self, @@ -7252,8 +7155,7 @@ def create_or_update_file_contents( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoContentsPathPutBodyType, - ) -> Response[FileCommit]: - ... + ) -> Response[FileCommit]: ... @overload def create_or_update_file_contents( @@ -7270,8 +7172,7 @@ def create_or_update_file_contents( branch: Missing[str] = UNSET, committer: Missing[ReposOwnerRepoContentsPathPutBodyPropCommitterType] = UNSET, author: Missing[ReposOwnerRepoContentsPathPutBodyPropAuthorType] = UNSET, - ) -> Response[FileCommit]: - ... + ) -> Response[FileCommit]: ... def create_or_update_file_contents( self, @@ -7325,8 +7226,7 @@ async def async_create_or_update_file_contents( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoContentsPathPutBodyType, - ) -> Response[FileCommit]: - ... + ) -> Response[FileCommit]: ... @overload async def async_create_or_update_file_contents( @@ -7343,8 +7243,7 @@ async def async_create_or_update_file_contents( branch: Missing[str] = UNSET, committer: Missing[ReposOwnerRepoContentsPathPutBodyPropCommitterType] = UNSET, author: Missing[ReposOwnerRepoContentsPathPutBodyPropAuthorType] = UNSET, - ) -> Response[FileCommit]: - ... + ) -> Response[FileCommit]: ... async def async_create_or_update_file_contents( self, @@ -7398,8 +7297,7 @@ def delete_file( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoContentsPathDeleteBodyType, - ) -> Response[FileCommit]: - ... + ) -> Response[FileCommit]: ... @overload def delete_file( @@ -7417,8 +7315,7 @@ def delete_file( ReposOwnerRepoContentsPathDeleteBodyPropCommitterType ] = UNSET, author: Missing[ReposOwnerRepoContentsPathDeleteBodyPropAuthorType] = UNSET, - ) -> Response[FileCommit]: - ... + ) -> Response[FileCommit]: ... def delete_file( self, @@ -7474,8 +7371,7 @@ async def async_delete_file( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoContentsPathDeleteBodyType, - ) -> Response[FileCommit]: - ... + ) -> Response[FileCommit]: ... @overload async def async_delete_file( @@ -7493,8 +7389,7 @@ async def async_delete_file( ReposOwnerRepoContentsPathDeleteBodyPropCommitterType ] = UNSET, author: Missing[ReposOwnerRepoContentsPathDeleteBodyPropAuthorType] = UNSET, - ) -> Response[FileCommit]: - ... + ) -> Response[FileCommit]: ... async def async_delete_file( self, @@ -7705,8 +7600,7 @@ def create_deployment( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoDeploymentsPostBodyType, - ) -> Response[Deployment]: - ... + ) -> Response[Deployment]: ... @overload def create_deployment( @@ -7727,8 +7621,7 @@ def create_deployment( description: Missing[Union[str, None]] = UNSET, transient_environment: Missing[bool] = UNSET, production_environment: Missing[bool] = UNSET, - ) -> Response[Deployment]: - ... + ) -> Response[Deployment]: ... def create_deployment( self, @@ -7777,8 +7670,7 @@ async def async_create_deployment( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoDeploymentsPostBodyType, - ) -> Response[Deployment]: - ... + ) -> Response[Deployment]: ... @overload async def async_create_deployment( @@ -7799,8 +7691,7 @@ async def async_create_deployment( description: Missing[Union[str, None]] = UNSET, transient_environment: Missing[bool] = UNSET, production_environment: Missing[bool] = UNSET, - ) -> Response[Deployment]: - ... + ) -> Response[Deployment]: ... async def async_create_deployment( self, @@ -8026,8 +7917,7 @@ def create_deployment_status( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoDeploymentsDeploymentIdStatusesPostBodyType, - ) -> Response[DeploymentStatus]: - ... + ) -> Response[DeploymentStatus]: ... @overload def create_deployment_status( @@ -8053,8 +7943,7 @@ def create_deployment_status( environment: Missing[str] = UNSET, environment_url: Missing[str] = UNSET, auto_inactive: Missing[bool] = UNSET, - ) -> Response[DeploymentStatus]: - ... + ) -> Response[DeploymentStatus]: ... def create_deployment_status( self, @@ -8109,8 +7998,7 @@ async def async_create_deployment_status( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoDeploymentsDeploymentIdStatusesPostBodyType, - ) -> Response[DeploymentStatus]: - ... + ) -> Response[DeploymentStatus]: ... @overload async def async_create_deployment_status( @@ -8136,8 +8024,7 @@ async def async_create_deployment_status( environment: Missing[str] = UNSET, environment_url: Missing[str] = UNSET, auto_inactive: Missing[bool] = UNSET, - ) -> Response[DeploymentStatus]: - ... + ) -> Response[DeploymentStatus]: ... async def async_create_deployment_status( self, @@ -8245,8 +8132,7 @@ def create_dispatch_event( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoDispatchesPostBodyType, - ) -> Response: - ... + ) -> Response: ... @overload def create_dispatch_event( @@ -8260,8 +8146,7 @@ def create_dispatch_event( client_payload: Missing[ ReposOwnerRepoDispatchesPostBodyPropClientPayloadType ] = UNSET, - ) -> Response: - ... + ) -> Response: ... def create_dispatch_event( self, @@ -8310,8 +8195,7 @@ async def async_create_dispatch_event( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoDispatchesPostBodyType, - ) -> Response: - ... + ) -> Response: ... @overload async def async_create_dispatch_event( @@ -8325,8 +8209,7 @@ async def async_create_dispatch_event( client_payload: Missing[ ReposOwnerRepoDispatchesPostBodyPropClientPayloadType ] = UNSET, - ) -> Response: - ... + ) -> Response: ... async def async_create_dispatch_event( self, @@ -8484,8 +8367,7 @@ def create_or_update_environment( data: Missing[ Union[ReposOwnerRepoEnvironmentsEnvironmentNamePutBodyType, None] ] = UNSET, - ) -> Response[Environment]: - ... + ) -> Response[Environment]: ... @overload def create_or_update_environment( @@ -8509,8 +8391,7 @@ def create_or_update_environment( deployment_branch_policy: Missing[ Union[DeploymentBranchPolicySettingsType, None] ] = UNSET, - ) -> Response[Environment]: - ... + ) -> Response[Environment]: ... def create_or_update_environment( self, @@ -8569,8 +8450,7 @@ async def async_create_or_update_environment( data: Missing[ Union[ReposOwnerRepoEnvironmentsEnvironmentNamePutBodyType, None] ] = UNSET, - ) -> Response[Environment]: - ... + ) -> Response[Environment]: ... @overload async def async_create_or_update_environment( @@ -8594,8 +8474,7 @@ async def async_create_or_update_environment( deployment_branch_policy: Missing[ Union[DeploymentBranchPolicySettingsType, None] ] = UNSET, - ) -> Response[Environment]: - ... + ) -> Response[Environment]: ... async def async_create_or_update_environment( self, @@ -8762,8 +8641,7 @@ def create_deployment_branch_policy( *, headers: Optional[Dict[str, str]] = None, data: DeploymentBranchPolicyNamePatternWithTypeType, - ) -> Response[DeploymentBranchPolicy]: - ... + ) -> Response[DeploymentBranchPolicy]: ... @overload def create_deployment_branch_policy( @@ -8776,8 +8654,7 @@ def create_deployment_branch_policy( headers: Optional[Dict[str, str]] = None, name: str, type: Missing[Literal["branch", "tag"]] = UNSET, - ) -> Response[DeploymentBranchPolicy]: - ... + ) -> Response[DeploymentBranchPolicy]: ... def create_deployment_branch_policy( self, @@ -8825,8 +8702,7 @@ async def async_create_deployment_branch_policy( *, headers: Optional[Dict[str, str]] = None, data: DeploymentBranchPolicyNamePatternWithTypeType, - ) -> Response[DeploymentBranchPolicy]: - ... + ) -> Response[DeploymentBranchPolicy]: ... @overload async def async_create_deployment_branch_policy( @@ -8839,8 +8715,7 @@ async def async_create_deployment_branch_policy( headers: Optional[Dict[str, str]] = None, name: str, type: Missing[Literal["branch", "tag"]] = UNSET, - ) -> Response[DeploymentBranchPolicy]: - ... + ) -> Response[DeploymentBranchPolicy]: ... async def async_create_deployment_branch_policy( self, @@ -8937,8 +8812,7 @@ def update_deployment_branch_policy( *, headers: Optional[Dict[str, str]] = None, data: DeploymentBranchPolicyNamePatternType, - ) -> Response[DeploymentBranchPolicy]: - ... + ) -> Response[DeploymentBranchPolicy]: ... @overload def update_deployment_branch_policy( @@ -8951,8 +8825,7 @@ def update_deployment_branch_policy( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, name: str, - ) -> Response[DeploymentBranchPolicy]: - ... + ) -> Response[DeploymentBranchPolicy]: ... def update_deployment_branch_policy( self, @@ -8998,8 +8871,7 @@ async def async_update_deployment_branch_policy( *, headers: Optional[Dict[str, str]] = None, data: DeploymentBranchPolicyNamePatternType, - ) -> Response[DeploymentBranchPolicy]: - ... + ) -> Response[DeploymentBranchPolicy]: ... @overload async def async_update_deployment_branch_policy( @@ -9012,8 +8884,7 @@ async def async_update_deployment_branch_policy( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, name: str, - ) -> Response[DeploymentBranchPolicy]: - ... + ) -> Response[DeploymentBranchPolicy]: ... async def async_update_deployment_branch_policy( self, @@ -9154,8 +9025,7 @@ def create_deployment_protection_rule( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoEnvironmentsEnvironmentNameDeploymentProtectionRulesPostBodyType, - ) -> Response[DeploymentProtectionRule]: - ... + ) -> Response[DeploymentProtectionRule]: ... @overload def create_deployment_protection_rule( @@ -9167,8 +9037,7 @@ def create_deployment_protection_rule( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, integration_id: Missing[int] = UNSET, - ) -> Response[DeploymentProtectionRule]: - ... + ) -> Response[DeploymentProtectionRule]: ... def create_deployment_protection_rule( self, @@ -9220,8 +9089,7 @@ async def async_create_deployment_protection_rule( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoEnvironmentsEnvironmentNameDeploymentProtectionRulesPostBodyType, - ) -> Response[DeploymentProtectionRule]: - ... + ) -> Response[DeploymentProtectionRule]: ... @overload async def async_create_deployment_protection_rule( @@ -9233,8 +9101,7 @@ async def async_create_deployment_protection_rule( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, integration_id: Missing[int] = UNSET, - ) -> Response[DeploymentProtectionRule]: - ... + ) -> Response[DeploymentProtectionRule]: ... async def async_create_deployment_protection_rule( self, @@ -9519,8 +9386,7 @@ def create_fork( *, headers: Optional[Dict[str, str]] = None, data: Missing[Union[ReposOwnerRepoForksPostBodyType, None]] = UNSET, - ) -> Response[FullRepository]: - ... + ) -> Response[FullRepository]: ... @overload def create_fork( @@ -9533,8 +9399,7 @@ def create_fork( organization: Missing[str] = UNSET, name: Missing[str] = UNSET, default_branch_only: Missing[bool] = UNSET, - ) -> Response[FullRepository]: - ... + ) -> Response[FullRepository]: ... def create_fork( self, @@ -9589,8 +9454,7 @@ async def async_create_fork( *, headers: Optional[Dict[str, str]] = None, data: Missing[Union[ReposOwnerRepoForksPostBodyType, None]] = UNSET, - ) -> Response[FullRepository]: - ... + ) -> Response[FullRepository]: ... @overload async def async_create_fork( @@ -9603,8 +9467,7 @@ async def async_create_fork( organization: Missing[str] = UNSET, name: Missing[str] = UNSET, default_branch_only: Missing[bool] = UNSET, - ) -> Response[FullRepository]: - ... + ) -> Response[FullRepository]: ... async def async_create_fork( self, @@ -9729,8 +9592,7 @@ def create_webhook( *, headers: Optional[Dict[str, str]] = None, data: Missing[Union[ReposOwnerRepoHooksPostBodyType, None]] = UNSET, - ) -> Response[Hook]: - ... + ) -> Response[Hook]: ... @overload def create_webhook( @@ -9744,8 +9606,7 @@ def create_webhook( config: Missing[ReposOwnerRepoHooksPostBodyPropConfigType] = UNSET, events: Missing[List[str]] = UNSET, active: Missing[bool] = UNSET, - ) -> Response[Hook]: - ... + ) -> Response[Hook]: ... def create_webhook( self, @@ -9799,8 +9660,7 @@ async def async_create_webhook( *, headers: Optional[Dict[str, str]] = None, data: Missing[Union[ReposOwnerRepoHooksPostBodyType, None]] = UNSET, - ) -> Response[Hook]: - ... + ) -> Response[Hook]: ... @overload async def async_create_webhook( @@ -9814,8 +9674,7 @@ async def async_create_webhook( config: Missing[ReposOwnerRepoHooksPostBodyPropConfigType] = UNSET, events: Missing[List[str]] = UNSET, active: Missing[bool] = UNSET, - ) -> Response[Hook]: - ... + ) -> Response[Hook]: ... async def async_create_webhook( self, @@ -9972,8 +9831,7 @@ def update_webhook( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoHooksHookIdPatchBodyType, - ) -> Response[Hook]: - ... + ) -> Response[Hook]: ... @overload def update_webhook( @@ -9989,8 +9847,7 @@ def update_webhook( add_events: Missing[List[str]] = UNSET, remove_events: Missing[List[str]] = UNSET, active: Missing[bool] = UNSET, - ) -> Response[Hook]: - ... + ) -> Response[Hook]: ... def update_webhook( self, @@ -10043,8 +9900,7 @@ async def async_update_webhook( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoHooksHookIdPatchBodyType, - ) -> Response[Hook]: - ... + ) -> Response[Hook]: ... @overload async def async_update_webhook( @@ -10060,8 +9916,7 @@ async def async_update_webhook( add_events: Missing[List[str]] = UNSET, remove_events: Missing[List[str]] = UNSET, active: Missing[bool] = UNSET, - ) -> Response[Hook]: - ... + ) -> Response[Hook]: ... async def async_update_webhook( self, @@ -10160,8 +10015,7 @@ def update_webhook_config_for_repo( *, headers: Optional[Dict[str, str]] = None, data: Missing[ReposOwnerRepoHooksHookIdConfigPatchBodyType] = UNSET, - ) -> Response[WebhookConfig]: - ... + ) -> Response[WebhookConfig]: ... @overload def update_webhook_config_for_repo( @@ -10176,8 +10030,7 @@ def update_webhook_config_for_repo( content_type: Missing[str] = UNSET, secret: Missing[str] = UNSET, insecure_ssl: Missing[Union[str, float]] = UNSET, - ) -> Response[WebhookConfig]: - ... + ) -> Response[WebhookConfig]: ... def update_webhook_config_for_repo( self, @@ -10221,8 +10074,7 @@ async def async_update_webhook_config_for_repo( *, headers: Optional[Dict[str, str]] = None, data: Missing[ReposOwnerRepoHooksHookIdConfigPatchBodyType] = UNSET, - ) -> Response[WebhookConfig]: - ... + ) -> Response[WebhookConfig]: ... @overload async def async_update_webhook_config_for_repo( @@ -10237,8 +10089,7 @@ async def async_update_webhook_config_for_repo( content_type: Missing[str] = UNSET, secret: Missing[str] = UNSET, insecure_ssl: Missing[Union[str, float]] = UNSET, - ) -> Response[WebhookConfig]: - ... + ) -> Response[WebhookConfig]: ... async def async_update_webhook_config_for_repo( self, @@ -10684,8 +10535,7 @@ def update_invitation( *, headers: Optional[Dict[str, str]] = None, data: Missing[ReposOwnerRepoInvitationsInvitationIdPatchBodyType] = UNSET, - ) -> Response[RepositoryInvitation]: - ... + ) -> Response[RepositoryInvitation]: ... @overload def update_invitation( @@ -10699,8 +10549,7 @@ def update_invitation( permissions: Missing[ Literal["read", "write", "maintain", "triage", "admin"] ] = UNSET, - ) -> Response[RepositoryInvitation]: - ... + ) -> Response[RepositoryInvitation]: ... def update_invitation( self, @@ -10749,8 +10598,7 @@ async def async_update_invitation( *, headers: Optional[Dict[str, str]] = None, data: Missing[ReposOwnerRepoInvitationsInvitationIdPatchBodyType] = UNSET, - ) -> Response[RepositoryInvitation]: - ... + ) -> Response[RepositoryInvitation]: ... @overload async def async_update_invitation( @@ -10764,8 +10612,7 @@ async def async_update_invitation( permissions: Missing[ Literal["read", "write", "maintain", "triage", "admin"] ] = UNSET, - ) -> Response[RepositoryInvitation]: - ... + ) -> Response[RepositoryInvitation]: ... async def async_update_invitation( self, @@ -10877,8 +10724,7 @@ def create_deploy_key( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoKeysPostBodyType, - ) -> Response[DeployKey]: - ... + ) -> Response[DeployKey]: ... @overload def create_deploy_key( @@ -10891,8 +10737,7 @@ def create_deploy_key( title: Missing[str] = UNSET, key: str, read_only: Missing[bool] = UNSET, - ) -> Response[DeployKey]: - ... + ) -> Response[DeployKey]: ... def create_deploy_key( self, @@ -10937,8 +10782,7 @@ async def async_create_deploy_key( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoKeysPostBodyType, - ) -> Response[DeployKey]: - ... + ) -> Response[DeployKey]: ... @overload async def async_create_deploy_key( @@ -10951,8 +10795,7 @@ async def async_create_deploy_key( title: Missing[str] = UNSET, key: str, read_only: Missing[bool] = UNSET, - ) -> Response[DeployKey]: - ... + ) -> Response[DeployKey]: ... async def async_create_deploy_key( self, @@ -11133,8 +10976,7 @@ def merge_upstream( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoMergeUpstreamPostBodyType, - ) -> Response[MergedUpstream]: - ... + ) -> Response[MergedUpstream]: ... @overload def merge_upstream( @@ -11145,8 +10987,7 @@ def merge_upstream( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, branch: str, - ) -> Response[MergedUpstream]: - ... + ) -> Response[MergedUpstream]: ... def merge_upstream( self, @@ -11189,8 +11030,7 @@ async def async_merge_upstream( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoMergeUpstreamPostBodyType, - ) -> Response[MergedUpstream]: - ... + ) -> Response[MergedUpstream]: ... @overload async def async_merge_upstream( @@ -11201,8 +11041,7 @@ async def async_merge_upstream( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, branch: str, - ) -> Response[MergedUpstream]: - ... + ) -> Response[MergedUpstream]: ... async def async_merge_upstream( self, @@ -11245,8 +11084,7 @@ def merge( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoMergesPostBodyType, - ) -> Response[Commit]: - ... + ) -> Response[Commit]: ... @overload def merge( @@ -11259,8 +11097,7 @@ def merge( base: str, head: str, commit_message: Missing[str] = UNSET, - ) -> Response[Commit]: - ... + ) -> Response[Commit]: ... def merge( self, @@ -11311,8 +11148,7 @@ async def async_merge( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoMergesPostBodyType, - ) -> Response[Commit]: - ... + ) -> Response[Commit]: ... @overload async def async_merge( @@ -11325,8 +11161,7 @@ async def async_merge( base: str, head: str, commit_message: Missing[str] = UNSET, - ) -> Response[Commit]: - ... + ) -> Response[Commit]: ... async def async_merge( self, @@ -11433,8 +11268,7 @@ def update_information_about_pages_site( ReposOwnerRepoPagesPutBodyAnyof3Type, ReposOwnerRepoPagesPutBodyAnyof4Type, ], - ) -> Response: - ... + ) -> Response: ... @overload def update_information_about_pages_site( @@ -11453,8 +11287,7 @@ def update_information_about_pages_site( ReposOwnerRepoPagesPutBodyPropSourceAnyof1Type, ] ] = UNSET, - ) -> Response: - ... + ) -> Response: ... @overload def update_information_about_pages_site( @@ -11471,8 +11304,7 @@ def update_information_about_pages_site( Literal["gh-pages", "master", "master /docs"], ReposOwnerRepoPagesPutBodyPropSourceAnyof1Type, ], - ) -> Response: - ... + ) -> Response: ... @overload def update_information_about_pages_site( @@ -11491,8 +11323,7 @@ def update_information_about_pages_site( ReposOwnerRepoPagesPutBodyPropSourceAnyof1Type, ] ] = UNSET, - ) -> Response: - ... + ) -> Response: ... @overload def update_information_about_pages_site( @@ -11511,8 +11342,7 @@ def update_information_about_pages_site( ReposOwnerRepoPagesPutBodyPropSourceAnyof1Type, ] ] = UNSET, - ) -> Response: - ... + ) -> Response: ... @overload def update_information_about_pages_site( @@ -11531,8 +11361,7 @@ def update_information_about_pages_site( ReposOwnerRepoPagesPutBodyPropSourceAnyof1Type, ] ] = UNSET, - ) -> Response: - ... + ) -> Response: ... def update_information_about_pages_site( self, @@ -11611,8 +11440,7 @@ async def async_update_information_about_pages_site( ReposOwnerRepoPagesPutBodyAnyof3Type, ReposOwnerRepoPagesPutBodyAnyof4Type, ], - ) -> Response: - ... + ) -> Response: ... @overload async def async_update_information_about_pages_site( @@ -11631,8 +11459,7 @@ async def async_update_information_about_pages_site( ReposOwnerRepoPagesPutBodyPropSourceAnyof1Type, ] ] = UNSET, - ) -> Response: - ... + ) -> Response: ... @overload async def async_update_information_about_pages_site( @@ -11649,8 +11476,7 @@ async def async_update_information_about_pages_site( Literal["gh-pages", "master", "master /docs"], ReposOwnerRepoPagesPutBodyPropSourceAnyof1Type, ], - ) -> Response: - ... + ) -> Response: ... @overload async def async_update_information_about_pages_site( @@ -11669,8 +11495,7 @@ async def async_update_information_about_pages_site( ReposOwnerRepoPagesPutBodyPropSourceAnyof1Type, ] ] = UNSET, - ) -> Response: - ... + ) -> Response: ... @overload async def async_update_information_about_pages_site( @@ -11689,8 +11514,7 @@ async def async_update_information_about_pages_site( ReposOwnerRepoPagesPutBodyPropSourceAnyof1Type, ] ] = UNSET, - ) -> Response: - ... + ) -> Response: ... @overload async def async_update_information_about_pages_site( @@ -11709,8 +11533,7 @@ async def async_update_information_about_pages_site( ReposOwnerRepoPagesPutBodyPropSourceAnyof1Type, ] ] = UNSET, - ) -> Response: - ... + ) -> Response: ... async def async_update_information_about_pages_site( self, @@ -11788,8 +11611,7 @@ def create_pages_site( ReposOwnerRepoPagesPostBodyAnyof1Type, None, ], - ) -> Response[Page]: - ... + ) -> Response[Page]: ... @overload def create_pages_site( @@ -11801,8 +11623,7 @@ def create_pages_site( headers: Optional[Dict[str, str]] = None, build_type: Missing[Literal["legacy", "workflow"]] = UNSET, source: ReposOwnerRepoPagesPostBodyPropSourceType, - ) -> Response[Page]: - ... + ) -> Response[Page]: ... @overload def create_pages_site( @@ -11814,8 +11635,7 @@ def create_pages_site( headers: Optional[Dict[str, str]] = None, build_type: Literal["legacy", "workflow"], source: Missing[ReposOwnerRepoPagesPostBodyPropSourceType] = UNSET, - ) -> Response[Page]: - ... + ) -> Response[Page]: ... def create_pages_site( self, @@ -11889,8 +11709,7 @@ async def async_create_pages_site( ReposOwnerRepoPagesPostBodyAnyof1Type, None, ], - ) -> Response[Page]: - ... + ) -> Response[Page]: ... @overload async def async_create_pages_site( @@ -11902,8 +11721,7 @@ async def async_create_pages_site( headers: Optional[Dict[str, str]] = None, build_type: Missing[Literal["legacy", "workflow"]] = UNSET, source: ReposOwnerRepoPagesPostBodyPropSourceType, - ) -> Response[Page]: - ... + ) -> Response[Page]: ... @overload async def async_create_pages_site( @@ -11915,8 +11733,7 @@ async def async_create_pages_site( headers: Optional[Dict[str, str]] = None, build_type: Literal["legacy", "workflow"], source: Missing[ReposOwnerRepoPagesPostBodyPropSourceType] = UNSET, - ) -> Response[Page]: - ... + ) -> Response[Page]: ... async def async_create_pages_site( self, @@ -12235,8 +12052,7 @@ def create_pages_deployment( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoPagesDeploymentsPostBodyType, - ) -> Response[PageDeployment]: - ... + ) -> Response[PageDeployment]: ... @overload def create_pages_deployment( @@ -12251,8 +12067,7 @@ def create_pages_deployment( environment: Missing[str] = UNSET, pages_build_version: str = "GITHUB_SHA", oidc_token: str, - ) -> Response[PageDeployment]: - ... + ) -> Response[PageDeployment]: ... def create_pages_deployment( self, @@ -12304,8 +12119,7 @@ async def async_create_pages_deployment( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoPagesDeploymentsPostBodyType, - ) -> Response[PageDeployment]: - ... + ) -> Response[PageDeployment]: ... @overload async def async_create_pages_deployment( @@ -12320,8 +12134,7 @@ async def async_create_pages_deployment( environment: Missing[str] = UNSET, pages_build_version: str = "GITHUB_SHA", oidc_token: str, - ) -> Response[PageDeployment]: - ... + ) -> Response[PageDeployment]: ... async def async_create_pages_deployment( self, @@ -12733,8 +12546,7 @@ def create_or_update_custom_properties_values( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoPropertiesValuesPatchBodyType, - ) -> Response: - ... + ) -> Response: ... @overload def create_or_update_custom_properties_values( @@ -12745,8 +12557,7 @@ def create_or_update_custom_properties_values( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, properties: List[CustomPropertyValueType], - ) -> Response: - ... + ) -> Response: ... def create_or_update_custom_properties_values( self, @@ -12796,8 +12607,7 @@ async def async_create_or_update_custom_properties_values( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoPropertiesValuesPatchBodyType, - ) -> Response: - ... + ) -> Response: ... @overload async def async_create_or_update_custom_properties_values( @@ -12808,8 +12618,7 @@ async def async_create_or_update_custom_properties_values( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, properties: List[CustomPropertyValueType], - ) -> Response: - ... + ) -> Response: ... async def async_create_or_update_custom_properties_values( self, @@ -13059,8 +12868,7 @@ def create_release( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoReleasesPostBodyType, - ) -> Response[Release]: - ... + ) -> Response[Release]: ... @overload def create_release( @@ -13079,8 +12887,7 @@ def create_release( discussion_category_name: Missing[str] = UNSET, generate_release_notes: Missing[bool] = UNSET, make_latest: Missing[Literal["true", "false", "legacy"]] = UNSET, - ) -> Response[Release]: - ... + ) -> Response[Release]: ... def create_release( self, @@ -13131,8 +12938,7 @@ async def async_create_release( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoReleasesPostBodyType, - ) -> Response[Release]: - ... + ) -> Response[Release]: ... @overload async def async_create_release( @@ -13151,8 +12957,7 @@ async def async_create_release( discussion_category_name: Missing[str] = UNSET, generate_release_notes: Missing[bool] = UNSET, make_latest: Missing[Literal["true", "false", "legacy"]] = UNSET, - ) -> Response[Release]: - ... + ) -> Response[Release]: ... async def async_create_release( self, @@ -13296,8 +13101,7 @@ def update_release_asset( *, headers: Optional[Dict[str, str]] = None, data: Missing[ReposOwnerRepoReleasesAssetsAssetIdPatchBodyType] = UNSET, - ) -> Response[ReleaseAsset]: - ... + ) -> Response[ReleaseAsset]: ... @overload def update_release_asset( @@ -13311,8 +13115,7 @@ def update_release_asset( name: Missing[str] = UNSET, label: Missing[str] = UNSET, state: Missing[str] = UNSET, - ) -> Response[ReleaseAsset]: - ... + ) -> Response[ReleaseAsset]: ... def update_release_asset( self, @@ -13356,8 +13159,7 @@ async def async_update_release_asset( *, headers: Optional[Dict[str, str]] = None, data: Missing[ReposOwnerRepoReleasesAssetsAssetIdPatchBodyType] = UNSET, - ) -> Response[ReleaseAsset]: - ... + ) -> Response[ReleaseAsset]: ... @overload async def async_update_release_asset( @@ -13371,8 +13173,7 @@ async def async_update_release_asset( name: Missing[str] = UNSET, label: Missing[str] = UNSET, state: Missing[str] = UNSET, - ) -> Response[ReleaseAsset]: - ... + ) -> Response[ReleaseAsset]: ... async def async_update_release_asset( self, @@ -13415,8 +13216,7 @@ def generate_release_notes( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoReleasesGenerateNotesPostBodyType, - ) -> Response[ReleaseNotesContent]: - ... + ) -> Response[ReleaseNotesContent]: ... @overload def generate_release_notes( @@ -13430,8 +13230,7 @@ def generate_release_notes( target_commitish: Missing[str] = UNSET, previous_tag_name: Missing[str] = UNSET, configuration_file_path: Missing[str] = UNSET, - ) -> Response[ReleaseNotesContent]: - ... + ) -> Response[ReleaseNotesContent]: ... def generate_release_notes( self, @@ -13480,8 +13279,7 @@ async def async_generate_release_notes( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoReleasesGenerateNotesPostBodyType, - ) -> Response[ReleaseNotesContent]: - ... + ) -> Response[ReleaseNotesContent]: ... @overload async def async_generate_release_notes( @@ -13495,8 +13293,7 @@ async def async_generate_release_notes( target_commitish: Missing[str] = UNSET, previous_tag_name: Missing[str] = UNSET, configuration_file_path: Missing[str] = UNSET, - ) -> Response[ReleaseNotesContent]: - ... + ) -> Response[ReleaseNotesContent]: ... async def async_generate_release_notes( self, @@ -13730,8 +13527,7 @@ def update_release( *, headers: Optional[Dict[str, str]] = None, data: Missing[ReposOwnerRepoReleasesReleaseIdPatchBodyType] = UNSET, - ) -> Response[Release]: - ... + ) -> Response[Release]: ... @overload def update_release( @@ -13750,8 +13546,7 @@ def update_release( prerelease: Missing[bool] = UNSET, make_latest: Missing[Literal["true", "false", "legacy"]] = UNSET, discussion_category_name: Missing[str] = UNSET, - ) -> Response[Release]: - ... + ) -> Response[Release]: ... def update_release( self, @@ -13802,8 +13597,7 @@ async def async_update_release( *, headers: Optional[Dict[str, str]] = None, data: Missing[ReposOwnerRepoReleasesReleaseIdPatchBodyType] = UNSET, - ) -> Response[Release]: - ... + ) -> Response[Release]: ... @overload async def async_update_release( @@ -13822,8 +13616,7 @@ async def async_update_release( prerelease: Missing[bool] = UNSET, make_latest: Missing[Literal["true", "false", "legacy"]] = UNSET, discussion_category_name: Missing[str] = UNSET, - ) -> Response[Release]: - ... + ) -> Response[Release]: ... async def async_update_release( self, @@ -14277,8 +14070,7 @@ def create_repo_ruleset( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoRulesetsPostBodyType, - ) -> Response[RepositoryRuleset]: - ... + ) -> Response[RepositoryRuleset]: ... @overload def create_repo_ruleset( @@ -14314,8 +14106,7 @@ def create_repo_ruleset( ] ] ] = UNSET, - ) -> Response[RepositoryRuleset]: - ... + ) -> Response[RepositoryRuleset]: ... def create_repo_ruleset( self, @@ -14365,8 +14156,7 @@ async def async_create_repo_ruleset( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoRulesetsPostBodyType, - ) -> Response[RepositoryRuleset]: - ... + ) -> Response[RepositoryRuleset]: ... @overload async def async_create_repo_ruleset( @@ -14402,8 +14192,7 @@ async def async_create_repo_ruleset( ] ] ] = UNSET, - ) -> Response[RepositoryRuleset]: - ... + ) -> Response[RepositoryRuleset]: ... async def async_create_repo_ruleset( self, @@ -14662,8 +14451,7 @@ def update_repo_ruleset( *, headers: Optional[Dict[str, str]] = None, data: Missing[ReposOwnerRepoRulesetsRulesetIdPutBodyType] = UNSET, - ) -> Response[RepositoryRuleset]: - ... + ) -> Response[RepositoryRuleset]: ... @overload def update_repo_ruleset( @@ -14700,8 +14488,7 @@ def update_repo_ruleset( ] ] ] = UNSET, - ) -> Response[RepositoryRuleset]: - ... + ) -> Response[RepositoryRuleset]: ... def update_repo_ruleset( self, @@ -14753,8 +14540,7 @@ async def async_update_repo_ruleset( *, headers: Optional[Dict[str, str]] = None, data: Missing[ReposOwnerRepoRulesetsRulesetIdPutBodyType] = UNSET, - ) -> Response[RepositoryRuleset]: - ... + ) -> Response[RepositoryRuleset]: ... @overload async def async_update_repo_ruleset( @@ -14791,8 +14577,7 @@ async def async_update_repo_ruleset( ] ] ] = UNSET, - ) -> Response[RepositoryRuleset]: - ... + ) -> Response[RepositoryRuleset]: ... async def async_update_repo_ruleset( self, @@ -15132,8 +14917,7 @@ def create_commit_status( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoStatusesShaPostBodyType, - ) -> Response[Status]: - ... + ) -> Response[Status]: ... @overload def create_commit_status( @@ -15148,8 +14932,7 @@ def create_commit_status( target_url: Missing[Union[str, None]] = UNSET, description: Missing[Union[str, None]] = UNSET, context: Missing[str] = UNSET, - ) -> Response[Status]: - ... + ) -> Response[Status]: ... def create_commit_status( self, @@ -15193,8 +14976,7 @@ async def async_create_commit_status( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoStatusesShaPostBodyType, - ) -> Response[Status]: - ... + ) -> Response[Status]: ... @overload async def async_create_commit_status( @@ -15209,8 +14991,7 @@ async def async_create_commit_status( target_url: Missing[Union[str, None]] = UNSET, description: Missing[Union[str, None]] = UNSET, context: Missing[str] = UNSET, - ) -> Response[Status]: - ... + ) -> Response[Status]: ... async def async_create_commit_status( self, @@ -15373,8 +15154,7 @@ def create_tag_protection( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoTagsProtectionPostBodyType, - ) -> Response[TagProtection]: - ... + ) -> Response[TagProtection]: ... @overload def create_tag_protection( @@ -15385,8 +15165,7 @@ def create_tag_protection( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, pattern: str, - ) -> Response[TagProtection]: - ... + ) -> Response[TagProtection]: ... def create_tag_protection( self, @@ -15436,8 +15215,7 @@ async def async_create_tag_protection( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoTagsProtectionPostBodyType, - ) -> Response[TagProtection]: - ... + ) -> Response[TagProtection]: ... @overload async def async_create_tag_protection( @@ -15448,8 +15226,7 @@ async def async_create_tag_protection( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, pattern: str, - ) -> Response[TagProtection]: - ... + ) -> Response[TagProtection]: ... async def async_create_tag_protection( self, @@ -15727,8 +15504,7 @@ def replace_all_topics( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoTopicsPutBodyType, - ) -> Response[Topic]: - ... + ) -> Response[Topic]: ... @overload def replace_all_topics( @@ -15739,8 +15515,7 @@ def replace_all_topics( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, names: List[str], - ) -> Response[Topic]: - ... + ) -> Response[Topic]: ... def replace_all_topics( self, @@ -15791,8 +15566,7 @@ async def async_replace_all_topics( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoTopicsPutBodyType, - ) -> Response[Topic]: - ... + ) -> Response[Topic]: ... @overload async def async_replace_all_topics( @@ -15803,8 +15577,7 @@ async def async_replace_all_topics( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, names: List[str], - ) -> Response[Topic]: - ... + ) -> Response[Topic]: ... async def async_replace_all_topics( self, @@ -16087,8 +15860,7 @@ def transfer( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoTransferPostBodyType, - ) -> Response[MinimalRepository]: - ... + ) -> Response[MinimalRepository]: ... @overload def transfer( @@ -16101,8 +15873,7 @@ def transfer( new_owner: str, new_name: Missing[str] = UNSET, team_ids: Missing[List[int]] = UNSET, - ) -> Response[MinimalRepository]: - ... + ) -> Response[MinimalRepository]: ... def transfer( self, @@ -16144,8 +15915,7 @@ async def async_transfer( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoTransferPostBodyType, - ) -> Response[MinimalRepository]: - ... + ) -> Response[MinimalRepository]: ... @overload async def async_transfer( @@ -16158,8 +15928,7 @@ async def async_transfer( new_owner: str, new_name: Missing[str] = UNSET, team_ids: Missing[List[int]] = UNSET, - ) -> Response[MinimalRepository]: - ... + ) -> Response[MinimalRepository]: ... async def async_transfer( self, @@ -16357,8 +16126,7 @@ def create_using_template( *, headers: Optional[Dict[str, str]] = None, data: ReposTemplateOwnerTemplateRepoGeneratePostBodyType, - ) -> Response[FullRepository]: - ... + ) -> Response[FullRepository]: ... @overload def create_using_template( @@ -16373,8 +16141,7 @@ def create_using_template( description: Missing[str] = UNSET, include_all_branches: Missing[bool] = UNSET, private: Missing[bool] = UNSET, - ) -> Response[FullRepository]: - ... + ) -> Response[FullRepository]: ... def create_using_template( self, @@ -16421,8 +16188,7 @@ async def async_create_using_template( *, headers: Optional[Dict[str, str]] = None, data: ReposTemplateOwnerTemplateRepoGeneratePostBodyType, - ) -> Response[FullRepository]: - ... + ) -> Response[FullRepository]: ... @overload async def async_create_using_template( @@ -16437,8 +16203,7 @@ async def async_create_using_template( description: Missing[str] = UNSET, include_all_branches: Missing[bool] = UNSET, private: Missing[bool] = UNSET, - ) -> Response[FullRepository]: - ... + ) -> Response[FullRepository]: ... async def async_create_using_template( self, @@ -16640,8 +16405,7 @@ async def async_list_for_authenticated_user( @overload def create_for_authenticated_user( self, *, headers: Optional[Dict[str, str]] = None, data: UserReposPostBodyType - ) -> Response[FullRepository]: - ... + ) -> Response[FullRepository]: ... @overload def create_for_authenticated_user( @@ -16676,8 +16440,7 @@ def create_for_authenticated_user( merge_commit_message: Missing[Literal["PR_BODY", "PR_TITLE", "BLANK"]] = UNSET, has_downloads: Missing[bool] = UNSET, is_template: Missing[bool] = UNSET, - ) -> Response[FullRepository]: - ... + ) -> Response[FullRepository]: ... def create_for_authenticated_user( self, @@ -16724,8 +16487,7 @@ def create_for_authenticated_user( @overload async def async_create_for_authenticated_user( self, *, headers: Optional[Dict[str, str]] = None, data: UserReposPostBodyType - ) -> Response[FullRepository]: - ... + ) -> Response[FullRepository]: ... @overload async def async_create_for_authenticated_user( @@ -16760,8 +16522,7 @@ async def async_create_for_authenticated_user( merge_commit_message: Missing[Literal["PR_BODY", "PR_TITLE", "BLANK"]] = UNSET, has_downloads: Missing[bool] = UNSET, is_template: Missing[bool] = UNSET, - ) -> Response[FullRepository]: - ... + ) -> Response[FullRepository]: ... async def async_create_for_authenticated_user( self, diff --git a/githubkit/versions/v2022_11_28/rest/search.py b/githubkit/versions/v2022_11_28/rest/search.py index 87931dff2..9e28ba276 100644 --- a/githubkit/versions/v2022_11_28/rest/search.py +++ b/githubkit/versions/v2022_11_28/rest/search.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref diff --git a/githubkit/versions/v2022_11_28/rest/secret_scanning.py b/githubkit/versions/v2022_11_28/rest/secret_scanning.py index 34496d772..3e7ce3ad0 100644 --- a/githubkit/versions/v2022_11_28/rest/secret_scanning.py +++ b/githubkit/versions/v2022_11_28/rest/secret_scanning.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref @@ -441,8 +440,7 @@ def update_alert( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoSecretScanningAlertsAlertNumberPatchBodyType, - ) -> Response[SecretScanningAlert]: - ... + ) -> Response[SecretScanningAlert]: ... @overload def update_alert( @@ -460,8 +458,7 @@ def update_alert( ] ] = UNSET, resolution_comment: Missing[Union[str, None]] = UNSET, - ) -> Response[SecretScanningAlert]: - ... + ) -> Response[SecretScanningAlert]: ... def update_alert( self, @@ -516,8 +513,7 @@ async def async_update_alert( *, headers: Optional[Dict[str, str]] = None, data: ReposOwnerRepoSecretScanningAlertsAlertNumberPatchBodyType, - ) -> Response[SecretScanningAlert]: - ... + ) -> Response[SecretScanningAlert]: ... @overload async def async_update_alert( @@ -535,8 +531,7 @@ async def async_update_alert( ] ] = UNSET, resolution_comment: Missing[Union[str, None]] = UNSET, - ) -> Response[SecretScanningAlert]: - ... + ) -> Response[SecretScanningAlert]: ... async def async_update_alert( self, diff --git a/githubkit/versions/v2022_11_28/rest/security_advisories.py b/githubkit/versions/v2022_11_28/rest/security_advisories.py index 424baa0fd..9cd31d988 100644 --- a/githubkit/versions/v2022_11_28/rest/security_advisories.py +++ b/githubkit/versions/v2022_11_28/rest/security_advisories.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref @@ -448,8 +447,7 @@ def create_repository_advisory( *, headers: Optional[Dict[str, str]] = None, data: RepositoryAdvisoryCreateType, - ) -> Response[RepositoryAdvisory]: - ... + ) -> Response[RepositoryAdvisory]: ... @overload def create_repository_advisory( @@ -472,8 +470,7 @@ def create_repository_advisory( ] = UNSET, cvss_vector_string: Missing[Union[str, None]] = UNSET, start_private_fork: Missing[bool] = UNSET, - ) -> Response[RepositoryAdvisory]: - ... + ) -> Response[RepositoryAdvisory]: ... def create_repository_advisory( self, @@ -525,8 +522,7 @@ async def async_create_repository_advisory( *, headers: Optional[Dict[str, str]] = None, data: RepositoryAdvisoryCreateType, - ) -> Response[RepositoryAdvisory]: - ... + ) -> Response[RepositoryAdvisory]: ... @overload async def async_create_repository_advisory( @@ -549,8 +545,7 @@ async def async_create_repository_advisory( ] = UNSET, cvss_vector_string: Missing[Union[str, None]] = UNSET, start_private_fork: Missing[bool] = UNSET, - ) -> Response[RepositoryAdvisory]: - ... + ) -> Response[RepositoryAdvisory]: ... async def async_create_repository_advisory( self, @@ -602,8 +597,7 @@ def create_private_vulnerability_report( *, headers: Optional[Dict[str, str]] = None, data: PrivateVulnerabilityReportCreateType, - ) -> Response[RepositoryAdvisory]: - ... + ) -> Response[RepositoryAdvisory]: ... @overload def create_private_vulnerability_report( @@ -626,8 +620,7 @@ def create_private_vulnerability_report( ] = UNSET, cvss_vector_string: Missing[Union[str, None]] = UNSET, start_private_fork: Missing[bool] = UNSET, - ) -> Response[RepositoryAdvisory]: - ... + ) -> Response[RepositoryAdvisory]: ... def create_private_vulnerability_report( self, @@ -679,8 +672,7 @@ async def async_create_private_vulnerability_report( *, headers: Optional[Dict[str, str]] = None, data: PrivateVulnerabilityReportCreateType, - ) -> Response[RepositoryAdvisory]: - ... + ) -> Response[RepositoryAdvisory]: ... @overload async def async_create_private_vulnerability_report( @@ -703,8 +695,7 @@ async def async_create_private_vulnerability_report( ] = UNSET, cvss_vector_string: Missing[Union[str, None]] = UNSET, start_private_fork: Missing[bool] = UNSET, - ) -> Response[RepositoryAdvisory]: - ... + ) -> Response[RepositoryAdvisory]: ... async def async_create_private_vulnerability_report( self, @@ -811,8 +802,7 @@ def update_repository_advisory( *, headers: Optional[Dict[str, str]] = None, data: RepositoryAdvisoryUpdateType, - ) -> Response[RepositoryAdvisory]: - ... + ) -> Response[RepositoryAdvisory]: ... @overload def update_repository_advisory( @@ -840,8 +830,7 @@ def update_repository_advisory( state: Missing[Literal["published", "closed", "draft"]] = UNSET, collaborating_users: Missing[Union[List[str], None]] = UNSET, collaborating_teams: Missing[Union[List[str], None]] = UNSET, - ) -> Response[RepositoryAdvisory]: - ... + ) -> Response[RepositoryAdvisory]: ... def update_repository_advisory( self, @@ -895,8 +884,7 @@ async def async_update_repository_advisory( *, headers: Optional[Dict[str, str]] = None, data: RepositoryAdvisoryUpdateType, - ) -> Response[RepositoryAdvisory]: - ... + ) -> Response[RepositoryAdvisory]: ... @overload async def async_update_repository_advisory( @@ -924,8 +912,7 @@ async def async_update_repository_advisory( state: Missing[Literal["published", "closed", "draft"]] = UNSET, collaborating_users: Missing[Union[List[str], None]] = UNSET, collaborating_teams: Missing[Union[List[str], None]] = UNSET, - ) -> Response[RepositoryAdvisory]: - ... + ) -> Response[RepositoryAdvisory]: ... async def async_update_repository_advisory( self, diff --git a/githubkit/versions/v2022_11_28/rest/teams.py b/githubkit/versions/v2022_11_28/rest/teams.py index ff7af1b62..8160a2348 100644 --- a/githubkit/versions/v2022_11_28/rest/teams.py +++ b/githubkit/versions/v2022_11_28/rest/teams.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref @@ -150,8 +149,7 @@ def create( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgTeamsPostBodyType, - ) -> Response[TeamFull]: - ... + ) -> Response[TeamFull]: ... @overload def create( @@ -170,8 +168,7 @@ def create( ] = UNSET, permission: Missing[Literal["pull", "push"]] = UNSET, parent_team_id: Missing[int] = UNSET, - ) -> Response[TeamFull]: - ... + ) -> Response[TeamFull]: ... def create( self, @@ -215,8 +212,7 @@ async def async_create( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgTeamsPostBodyType, - ) -> Response[TeamFull]: - ... + ) -> Response[TeamFull]: ... @overload async def async_create( @@ -235,8 +231,7 @@ async def async_create( ] = UNSET, permission: Missing[Literal["pull", "push"]] = UNSET, parent_team_id: Missing[int] = UNSET, - ) -> Response[TeamFull]: - ... + ) -> Response[TeamFull]: ... async def async_create( self, @@ -369,8 +364,7 @@ def update_in_org( *, headers: Optional[Dict[str, str]] = None, data: Missing[OrgsOrgTeamsTeamSlugPatchBodyType] = UNSET, - ) -> Response[TeamFull]: - ... + ) -> Response[TeamFull]: ... @overload def update_in_org( @@ -388,8 +382,7 @@ def update_in_org( ] = UNSET, permission: Missing[Literal["pull", "push", "admin"]] = UNSET, parent_team_id: Missing[Union[int, None]] = UNSET, - ) -> Response[TeamFull]: - ... + ) -> Response[TeamFull]: ... def update_in_org( self, @@ -441,8 +434,7 @@ async def async_update_in_org( *, headers: Optional[Dict[str, str]] = None, data: Missing[OrgsOrgTeamsTeamSlugPatchBodyType] = UNSET, - ) -> Response[TeamFull]: - ... + ) -> Response[TeamFull]: ... @overload async def async_update_in_org( @@ -460,8 +452,7 @@ async def async_update_in_org( ] = UNSET, permission: Missing[Literal["pull", "push", "admin"]] = UNSET, parent_team_id: Missing[Union[int, None]] = UNSET, - ) -> Response[TeamFull]: - ... + ) -> Response[TeamFull]: ... async def async_update_in_org( self, @@ -585,8 +576,7 @@ def create_discussion_in_org( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgTeamsTeamSlugDiscussionsPostBodyType, - ) -> Response[TeamDiscussion]: - ... + ) -> Response[TeamDiscussion]: ... @overload def create_discussion_in_org( @@ -599,8 +589,7 @@ def create_discussion_in_org( title: str, body: str, private: Missing[bool] = UNSET, - ) -> Response[TeamDiscussion]: - ... + ) -> Response[TeamDiscussion]: ... def create_discussion_in_org( self, @@ -642,8 +631,7 @@ async def async_create_discussion_in_org( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgTeamsTeamSlugDiscussionsPostBodyType, - ) -> Response[TeamDiscussion]: - ... + ) -> Response[TeamDiscussion]: ... @overload async def async_create_discussion_in_org( @@ -656,8 +644,7 @@ async def async_create_discussion_in_org( title: str, body: str, private: Missing[bool] = UNSET, - ) -> Response[TeamDiscussion]: - ... + ) -> Response[TeamDiscussion]: ... async def async_create_discussion_in_org( self, @@ -788,8 +775,7 @@ def update_discussion_in_org( data: Missing[ OrgsOrgTeamsTeamSlugDiscussionsDiscussionNumberPatchBodyType ] = UNSET, - ) -> Response[TeamDiscussion]: - ... + ) -> Response[TeamDiscussion]: ... @overload def update_discussion_in_org( @@ -802,8 +788,7 @@ def update_discussion_in_org( headers: Optional[Dict[str, str]] = None, title: Missing[str] = UNSET, body: Missing[str] = UNSET, - ) -> Response[TeamDiscussion]: - ... + ) -> Response[TeamDiscussion]: ... def update_discussion_in_org( self, @@ -856,8 +841,7 @@ async def async_update_discussion_in_org( data: Missing[ OrgsOrgTeamsTeamSlugDiscussionsDiscussionNumberPatchBodyType ] = UNSET, - ) -> Response[TeamDiscussion]: - ... + ) -> Response[TeamDiscussion]: ... @overload async def async_update_discussion_in_org( @@ -870,8 +854,7 @@ async def async_update_discussion_in_org( headers: Optional[Dict[str, str]] = None, title: Missing[str] = UNSET, body: Missing[str] = UNSET, - ) -> Response[TeamDiscussion]: - ... + ) -> Response[TeamDiscussion]: ... async def async_update_discussion_in_org( self, @@ -992,8 +975,7 @@ def create_discussion_comment_in_org( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgTeamsTeamSlugDiscussionsDiscussionNumberCommentsPostBodyType, - ) -> Response[TeamDiscussionComment]: - ... + ) -> Response[TeamDiscussionComment]: ... @overload def create_discussion_comment_in_org( @@ -1005,8 +987,7 @@ def create_discussion_comment_in_org( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, body: str, - ) -> Response[TeamDiscussionComment]: - ... + ) -> Response[TeamDiscussionComment]: ... def create_discussion_comment_in_org( self, @@ -1057,8 +1038,7 @@ async def async_create_discussion_comment_in_org( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgTeamsTeamSlugDiscussionsDiscussionNumberCommentsPostBodyType, - ) -> Response[TeamDiscussionComment]: - ... + ) -> Response[TeamDiscussionComment]: ... @overload async def async_create_discussion_comment_in_org( @@ -1070,8 +1050,7 @@ async def async_create_discussion_comment_in_org( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, body: str, - ) -> Response[TeamDiscussionComment]: - ... + ) -> Response[TeamDiscussionComment]: ... async def async_create_discussion_comment_in_org( self, @@ -1213,8 +1192,7 @@ def update_discussion_comment_in_org( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgTeamsTeamSlugDiscussionsDiscussionNumberCommentsCommentNumberPatchBodyType, - ) -> Response[TeamDiscussionComment]: - ... + ) -> Response[TeamDiscussionComment]: ... @overload def update_discussion_comment_in_org( @@ -1227,8 +1205,7 @@ def update_discussion_comment_in_org( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, body: str, - ) -> Response[TeamDiscussionComment]: - ... + ) -> Response[TeamDiscussionComment]: ... def update_discussion_comment_in_org( self, @@ -1282,8 +1259,7 @@ async def async_update_discussion_comment_in_org( *, headers: Optional[Dict[str, str]] = None, data: OrgsOrgTeamsTeamSlugDiscussionsDiscussionNumberCommentsCommentNumberPatchBodyType, - ) -> Response[TeamDiscussionComment]: - ... + ) -> Response[TeamDiscussionComment]: ... @overload async def async_update_discussion_comment_in_org( @@ -1296,8 +1272,7 @@ async def async_update_discussion_comment_in_org( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, body: str, - ) -> Response[TeamDiscussionComment]: - ... + ) -> Response[TeamDiscussionComment]: ... async def async_update_discussion_comment_in_org( self, @@ -1530,8 +1505,7 @@ def add_or_update_membership_for_user_in_org( *, headers: Optional[Dict[str, str]] = None, data: Missing[OrgsOrgTeamsTeamSlugMembershipsUsernamePutBodyType] = UNSET, - ) -> Response[TeamMembership]: - ... + ) -> Response[TeamMembership]: ... @overload def add_or_update_membership_for_user_in_org( @@ -1543,8 +1517,7 @@ def add_or_update_membership_for_user_in_org( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, role: Missing[Literal["member", "maintainer"]] = UNSET, - ) -> Response[TeamMembership]: - ... + ) -> Response[TeamMembership]: ... def add_or_update_membership_for_user_in_org( self, @@ -1594,8 +1567,7 @@ async def async_add_or_update_membership_for_user_in_org( *, headers: Optional[Dict[str, str]] = None, data: Missing[OrgsOrgTeamsTeamSlugMembershipsUsernamePutBodyType] = UNSET, - ) -> Response[TeamMembership]: - ... + ) -> Response[TeamMembership]: ... @overload async def async_add_or_update_membership_for_user_in_org( @@ -1607,8 +1579,7 @@ async def async_add_or_update_membership_for_user_in_org( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, role: Missing[Literal["member", "maintainer"]] = UNSET, - ) -> Response[TeamMembership]: - ... + ) -> Response[TeamMembership]: ... async def async_add_or_update_membership_for_user_in_org( self, @@ -1814,8 +1785,7 @@ def add_or_update_project_permissions_in_org( data: Missing[ Union[OrgsOrgTeamsTeamSlugProjectsProjectIdPutBodyType, None] ] = UNSET, - ) -> Response: - ... + ) -> Response: ... @overload def add_or_update_project_permissions_in_org( @@ -1827,8 +1797,7 @@ def add_or_update_project_permissions_in_org( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, permission: Missing[Literal["read", "write", "admin"]] = UNSET, - ) -> Response: - ... + ) -> Response: ... def add_or_update_project_permissions_in_org( self, @@ -1885,8 +1854,7 @@ async def async_add_or_update_project_permissions_in_org( data: Missing[ Union[OrgsOrgTeamsTeamSlugProjectsProjectIdPutBodyType, None] ] = UNSET, - ) -> Response: - ... + ) -> Response: ... @overload async def async_add_or_update_project_permissions_in_org( @@ -1898,8 +1866,7 @@ async def async_add_or_update_project_permissions_in_org( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, permission: Missing[Literal["read", "write", "admin"]] = UNSET, - ) -> Response: - ... + ) -> Response: ... async def async_add_or_update_project_permissions_in_org( self, @@ -2109,8 +2076,7 @@ def add_or_update_repo_permissions_in_org( *, headers: Optional[Dict[str, str]] = None, data: Missing[OrgsOrgTeamsTeamSlugReposOwnerRepoPutBodyType] = UNSET, - ) -> Response: - ... + ) -> Response: ... @overload def add_or_update_repo_permissions_in_org( @@ -2123,8 +2089,7 @@ def add_or_update_repo_permissions_in_org( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, permission: Missing[str] = UNSET, - ) -> Response: - ... + ) -> Response: ... def add_or_update_repo_permissions_in_org( self, @@ -2169,8 +2134,7 @@ async def async_add_or_update_repo_permissions_in_org( *, headers: Optional[Dict[str, str]] = None, data: Missing[OrgsOrgTeamsTeamSlugReposOwnerRepoPutBodyType] = UNSET, - ) -> Response: - ... + ) -> Response: ... @overload async def async_add_or_update_repo_permissions_in_org( @@ -2183,8 +2147,7 @@ async def async_add_or_update_repo_permissions_in_org( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, permission: Missing[str] = UNSET, - ) -> Response: - ... + ) -> Response: ... async def async_add_or_update_repo_permissions_in_org( self, @@ -2428,8 +2391,7 @@ def update_legacy( *, headers: Optional[Dict[str, str]] = None, data: TeamsTeamIdPatchBodyType, - ) -> Response[TeamFull]: - ... + ) -> Response[TeamFull]: ... @overload def update_legacy( @@ -2446,8 +2408,7 @@ def update_legacy( ] = UNSET, permission: Missing[Literal["pull", "push", "admin"]] = UNSET, parent_team_id: Missing[Union[int, None]] = UNSET, - ) -> Response[TeamFull]: - ... + ) -> Response[TeamFull]: ... def update_legacy( self, @@ -2492,8 +2453,7 @@ async def async_update_legacy( *, headers: Optional[Dict[str, str]] = None, data: TeamsTeamIdPatchBodyType, - ) -> Response[TeamFull]: - ... + ) -> Response[TeamFull]: ... @overload async def async_update_legacy( @@ -2510,8 +2470,7 @@ async def async_update_legacy( ] = UNSET, permission: Missing[Literal["pull", "push", "admin"]] = UNSET, parent_team_id: Missing[Union[int, None]] = UNSET, - ) -> Response[TeamFull]: - ... + ) -> Response[TeamFull]: ... async def async_update_legacy( self, @@ -2622,8 +2581,7 @@ def create_discussion_legacy( *, headers: Optional[Dict[str, str]] = None, data: TeamsTeamIdDiscussionsPostBodyType, - ) -> Response[TeamDiscussion]: - ... + ) -> Response[TeamDiscussion]: ... @overload def create_discussion_legacy( @@ -2635,8 +2593,7 @@ def create_discussion_legacy( title: str, body: str, private: Missing[bool] = UNSET, - ) -> Response[TeamDiscussion]: - ... + ) -> Response[TeamDiscussion]: ... def create_discussion_legacy( self, @@ -2676,8 +2633,7 @@ async def async_create_discussion_legacy( *, headers: Optional[Dict[str, str]] = None, data: TeamsTeamIdDiscussionsPostBodyType, - ) -> Response[TeamDiscussion]: - ... + ) -> Response[TeamDiscussion]: ... @overload async def async_create_discussion_legacy( @@ -2689,8 +2645,7 @@ async def async_create_discussion_legacy( title: str, body: str, private: Missing[bool] = UNSET, - ) -> Response[TeamDiscussion]: - ... + ) -> Response[TeamDiscussion]: ... async def async_create_discussion_legacy( self, @@ -2813,8 +2768,7 @@ def update_discussion_legacy( *, headers: Optional[Dict[str, str]] = None, data: Missing[TeamsTeamIdDiscussionsDiscussionNumberPatchBodyType] = UNSET, - ) -> Response[TeamDiscussion]: - ... + ) -> Response[TeamDiscussion]: ... @overload def update_discussion_legacy( @@ -2826,8 +2780,7 @@ def update_discussion_legacy( headers: Optional[Dict[str, str]] = None, title: Missing[str] = UNSET, body: Missing[str] = UNSET, - ) -> Response[TeamDiscussion]: - ... + ) -> Response[TeamDiscussion]: ... def update_discussion_legacy( self, @@ -2874,8 +2827,7 @@ async def async_update_discussion_legacy( *, headers: Optional[Dict[str, str]] = None, data: Missing[TeamsTeamIdDiscussionsDiscussionNumberPatchBodyType] = UNSET, - ) -> Response[TeamDiscussion]: - ... + ) -> Response[TeamDiscussion]: ... @overload async def async_update_discussion_legacy( @@ -2887,8 +2839,7 @@ async def async_update_discussion_legacy( headers: Optional[Dict[str, str]] = None, title: Missing[str] = UNSET, body: Missing[str] = UNSET, - ) -> Response[TeamDiscussion]: - ... + ) -> Response[TeamDiscussion]: ... async def async_update_discussion_legacy( self, @@ -3003,8 +2954,7 @@ def create_discussion_comment_legacy( *, headers: Optional[Dict[str, str]] = None, data: TeamsTeamIdDiscussionsDiscussionNumberCommentsPostBodyType, - ) -> Response[TeamDiscussionComment]: - ... + ) -> Response[TeamDiscussionComment]: ... @overload def create_discussion_comment_legacy( @@ -3015,8 +2965,7 @@ def create_discussion_comment_legacy( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, body: str, - ) -> Response[TeamDiscussionComment]: - ... + ) -> Response[TeamDiscussionComment]: ... def create_discussion_comment_legacy( self, @@ -3065,8 +3014,7 @@ async def async_create_discussion_comment_legacy( *, headers: Optional[Dict[str, str]] = None, data: TeamsTeamIdDiscussionsDiscussionNumberCommentsPostBodyType, - ) -> Response[TeamDiscussionComment]: - ... + ) -> Response[TeamDiscussionComment]: ... @overload async def async_create_discussion_comment_legacy( @@ -3077,8 +3025,7 @@ async def async_create_discussion_comment_legacy( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, body: str, - ) -> Response[TeamDiscussionComment]: - ... + ) -> Response[TeamDiscussionComment]: ... async def async_create_discussion_comment_legacy( self, @@ -3214,8 +3161,7 @@ def update_discussion_comment_legacy( *, headers: Optional[Dict[str, str]] = None, data: TeamsTeamIdDiscussionsDiscussionNumberCommentsCommentNumberPatchBodyType, - ) -> Response[TeamDiscussionComment]: - ... + ) -> Response[TeamDiscussionComment]: ... @overload def update_discussion_comment_legacy( @@ -3227,8 +3173,7 @@ def update_discussion_comment_legacy( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, body: str, - ) -> Response[TeamDiscussionComment]: - ... + ) -> Response[TeamDiscussionComment]: ... def update_discussion_comment_legacy( self, @@ -3279,8 +3224,7 @@ async def async_update_discussion_comment_legacy( *, headers: Optional[Dict[str, str]] = None, data: TeamsTeamIdDiscussionsDiscussionNumberCommentsCommentNumberPatchBodyType, - ) -> Response[TeamDiscussionComment]: - ... + ) -> Response[TeamDiscussionComment]: ... @overload async def async_update_discussion_comment_legacy( @@ -3292,8 +3236,7 @@ async def async_update_discussion_comment_legacy( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, body: str, - ) -> Response[TeamDiscussionComment]: - ... + ) -> Response[TeamDiscussionComment]: ... async def async_update_discussion_comment_legacy( self, @@ -3655,8 +3598,7 @@ def add_or_update_membership_for_user_legacy( *, headers: Optional[Dict[str, str]] = None, data: Missing[TeamsTeamIdMembershipsUsernamePutBodyType] = UNSET, - ) -> Response[TeamMembership]: - ... + ) -> Response[TeamMembership]: ... @overload def add_or_update_membership_for_user_legacy( @@ -3667,8 +3609,7 @@ def add_or_update_membership_for_user_legacy( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, role: Missing[Literal["member", "maintainer"]] = UNSET, - ) -> Response[TeamMembership]: - ... + ) -> Response[TeamMembership]: ... def add_or_update_membership_for_user_legacy( self, @@ -3717,8 +3658,7 @@ async def async_add_or_update_membership_for_user_legacy( *, headers: Optional[Dict[str, str]] = None, data: Missing[TeamsTeamIdMembershipsUsernamePutBodyType] = UNSET, - ) -> Response[TeamMembership]: - ... + ) -> Response[TeamMembership]: ... @overload async def async_add_or_update_membership_for_user_legacy( @@ -3729,8 +3669,7 @@ async def async_add_or_update_membership_for_user_legacy( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, role: Missing[Literal["member", "maintainer"]] = UNSET, - ) -> Response[TeamMembership]: - ... + ) -> Response[TeamMembership]: ... async def async_add_or_update_membership_for_user_legacy( self, @@ -3933,8 +3872,7 @@ def add_or_update_project_permissions_legacy( *, headers: Optional[Dict[str, str]] = None, data: Missing[TeamsTeamIdProjectsProjectIdPutBodyType] = UNSET, - ) -> Response: - ... + ) -> Response: ... @overload def add_or_update_project_permissions_legacy( @@ -3945,8 +3883,7 @@ def add_or_update_project_permissions_legacy( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, permission: Missing[Literal["read", "write", "admin"]] = UNSET, - ) -> Response: - ... + ) -> Response: ... def add_or_update_project_permissions_legacy( self, @@ -3997,8 +3934,7 @@ async def async_add_or_update_project_permissions_legacy( *, headers: Optional[Dict[str, str]] = None, data: Missing[TeamsTeamIdProjectsProjectIdPutBodyType] = UNSET, - ) -> Response: - ... + ) -> Response: ... @overload async def async_add_or_update_project_permissions_legacy( @@ -4009,8 +3945,7 @@ async def async_add_or_update_project_permissions_legacy( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, permission: Missing[Literal["read", "write", "admin"]] = UNSET, - ) -> Response: - ... + ) -> Response: ... async def async_add_or_update_project_permissions_legacy( self, @@ -4228,8 +4163,7 @@ def add_or_update_repo_permissions_legacy( *, headers: Optional[Dict[str, str]] = None, data: Missing[TeamsTeamIdReposOwnerRepoPutBodyType] = UNSET, - ) -> Response: - ... + ) -> Response: ... @overload def add_or_update_repo_permissions_legacy( @@ -4241,8 +4175,7 @@ def add_or_update_repo_permissions_legacy( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, permission: Missing[Literal["pull", "push", "admin"]] = UNSET, - ) -> Response: - ... + ) -> Response: ... def add_or_update_repo_permissions_legacy( self, @@ -4293,8 +4226,7 @@ async def async_add_or_update_repo_permissions_legacy( *, headers: Optional[Dict[str, str]] = None, data: Missing[TeamsTeamIdReposOwnerRepoPutBodyType] = UNSET, - ) -> Response: - ... + ) -> Response: ... @overload async def async_add_or_update_repo_permissions_legacy( @@ -4306,8 +4238,7 @@ async def async_add_or_update_repo_permissions_legacy( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, permission: Missing[Literal["pull", "push", "admin"]] = UNSET, - ) -> Response: - ... + ) -> Response: ... async def async_add_or_update_repo_permissions_legacy( self, diff --git a/githubkit/versions/v2022_11_28/rest/users.py b/githubkit/versions/v2022_11_28/rest/users.py index bd79b126c..d484a07b0 100644 --- a/githubkit/versions/v2022_11_28/rest/users.py +++ b/githubkit/versions/v2022_11_28/rest/users.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from weakref import ref @@ -125,8 +124,7 @@ def update_authenticated( *, headers: Optional[Dict[str, str]] = None, data: Missing[UserPatchBodyType] = UNSET, - ) -> Response[PrivateUser]: - ... + ) -> Response[PrivateUser]: ... @overload def update_authenticated( @@ -142,8 +140,7 @@ def update_authenticated( location: Missing[str] = UNSET, hireable: Missing[bool] = UNSET, bio: Missing[str] = UNSET, - ) -> Response[PrivateUser]: - ... + ) -> Response[PrivateUser]: ... def update_authenticated( self, @@ -187,8 +184,7 @@ async def async_update_authenticated( *, headers: Optional[Dict[str, str]] = None, data: Missing[UserPatchBodyType] = UNSET, - ) -> Response[PrivateUser]: - ... + ) -> Response[PrivateUser]: ... @overload async def async_update_authenticated( @@ -204,8 +200,7 @@ async def async_update_authenticated( location: Missing[str] = UNSET, hireable: Missing[bool] = UNSET, bio: Missing[str] = UNSET, - ) -> Response[PrivateUser]: - ... + ) -> Response[PrivateUser]: ... async def async_update_authenticated( self, @@ -471,8 +466,7 @@ def set_primary_email_visibility_for_authenticated_user( *, headers: Optional[Dict[str, str]] = None, data: UserEmailVisibilityPatchBodyType, - ) -> Response[List[Email]]: - ... + ) -> Response[List[Email]]: ... @overload def set_primary_email_visibility_for_authenticated_user( @@ -481,8 +475,7 @@ def set_primary_email_visibility_for_authenticated_user( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, visibility: Literal["public", "private"], - ) -> Response[List[Email]]: - ... + ) -> Response[List[Email]]: ... def set_primary_email_visibility_for_authenticated_user( self, @@ -533,8 +526,7 @@ async def async_set_primary_email_visibility_for_authenticated_user( *, headers: Optional[Dict[str, str]] = None, data: UserEmailVisibilityPatchBodyType, - ) -> Response[List[Email]]: - ... + ) -> Response[List[Email]]: ... @overload async def async_set_primary_email_visibility_for_authenticated_user( @@ -543,8 +535,7 @@ async def async_set_primary_email_visibility_for_authenticated_user( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, visibility: Literal["public", "private"], - ) -> Response[List[Email]]: - ... + ) -> Response[List[Email]]: ... async def async_set_primary_email_visibility_for_authenticated_user( self, @@ -665,8 +656,7 @@ def add_email_for_authenticated_user( *, headers: Optional[Dict[str, str]] = None, data: Missing[Union[UserEmailsPostBodyOneof0Type, List[str], str]] = UNSET, - ) -> Response[List[Email]]: - ... + ) -> Response[List[Email]]: ... @overload def add_email_for_authenticated_user( @@ -675,8 +665,7 @@ def add_email_for_authenticated_user( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, emails: List[str], - ) -> Response[List[Email]]: - ... + ) -> Response[List[Email]]: ... def add_email_for_authenticated_user( self, @@ -729,8 +718,7 @@ async def async_add_email_for_authenticated_user( *, headers: Optional[Dict[str, str]] = None, data: Missing[Union[UserEmailsPostBodyOneof0Type, List[str], str]] = UNSET, - ) -> Response[List[Email]]: - ... + ) -> Response[List[Email]]: ... @overload async def async_add_email_for_authenticated_user( @@ -739,8 +727,7 @@ async def async_add_email_for_authenticated_user( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, emails: List[str], - ) -> Response[List[Email]]: - ... + ) -> Response[List[Email]]: ... async def async_add_email_for_authenticated_user( self, @@ -793,8 +780,7 @@ def delete_email_for_authenticated_user( *, headers: Optional[Dict[str, str]] = None, data: Missing[Union[UserEmailsDeleteBodyOneof0Type, List[str], str]] = UNSET, - ) -> Response: - ... + ) -> Response: ... @overload def delete_email_for_authenticated_user( @@ -803,8 +789,7 @@ def delete_email_for_authenticated_user( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, emails: List[str], - ) -> Response: - ... + ) -> Response: ... def delete_email_for_authenticated_user( self, @@ -851,8 +836,7 @@ async def async_delete_email_for_authenticated_user( *, headers: Optional[Dict[str, str]] = None, data: Missing[Union[UserEmailsDeleteBodyOneof0Type, List[str], str]] = UNSET, - ) -> Response: - ... + ) -> Response: ... @overload async def async_delete_email_for_authenticated_user( @@ -861,8 +845,7 @@ async def async_delete_email_for_authenticated_user( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, emails: List[str], - ) -> Response: - ... + ) -> Response: ... async def async_delete_email_for_authenticated_user( self, @@ -1262,8 +1245,7 @@ async def async_list_gpg_keys_for_authenticated_user( @overload def create_gpg_key_for_authenticated_user( self, *, headers: Optional[Dict[str, str]] = None, data: UserGpgKeysPostBodyType - ) -> Response[GpgKey]: - ... + ) -> Response[GpgKey]: ... @overload def create_gpg_key_for_authenticated_user( @@ -1273,8 +1255,7 @@ def create_gpg_key_for_authenticated_user( headers: Optional[Dict[str, str]] = None, name: Missing[str] = UNSET, armored_public_key: str, - ) -> Response[GpgKey]: - ... + ) -> Response[GpgKey]: ... def create_gpg_key_for_authenticated_user( self, @@ -1315,8 +1296,7 @@ def create_gpg_key_for_authenticated_user( @overload async def async_create_gpg_key_for_authenticated_user( self, *, headers: Optional[Dict[str, str]] = None, data: UserGpgKeysPostBodyType - ) -> Response[GpgKey]: - ... + ) -> Response[GpgKey]: ... @overload async def async_create_gpg_key_for_authenticated_user( @@ -1326,8 +1306,7 @@ async def async_create_gpg_key_for_authenticated_user( headers: Optional[Dict[str, str]] = None, name: Missing[str] = UNSET, armored_public_key: str, - ) -> Response[GpgKey]: - ... + ) -> Response[GpgKey]: ... async def async_create_gpg_key_for_authenticated_user( self, @@ -1542,8 +1521,7 @@ async def async_list_public_ssh_keys_for_authenticated_user( @overload def create_public_ssh_key_for_authenticated_user( self, *, headers: Optional[Dict[str, str]] = None, data: UserKeysPostBodyType - ) -> Response[Key]: - ... + ) -> Response[Key]: ... @overload def create_public_ssh_key_for_authenticated_user( @@ -1553,8 +1531,7 @@ def create_public_ssh_key_for_authenticated_user( headers: Optional[Dict[str, str]] = None, title: Missing[str] = UNSET, key: str, - ) -> Response[Key]: - ... + ) -> Response[Key]: ... def create_public_ssh_key_for_authenticated_user( self, @@ -1595,8 +1572,7 @@ def create_public_ssh_key_for_authenticated_user( @overload async def async_create_public_ssh_key_for_authenticated_user( self, *, headers: Optional[Dict[str, str]] = None, data: UserKeysPostBodyType - ) -> Response[Key]: - ... + ) -> Response[Key]: ... @overload async def async_create_public_ssh_key_for_authenticated_user( @@ -1606,8 +1582,7 @@ async def async_create_public_ssh_key_for_authenticated_user( headers: Optional[Dict[str, str]] = None, title: Missing[str] = UNSET, key: str, - ) -> Response[Key]: - ... + ) -> Response[Key]: ... async def async_create_public_ssh_key_for_authenticated_user( self, @@ -1893,8 +1868,7 @@ def add_social_account_for_authenticated_user( *, headers: Optional[Dict[str, str]] = None, data: UserSocialAccountsPostBodyType, - ) -> Response[List[SocialAccount]]: - ... + ) -> Response[List[SocialAccount]]: ... @overload def add_social_account_for_authenticated_user( @@ -1903,8 +1877,7 @@ def add_social_account_for_authenticated_user( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, account_urls: List[str], - ) -> Response[List[SocialAccount]]: - ... + ) -> Response[List[SocialAccount]]: ... def add_social_account_for_authenticated_user( self, @@ -1955,8 +1928,7 @@ async def async_add_social_account_for_authenticated_user( *, headers: Optional[Dict[str, str]] = None, data: UserSocialAccountsPostBodyType, - ) -> Response[List[SocialAccount]]: - ... + ) -> Response[List[SocialAccount]]: ... @overload async def async_add_social_account_for_authenticated_user( @@ -1965,8 +1937,7 @@ async def async_add_social_account_for_authenticated_user( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, account_urls: List[str], - ) -> Response[List[SocialAccount]]: - ... + ) -> Response[List[SocialAccount]]: ... async def async_add_social_account_for_authenticated_user( self, @@ -2017,8 +1988,7 @@ def delete_social_account_for_authenticated_user( *, headers: Optional[Dict[str, str]] = None, data: UserSocialAccountsDeleteBodyType, - ) -> Response: - ... + ) -> Response: ... @overload def delete_social_account_for_authenticated_user( @@ -2027,8 +1997,7 @@ def delete_social_account_for_authenticated_user( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, account_urls: List[str], - ) -> Response: - ... + ) -> Response: ... def delete_social_account_for_authenticated_user( self, @@ -2071,8 +2040,7 @@ async def async_delete_social_account_for_authenticated_user( *, headers: Optional[Dict[str, str]] = None, data: UserSocialAccountsDeleteBodyType, - ) -> Response: - ... + ) -> Response: ... @overload async def async_delete_social_account_for_authenticated_user( @@ -2081,8 +2049,7 @@ async def async_delete_social_account_for_authenticated_user( data: Literal[UNSET] = UNSET, headers: Optional[Dict[str, str]] = None, account_urls: List[str], - ) -> Response: - ... + ) -> Response: ... async def async_delete_social_account_for_authenticated_user( self, @@ -2195,8 +2162,7 @@ def create_ssh_signing_key_for_authenticated_user( *, headers: Optional[Dict[str, str]] = None, data: UserSshSigningKeysPostBodyType, - ) -> Response[SshSigningKey]: - ... + ) -> Response[SshSigningKey]: ... @overload def create_ssh_signing_key_for_authenticated_user( @@ -2206,8 +2172,7 @@ def create_ssh_signing_key_for_authenticated_user( headers: Optional[Dict[str, str]] = None, title: Missing[str] = UNSET, key: str, - ) -> Response[SshSigningKey]: - ... + ) -> Response[SshSigningKey]: ... def create_ssh_signing_key_for_authenticated_user( self, @@ -2256,8 +2221,7 @@ async def async_create_ssh_signing_key_for_authenticated_user( *, headers: Optional[Dict[str, str]] = None, data: UserSshSigningKeysPostBodyType, - ) -> Response[SshSigningKey]: - ... + ) -> Response[SshSigningKey]: ... @overload async def async_create_ssh_signing_key_for_authenticated_user( @@ -2267,8 +2231,7 @@ async def async_create_ssh_signing_key_for_authenticated_user( headers: Optional[Dict[str, str]] = None, title: Missing[str] = UNSET, key: str, - ) -> Response[SshSigningKey]: - ... + ) -> Response[SshSigningKey]: ... async def async_create_ssh_signing_key_for_authenticated_user( self, diff --git a/githubkit/versions/v2022_11_28/types/group_0000.py b/githubkit/versions/v2022_11_28/types/group_0000.py index 2d0574cc1..d4dcc05fe 100644 --- a/githubkit/versions/v2022_11_28/types/group_0000.py +++ b/githubkit/versions/v2022_11_28/types/group_0000.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_0001.py b/githubkit/versions/v2022_11_28/types/group_0001.py index 2eba93ee9..c2538905a 100644 --- a/githubkit/versions/v2022_11_28/types/group_0001.py +++ b/githubkit/versions/v2022_11_28/types/group_0001.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0002.py b/githubkit/versions/v2022_11_28/types/group_0002.py index 27dd9c802..3b6d886cf 100644 --- a/githubkit/versions/v2022_11_28/types/group_0002.py +++ b/githubkit/versions/v2022_11_28/types/group_0002.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0003.py b/githubkit/versions/v2022_11_28/types/group_0003.py index 5c475c239..d2cd2d88a 100644 --- a/githubkit/versions/v2022_11_28/types/group_0003.py +++ b/githubkit/versions/v2022_11_28/types/group_0003.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_0004.py b/githubkit/versions/v2022_11_28/types/group_0004.py index c87d4255d..963b14a07 100644 --- a/githubkit/versions/v2022_11_28/types/group_0004.py +++ b/githubkit/versions/v2022_11_28/types/group_0004.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0005.py b/githubkit/versions/v2022_11_28/types/group_0005.py index 7a728ba1d..fedf9bcf8 100644 --- a/githubkit/versions/v2022_11_28/types/group_0005.py +++ b/githubkit/versions/v2022_11_28/types/group_0005.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0006.py b/githubkit/versions/v2022_11_28/types/group_0006.py index 038eae772..4ef8233b0 100644 --- a/githubkit/versions/v2022_11_28/types/group_0006.py +++ b/githubkit/versions/v2022_11_28/types/group_0006.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_0007.py b/githubkit/versions/v2022_11_28/types/group_0007.py index b030bf153..e07685931 100644 --- a/githubkit/versions/v2022_11_28/types/group_0007.py +++ b/githubkit/versions/v2022_11_28/types/group_0007.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0008.py b/githubkit/versions/v2022_11_28/types/group_0008.py index 16fb872a4..ddecf7be9 100644 --- a/githubkit/versions/v2022_11_28/types/group_0008.py +++ b/githubkit/versions/v2022_11_28/types/group_0008.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0009.py b/githubkit/versions/v2022_11_28/types/group_0009.py index f99ab50b6..ac19c2eb1 100644 --- a/githubkit/versions/v2022_11_28/types/group_0009.py +++ b/githubkit/versions/v2022_11_28/types/group_0009.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/v2022_11_28/types/group_0010.py b/githubkit/versions/v2022_11_28/types/group_0010.py index 3e7e27d9f..51f0ddf81 100644 --- a/githubkit/versions/v2022_11_28/types/group_0010.py +++ b/githubkit/versions/v2022_11_28/types/group_0010.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/v2022_11_28/types/group_0011.py b/githubkit/versions/v2022_11_28/types/group_0011.py index 4b386245f..d9cddd087 100644 --- a/githubkit/versions/v2022_11_28/types/group_0011.py +++ b/githubkit/versions/v2022_11_28/types/group_0011.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0012.py b/githubkit/versions/v2022_11_28/types/group_0012.py index 78f965034..6e82bb1dd 100644 --- a/githubkit/versions/v2022_11_28/types/group_0012.py +++ b/githubkit/versions/v2022_11_28/types/group_0012.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0013.py b/githubkit/versions/v2022_11_28/types/group_0013.py index 1aee971b0..ec56f1ba2 100644 --- a/githubkit/versions/v2022_11_28/types/group_0013.py +++ b/githubkit/versions/v2022_11_28/types/group_0013.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0014.py b/githubkit/versions/v2022_11_28/types/group_0014.py index 2d2e6b59e..7cf53e3f3 100644 --- a/githubkit/versions/v2022_11_28/types/group_0014.py +++ b/githubkit/versions/v2022_11_28/types/group_0014.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0015.py b/githubkit/versions/v2022_11_28/types/group_0015.py index 11d7a0dd2..c05799441 100644 --- a/githubkit/versions/v2022_11_28/types/group_0015.py +++ b/githubkit/versions/v2022_11_28/types/group_0015.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0016.py b/githubkit/versions/v2022_11_28/types/group_0016.py index dd2225d7b..e9eb466a3 100644 --- a/githubkit/versions/v2022_11_28/types/group_0016.py +++ b/githubkit/versions/v2022_11_28/types/group_0016.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0017.py b/githubkit/versions/v2022_11_28/types/group_0017.py index ce4f55540..0f6b449a9 100644 --- a/githubkit/versions/v2022_11_28/types/group_0017.py +++ b/githubkit/versions/v2022_11_28/types/group_0017.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0018.py b/githubkit/versions/v2022_11_28/types/group_0018.py index 0575bc788..823ed4f9c 100644 --- a/githubkit/versions/v2022_11_28/types/group_0018.py +++ b/githubkit/versions/v2022_11_28/types/group_0018.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0019.py b/githubkit/versions/v2022_11_28/types/group_0019.py index 4acfc247a..722c7f6e3 100644 --- a/githubkit/versions/v2022_11_28/types/group_0019.py +++ b/githubkit/versions/v2022_11_28/types/group_0019.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0020.py b/githubkit/versions/v2022_11_28/types/group_0020.py index 6ed2bb2a6..08e7f10cd 100644 --- a/githubkit/versions/v2022_11_28/types/group_0020.py +++ b/githubkit/versions/v2022_11_28/types/group_0020.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0021.py b/githubkit/versions/v2022_11_28/types/group_0021.py index fe59ff79c..92dae5f1f 100644 --- a/githubkit/versions/v2022_11_28/types/group_0021.py +++ b/githubkit/versions/v2022_11_28/types/group_0021.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0022.py b/githubkit/versions/v2022_11_28/types/group_0022.py index 2b3824eb6..3cfd85640 100644 --- a/githubkit/versions/v2022_11_28/types/group_0022.py +++ b/githubkit/versions/v2022_11_28/types/group_0022.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0023.py b/githubkit/versions/v2022_11_28/types/group_0023.py index 5fbeba18f..0dbd28340 100644 --- a/githubkit/versions/v2022_11_28/types/group_0023.py +++ b/githubkit/versions/v2022_11_28/types/group_0023.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0024.py b/githubkit/versions/v2022_11_28/types/group_0024.py index 28eab8971..548561116 100644 --- a/githubkit/versions/v2022_11_28/types/group_0024.py +++ b/githubkit/versions/v2022_11_28/types/group_0024.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_0025.py b/githubkit/versions/v2022_11_28/types/group_0025.py index 3dae28a1d..9ef70e81a 100644 --- a/githubkit/versions/v2022_11_28/types/group_0025.py +++ b/githubkit/versions/v2022_11_28/types/group_0025.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0026.py b/githubkit/versions/v2022_11_28/types/group_0026.py index 3ba0ac866..02af52874 100644 --- a/githubkit/versions/v2022_11_28/types/group_0026.py +++ b/githubkit/versions/v2022_11_28/types/group_0026.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0027.py b/githubkit/versions/v2022_11_28/types/group_0027.py index 3d3af3725..2f462537e 100644 --- a/githubkit/versions/v2022_11_28/types/group_0027.py +++ b/githubkit/versions/v2022_11_28/types/group_0027.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0028.py b/githubkit/versions/v2022_11_28/types/group_0028.py index d76c78930..27881a3b9 100644 --- a/githubkit/versions/v2022_11_28/types/group_0028.py +++ b/githubkit/versions/v2022_11_28/types/group_0028.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0029.py b/githubkit/versions/v2022_11_28/types/group_0029.py index b7333802a..21b999722 100644 --- a/githubkit/versions/v2022_11_28/types/group_0029.py +++ b/githubkit/versions/v2022_11_28/types/group_0029.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0030.py b/githubkit/versions/v2022_11_28/types/group_0030.py index 3eb6abe32..8485ec934 100644 --- a/githubkit/versions/v2022_11_28/types/group_0030.py +++ b/githubkit/versions/v2022_11_28/types/group_0030.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0031.py b/githubkit/versions/v2022_11_28/types/group_0031.py index 7137589ba..e9191a2ed 100644 --- a/githubkit/versions/v2022_11_28/types/group_0031.py +++ b/githubkit/versions/v2022_11_28/types/group_0031.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0032.py b/githubkit/versions/v2022_11_28/types/group_0032.py index bde1a0389..b1b68d0be 100644 --- a/githubkit/versions/v2022_11_28/types/group_0032.py +++ b/githubkit/versions/v2022_11_28/types/group_0032.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0033.py b/githubkit/versions/v2022_11_28/types/group_0033.py index ee9f0d1f5..8a6080a74 100644 --- a/githubkit/versions/v2022_11_28/types/group_0033.py +++ b/githubkit/versions/v2022_11_28/types/group_0033.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0034.py b/githubkit/versions/v2022_11_28/types/group_0034.py index 955d99140..99f46095f 100644 --- a/githubkit/versions/v2022_11_28/types/group_0034.py +++ b/githubkit/versions/v2022_11_28/types/group_0034.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0035.py b/githubkit/versions/v2022_11_28/types/group_0035.py index 5ee90f329..fc50e56f0 100644 --- a/githubkit/versions/v2022_11_28/types/group_0035.py +++ b/githubkit/versions/v2022_11_28/types/group_0035.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0036.py b/githubkit/versions/v2022_11_28/types/group_0036.py index cde52dae6..cdc0af5f6 100644 --- a/githubkit/versions/v2022_11_28/types/group_0036.py +++ b/githubkit/versions/v2022_11_28/types/group_0036.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0037.py b/githubkit/versions/v2022_11_28/types/group_0037.py index 248123c09..8a6dba029 100644 --- a/githubkit/versions/v2022_11_28/types/group_0037.py +++ b/githubkit/versions/v2022_11_28/types/group_0037.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0038.py b/githubkit/versions/v2022_11_28/types/group_0038.py index 6dcb06052..82b875098 100644 --- a/githubkit/versions/v2022_11_28/types/group_0038.py +++ b/githubkit/versions/v2022_11_28/types/group_0038.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0039.py b/githubkit/versions/v2022_11_28/types/group_0039.py index 5db90a06b..41c7f4f76 100644 --- a/githubkit/versions/v2022_11_28/types/group_0039.py +++ b/githubkit/versions/v2022_11_28/types/group_0039.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0040.py b/githubkit/versions/v2022_11_28/types/group_0040.py index d4a405203..5ac6fb472 100644 --- a/githubkit/versions/v2022_11_28/types/group_0040.py +++ b/githubkit/versions/v2022_11_28/types/group_0040.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0041.py b/githubkit/versions/v2022_11_28/types/group_0041.py index b2c546a7a..4da3a72b5 100644 --- a/githubkit/versions/v2022_11_28/types/group_0041.py +++ b/githubkit/versions/v2022_11_28/types/group_0041.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0042.py b/githubkit/versions/v2022_11_28/types/group_0042.py index 9df7de86b..9310e581c 100644 --- a/githubkit/versions/v2022_11_28/types/group_0042.py +++ b/githubkit/versions/v2022_11_28/types/group_0042.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0043.py b/githubkit/versions/v2022_11_28/types/group_0043.py index fb0757a5e..69bf98302 100644 --- a/githubkit/versions/v2022_11_28/types/group_0043.py +++ b/githubkit/versions/v2022_11_28/types/group_0043.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0044.py b/githubkit/versions/v2022_11_28/types/group_0044.py index 3286cdb38..8cbd71cbc 100644 --- a/githubkit/versions/v2022_11_28/types/group_0044.py +++ b/githubkit/versions/v2022_11_28/types/group_0044.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/v2022_11_28/types/group_0045.py b/githubkit/versions/v2022_11_28/types/group_0045.py index d8d5bbb58..ffdc9e4da 100644 --- a/githubkit/versions/v2022_11_28/types/group_0045.py +++ b/githubkit/versions/v2022_11_28/types/group_0045.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0046.py b/githubkit/versions/v2022_11_28/types/group_0046.py index 515b512d6..e2e344d35 100644 --- a/githubkit/versions/v2022_11_28/types/group_0046.py +++ b/githubkit/versions/v2022_11_28/types/group_0046.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0047.py b/githubkit/versions/v2022_11_28/types/group_0047.py index 839bb5d87..6c558d28d 100644 --- a/githubkit/versions/v2022_11_28/types/group_0047.py +++ b/githubkit/versions/v2022_11_28/types/group_0047.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0048.py b/githubkit/versions/v2022_11_28/types/group_0048.py index beeb3799f..cbcba07f5 100644 --- a/githubkit/versions/v2022_11_28/types/group_0048.py +++ b/githubkit/versions/v2022_11_28/types/group_0048.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0049.py b/githubkit/versions/v2022_11_28/types/group_0049.py index e08217691..5220e6435 100644 --- a/githubkit/versions/v2022_11_28/types/group_0049.py +++ b/githubkit/versions/v2022_11_28/types/group_0049.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0050.py b/githubkit/versions/v2022_11_28/types/group_0050.py index b94984997..56d6a8e66 100644 --- a/githubkit/versions/v2022_11_28/types/group_0050.py +++ b/githubkit/versions/v2022_11_28/types/group_0050.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0051.py b/githubkit/versions/v2022_11_28/types/group_0051.py index b59be3f04..a8d103f0c 100644 --- a/githubkit/versions/v2022_11_28/types/group_0051.py +++ b/githubkit/versions/v2022_11_28/types/group_0051.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0052.py b/githubkit/versions/v2022_11_28/types/group_0052.py index be7b43224..25325d850 100644 --- a/githubkit/versions/v2022_11_28/types/group_0052.py +++ b/githubkit/versions/v2022_11_28/types/group_0052.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0053.py b/githubkit/versions/v2022_11_28/types/group_0053.py index 4a1105c2c..4ee4d69b1 100644 --- a/githubkit/versions/v2022_11_28/types/group_0053.py +++ b/githubkit/versions/v2022_11_28/types/group_0053.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0054.py b/githubkit/versions/v2022_11_28/types/group_0054.py index 47c24f4d0..a41742c81 100644 --- a/githubkit/versions/v2022_11_28/types/group_0054.py +++ b/githubkit/versions/v2022_11_28/types/group_0054.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0055.py b/githubkit/versions/v2022_11_28/types/group_0055.py index 3e16094c6..7eecb9b27 100644 --- a/githubkit/versions/v2022_11_28/types/group_0055.py +++ b/githubkit/versions/v2022_11_28/types/group_0055.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0056.py b/githubkit/versions/v2022_11_28/types/group_0056.py index 10914efa8..15df396e9 100644 --- a/githubkit/versions/v2022_11_28/types/group_0056.py +++ b/githubkit/versions/v2022_11_28/types/group_0056.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0057.py b/githubkit/versions/v2022_11_28/types/group_0057.py index bea51a6a8..dfaea724d 100644 --- a/githubkit/versions/v2022_11_28/types/group_0057.py +++ b/githubkit/versions/v2022_11_28/types/group_0057.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0058.py b/githubkit/versions/v2022_11_28/types/group_0058.py index 0b71b7af1..59dfc4ff1 100644 --- a/githubkit/versions/v2022_11_28/types/group_0058.py +++ b/githubkit/versions/v2022_11_28/types/group_0058.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0059.py b/githubkit/versions/v2022_11_28/types/group_0059.py index b1df90572..87512f917 100644 --- a/githubkit/versions/v2022_11_28/types/group_0059.py +++ b/githubkit/versions/v2022_11_28/types/group_0059.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0060.py b/githubkit/versions/v2022_11_28/types/group_0060.py index ff525b65c..ee668e8e5 100644 --- a/githubkit/versions/v2022_11_28/types/group_0060.py +++ b/githubkit/versions/v2022_11_28/types/group_0060.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0061.py b/githubkit/versions/v2022_11_28/types/group_0061.py index fe7f45e8f..c58767cc2 100644 --- a/githubkit/versions/v2022_11_28/types/group_0061.py +++ b/githubkit/versions/v2022_11_28/types/group_0061.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0062.py b/githubkit/versions/v2022_11_28/types/group_0062.py index aa4005540..63964f99e 100644 --- a/githubkit/versions/v2022_11_28/types/group_0062.py +++ b/githubkit/versions/v2022_11_28/types/group_0062.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0063.py b/githubkit/versions/v2022_11_28/types/group_0063.py index df04bfa63..cd3357955 100644 --- a/githubkit/versions/v2022_11_28/types/group_0063.py +++ b/githubkit/versions/v2022_11_28/types/group_0063.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_0064.py b/githubkit/versions/v2022_11_28/types/group_0064.py index a1508d084..8d1c6ab24 100644 --- a/githubkit/versions/v2022_11_28/types/group_0064.py +++ b/githubkit/versions/v2022_11_28/types/group_0064.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0065.py b/githubkit/versions/v2022_11_28/types/group_0065.py index 8097f55bb..9c5cf6d77 100644 --- a/githubkit/versions/v2022_11_28/types/group_0065.py +++ b/githubkit/versions/v2022_11_28/types/group_0065.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_0066.py b/githubkit/versions/v2022_11_28/types/group_0066.py index b5a5eb5a8..810cf055c 100644 --- a/githubkit/versions/v2022_11_28/types/group_0066.py +++ b/githubkit/versions/v2022_11_28/types/group_0066.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0067.py b/githubkit/versions/v2022_11_28/types/group_0067.py index d73152d6e..ad24eeb86 100644 --- a/githubkit/versions/v2022_11_28/types/group_0067.py +++ b/githubkit/versions/v2022_11_28/types/group_0067.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0068.py b/githubkit/versions/v2022_11_28/types/group_0068.py index dfc36c70c..1e0b0bcdc 100644 --- a/githubkit/versions/v2022_11_28/types/group_0068.py +++ b/githubkit/versions/v2022_11_28/types/group_0068.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0069.py b/githubkit/versions/v2022_11_28/types/group_0069.py index e50fb1619..21a5e9b0e 100644 --- a/githubkit/versions/v2022_11_28/types/group_0069.py +++ b/githubkit/versions/v2022_11_28/types/group_0069.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0070.py b/githubkit/versions/v2022_11_28/types/group_0070.py index 3b9e52e8c..167bf465c 100644 --- a/githubkit/versions/v2022_11_28/types/group_0070.py +++ b/githubkit/versions/v2022_11_28/types/group_0070.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0071.py b/githubkit/versions/v2022_11_28/types/group_0071.py index 9f7326c29..912427d39 100644 --- a/githubkit/versions/v2022_11_28/types/group_0071.py +++ b/githubkit/versions/v2022_11_28/types/group_0071.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0072.py b/githubkit/versions/v2022_11_28/types/group_0072.py index 41217ef5e..47e387234 100644 --- a/githubkit/versions/v2022_11_28/types/group_0072.py +++ b/githubkit/versions/v2022_11_28/types/group_0072.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_0073.py b/githubkit/versions/v2022_11_28/types/group_0073.py index 49b41457c..29ee61aee 100644 --- a/githubkit/versions/v2022_11_28/types/group_0073.py +++ b/githubkit/versions/v2022_11_28/types/group_0073.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0074.py b/githubkit/versions/v2022_11_28/types/group_0074.py index 17e1c896e..ff50a4403 100644 --- a/githubkit/versions/v2022_11_28/types/group_0074.py +++ b/githubkit/versions/v2022_11_28/types/group_0074.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0075.py b/githubkit/versions/v2022_11_28/types/group_0075.py index 863e664ab..1d4712e68 100644 --- a/githubkit/versions/v2022_11_28/types/group_0075.py +++ b/githubkit/versions/v2022_11_28/types/group_0075.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0076.py b/githubkit/versions/v2022_11_28/types/group_0076.py index 29ee10cbe..1b207a488 100644 --- a/githubkit/versions/v2022_11_28/types/group_0076.py +++ b/githubkit/versions/v2022_11_28/types/group_0076.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/v2022_11_28/types/group_0077.py b/githubkit/versions/v2022_11_28/types/group_0077.py index bf0d01af7..fb3981a7a 100644 --- a/githubkit/versions/v2022_11_28/types/group_0077.py +++ b/githubkit/versions/v2022_11_28/types/group_0077.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0078.py b/githubkit/versions/v2022_11_28/types/group_0078.py index 0c67ba3b4..8944e0c7e 100644 --- a/githubkit/versions/v2022_11_28/types/group_0078.py +++ b/githubkit/versions/v2022_11_28/types/group_0078.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0079.py b/githubkit/versions/v2022_11_28/types/group_0079.py index c5a73b3a9..e3c872b4f 100644 --- a/githubkit/versions/v2022_11_28/types/group_0079.py +++ b/githubkit/versions/v2022_11_28/types/group_0079.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0080.py b/githubkit/versions/v2022_11_28/types/group_0080.py index a75869929..396656d86 100644 --- a/githubkit/versions/v2022_11_28/types/group_0080.py +++ b/githubkit/versions/v2022_11_28/types/group_0080.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0081.py b/githubkit/versions/v2022_11_28/types/group_0081.py index a742be0df..a4c0e06b8 100644 --- a/githubkit/versions/v2022_11_28/types/group_0081.py +++ b/githubkit/versions/v2022_11_28/types/group_0081.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0082.py b/githubkit/versions/v2022_11_28/types/group_0082.py index c1c31e91d..10d54efb7 100644 --- a/githubkit/versions/v2022_11_28/types/group_0082.py +++ b/githubkit/versions/v2022_11_28/types/group_0082.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0083.py b/githubkit/versions/v2022_11_28/types/group_0083.py index cc84f31e0..e6c3cfe11 100644 --- a/githubkit/versions/v2022_11_28/types/group_0083.py +++ b/githubkit/versions/v2022_11_28/types/group_0083.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0084.py b/githubkit/versions/v2022_11_28/types/group_0084.py index fcfb4f55a..0659340f0 100644 --- a/githubkit/versions/v2022_11_28/types/group_0084.py +++ b/githubkit/versions/v2022_11_28/types/group_0084.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0085.py b/githubkit/versions/v2022_11_28/types/group_0085.py index cc41073e2..0c71e9bd1 100644 --- a/githubkit/versions/v2022_11_28/types/group_0085.py +++ b/githubkit/versions/v2022_11_28/types/group_0085.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0086.py b/githubkit/versions/v2022_11_28/types/group_0086.py index 6a28bfa47..3d044294e 100644 --- a/githubkit/versions/v2022_11_28/types/group_0086.py +++ b/githubkit/versions/v2022_11_28/types/group_0086.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0087.py b/githubkit/versions/v2022_11_28/types/group_0087.py index 47799fdfb..44f48f0e8 100644 --- a/githubkit/versions/v2022_11_28/types/group_0087.py +++ b/githubkit/versions/v2022_11_28/types/group_0087.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0088.py b/githubkit/versions/v2022_11_28/types/group_0088.py index d39f5a794..01e8a5904 100644 --- a/githubkit/versions/v2022_11_28/types/group_0088.py +++ b/githubkit/versions/v2022_11_28/types/group_0088.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0089.py b/githubkit/versions/v2022_11_28/types/group_0089.py index 2c03cbd80..98fa79e69 100644 --- a/githubkit/versions/v2022_11_28/types/group_0089.py +++ b/githubkit/versions/v2022_11_28/types/group_0089.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0090.py b/githubkit/versions/v2022_11_28/types/group_0090.py index d2306af59..b680f76fe 100644 --- a/githubkit/versions/v2022_11_28/types/group_0090.py +++ b/githubkit/versions/v2022_11_28/types/group_0090.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0091.py b/githubkit/versions/v2022_11_28/types/group_0091.py index 6cf85b8e7..d74d4bb7d 100644 --- a/githubkit/versions/v2022_11_28/types/group_0091.py +++ b/githubkit/versions/v2022_11_28/types/group_0091.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0092.py b/githubkit/versions/v2022_11_28/types/group_0092.py index 71b6a3192..3bcba3460 100644 --- a/githubkit/versions/v2022_11_28/types/group_0092.py +++ b/githubkit/versions/v2022_11_28/types/group_0092.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/v2022_11_28/types/group_0093.py b/githubkit/versions/v2022_11_28/types/group_0093.py index de9f3201d..467936f18 100644 --- a/githubkit/versions/v2022_11_28/types/group_0093.py +++ b/githubkit/versions/v2022_11_28/types/group_0093.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0094.py b/githubkit/versions/v2022_11_28/types/group_0094.py index f4769d515..cac6eb986 100644 --- a/githubkit/versions/v2022_11_28/types/group_0094.py +++ b/githubkit/versions/v2022_11_28/types/group_0094.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0095.py b/githubkit/versions/v2022_11_28/types/group_0095.py index 0f5cc512c..1f07db824 100644 --- a/githubkit/versions/v2022_11_28/types/group_0095.py +++ b/githubkit/versions/v2022_11_28/types/group_0095.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0096.py b/githubkit/versions/v2022_11_28/types/group_0096.py index 08dd04092..9c7866a74 100644 --- a/githubkit/versions/v2022_11_28/types/group_0096.py +++ b/githubkit/versions/v2022_11_28/types/group_0096.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0097.py b/githubkit/versions/v2022_11_28/types/group_0097.py index 03fc85e1d..08fec47c8 100644 --- a/githubkit/versions/v2022_11_28/types/group_0097.py +++ b/githubkit/versions/v2022_11_28/types/group_0097.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_0098.py b/githubkit/versions/v2022_11_28/types/group_0098.py index b7d12dfe9..d774c8142 100644 --- a/githubkit/versions/v2022_11_28/types/group_0098.py +++ b/githubkit/versions/v2022_11_28/types/group_0098.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0099.py b/githubkit/versions/v2022_11_28/types/group_0099.py index 746c147d6..cd0ab9986 100644 --- a/githubkit/versions/v2022_11_28/types/group_0099.py +++ b/githubkit/versions/v2022_11_28/types/group_0099.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict @@ -23,7 +22,9 @@ class RepositoryRulesetConditionsRepositoryNameTargetType(TypedDict): Parameters for a repository name condition """ - repository_name: RepositoryRulesetConditionsRepositoryNameTargetPropRepositoryNameType + repository_name: ( + RepositoryRulesetConditionsRepositoryNameTargetPropRepositoryNameType + ) __all__ = ("RepositoryRulesetConditionsRepositoryNameTargetType",) diff --git a/githubkit/versions/v2022_11_28/types/group_0100.py b/githubkit/versions/v2022_11_28/types/group_0100.py index 89e199b22..97c94cd05 100644 --- a/githubkit/versions/v2022_11_28/types/group_0100.py +++ b/githubkit/versions/v2022_11_28/types/group_0100.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0101.py b/githubkit/versions/v2022_11_28/types/group_0101.py index 41e5b7585..01fb1a4aa 100644 --- a/githubkit/versions/v2022_11_28/types/group_0101.py +++ b/githubkit/versions/v2022_11_28/types/group_0101.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0102.py b/githubkit/versions/v2022_11_28/types/group_0102.py index 889620af7..ed3567648 100644 --- a/githubkit/versions/v2022_11_28/types/group_0102.py +++ b/githubkit/versions/v2022_11_28/types/group_0102.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0103.py b/githubkit/versions/v2022_11_28/types/group_0103.py index 1f182251c..b62c5b9e9 100644 --- a/githubkit/versions/v2022_11_28/types/group_0103.py +++ b/githubkit/versions/v2022_11_28/types/group_0103.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict @@ -23,7 +22,9 @@ class RepositoryRulesetConditionsRepositoryPropertyTargetType(TypedDict): Parameters for a repository property condition """ - repository_property: RepositoryRulesetConditionsRepositoryPropertyTargetPropRepositoryPropertyType + repository_property: ( + RepositoryRulesetConditionsRepositoryPropertyTargetPropRepositoryPropertyType + ) __all__ = ("RepositoryRulesetConditionsRepositoryPropertyTargetType",) diff --git a/githubkit/versions/v2022_11_28/types/group_0104.py b/githubkit/versions/v2022_11_28/types/group_0104.py index c17339eb1..dd7d3ac84 100644 --- a/githubkit/versions/v2022_11_28/types/group_0104.py +++ b/githubkit/versions/v2022_11_28/types/group_0104.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0105.py b/githubkit/versions/v2022_11_28/types/group_0105.py index 7e0f7c78e..d01ca1a69 100644 --- a/githubkit/versions/v2022_11_28/types/group_0105.py +++ b/githubkit/versions/v2022_11_28/types/group_0105.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired @@ -25,7 +24,9 @@ class OrgRulesetConditionsOneof0Type(TypedDict): """ ref_name: NotRequired[RepositoryRulesetConditionsPropRefNameType] - repository_name: RepositoryRulesetConditionsRepositoryNameTargetPropRepositoryNameType + repository_name: ( + RepositoryRulesetConditionsRepositoryNameTargetPropRepositoryNameType + ) __all__ = ("OrgRulesetConditionsOneof0Type",) diff --git a/githubkit/versions/v2022_11_28/types/group_0106.py b/githubkit/versions/v2022_11_28/types/group_0106.py index 62a9a7cf5..98fc55f44 100644 --- a/githubkit/versions/v2022_11_28/types/group_0106.py +++ b/githubkit/versions/v2022_11_28/types/group_0106.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_0107.py b/githubkit/versions/v2022_11_28/types/group_0107.py index 6ab39cc30..17c388bdc 100644 --- a/githubkit/versions/v2022_11_28/types/group_0107.py +++ b/githubkit/versions/v2022_11_28/types/group_0107.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired @@ -25,7 +24,9 @@ class OrgRulesetConditionsOneof2Type(TypedDict): """ ref_name: NotRequired[RepositoryRulesetConditionsPropRefNameType] - repository_property: RepositoryRulesetConditionsRepositoryPropertyTargetPropRepositoryPropertyType + repository_property: ( + RepositoryRulesetConditionsRepositoryPropertyTargetPropRepositoryPropertyType + ) __all__ = ("OrgRulesetConditionsOneof2Type",) diff --git a/githubkit/versions/v2022_11_28/types/group_0108.py b/githubkit/versions/v2022_11_28/types/group_0108.py index b35693753..0d106dee1 100644 --- a/githubkit/versions/v2022_11_28/types/group_0108.py +++ b/githubkit/versions/v2022_11_28/types/group_0108.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0109.py b/githubkit/versions/v2022_11_28/types/group_0109.py index 9a5e11f0e..89dc207fb 100644 --- a/githubkit/versions/v2022_11_28/types/group_0109.py +++ b/githubkit/versions/v2022_11_28/types/group_0109.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0110.py b/githubkit/versions/v2022_11_28/types/group_0110.py index a30c96136..4de519b89 100644 --- a/githubkit/versions/v2022_11_28/types/group_0110.py +++ b/githubkit/versions/v2022_11_28/types/group_0110.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0111.py b/githubkit/versions/v2022_11_28/types/group_0111.py index a2fe1c3cb..c531884ff 100644 --- a/githubkit/versions/v2022_11_28/types/group_0111.py +++ b/githubkit/versions/v2022_11_28/types/group_0111.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0112.py b/githubkit/versions/v2022_11_28/types/group_0112.py index 0a9805a67..377f3cbcb 100644 --- a/githubkit/versions/v2022_11_28/types/group_0112.py +++ b/githubkit/versions/v2022_11_28/types/group_0112.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0113.py b/githubkit/versions/v2022_11_28/types/group_0113.py index 313179a40..dea611c2b 100644 --- a/githubkit/versions/v2022_11_28/types/group_0113.py +++ b/githubkit/versions/v2022_11_28/types/group_0113.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0114.py b/githubkit/versions/v2022_11_28/types/group_0114.py index 1a451d39c..d59529a73 100644 --- a/githubkit/versions/v2022_11_28/types/group_0114.py +++ b/githubkit/versions/v2022_11_28/types/group_0114.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0115.py b/githubkit/versions/v2022_11_28/types/group_0115.py index dec8d95cd..b2acbf90f 100644 --- a/githubkit/versions/v2022_11_28/types/group_0115.py +++ b/githubkit/versions/v2022_11_28/types/group_0115.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0116.py b/githubkit/versions/v2022_11_28/types/group_0116.py index f43c35217..e7afb0272 100644 --- a/githubkit/versions/v2022_11_28/types/group_0116.py +++ b/githubkit/versions/v2022_11_28/types/group_0116.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0117.py b/githubkit/versions/v2022_11_28/types/group_0117.py index ae1f59f5a..0c90b2831 100644 --- a/githubkit/versions/v2022_11_28/types/group_0117.py +++ b/githubkit/versions/v2022_11_28/types/group_0117.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0118.py b/githubkit/versions/v2022_11_28/types/group_0118.py index 7d0841077..96e25c35c 100644 --- a/githubkit/versions/v2022_11_28/types/group_0118.py +++ b/githubkit/versions/v2022_11_28/types/group_0118.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0119.py b/githubkit/versions/v2022_11_28/types/group_0119.py index 3a7122a27..097d2b1ad 100644 --- a/githubkit/versions/v2022_11_28/types/group_0119.py +++ b/githubkit/versions/v2022_11_28/types/group_0119.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0120.py b/githubkit/versions/v2022_11_28/types/group_0120.py index 9a52d3c14..5155c42d7 100644 --- a/githubkit/versions/v2022_11_28/types/group_0120.py +++ b/githubkit/versions/v2022_11_28/types/group_0120.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0121.py b/githubkit/versions/v2022_11_28/types/group_0121.py index fa90745fb..65503cc26 100644 --- a/githubkit/versions/v2022_11_28/types/group_0121.py +++ b/githubkit/versions/v2022_11_28/types/group_0121.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0122.py b/githubkit/versions/v2022_11_28/types/group_0122.py index 13133a9fe..e6f0aad0e 100644 --- a/githubkit/versions/v2022_11_28/types/group_0122.py +++ b/githubkit/versions/v2022_11_28/types/group_0122.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0123.py b/githubkit/versions/v2022_11_28/types/group_0123.py index 9eab546c8..6ca4bc8f3 100644 --- a/githubkit/versions/v2022_11_28/types/group_0123.py +++ b/githubkit/versions/v2022_11_28/types/group_0123.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0124.py b/githubkit/versions/v2022_11_28/types/group_0124.py index 36c5b2e3e..ad361198d 100644 --- a/githubkit/versions/v2022_11_28/types/group_0124.py +++ b/githubkit/versions/v2022_11_28/types/group_0124.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0125.py b/githubkit/versions/v2022_11_28/types/group_0125.py index 6d8dd51d3..6785aebe5 100644 --- a/githubkit/versions/v2022_11_28/types/group_0125.py +++ b/githubkit/versions/v2022_11_28/types/group_0125.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0126.py b/githubkit/versions/v2022_11_28/types/group_0126.py index e4dda6785..6ba13ab75 100644 --- a/githubkit/versions/v2022_11_28/types/group_0126.py +++ b/githubkit/versions/v2022_11_28/types/group_0126.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0127.py b/githubkit/versions/v2022_11_28/types/group_0127.py index 384330d11..9b6b95d4b 100644 --- a/githubkit/versions/v2022_11_28/types/group_0127.py +++ b/githubkit/versions/v2022_11_28/types/group_0127.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0128.py b/githubkit/versions/v2022_11_28/types/group_0128.py index b15ab9ab9..30301fe0d 100644 --- a/githubkit/versions/v2022_11_28/types/group_0128.py +++ b/githubkit/versions/v2022_11_28/types/group_0128.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_0129.py b/githubkit/versions/v2022_11_28/types/group_0129.py index 45ae29592..368c6d030 100644 --- a/githubkit/versions/v2022_11_28/types/group_0129.py +++ b/githubkit/versions/v2022_11_28/types/group_0129.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0130.py b/githubkit/versions/v2022_11_28/types/group_0130.py index 8d6a47216..a3dc145bb 100644 --- a/githubkit/versions/v2022_11_28/types/group_0130.py +++ b/githubkit/versions/v2022_11_28/types/group_0130.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0131.py b/githubkit/versions/v2022_11_28/types/group_0131.py index c9b218040..bade33426 100644 --- a/githubkit/versions/v2022_11_28/types/group_0131.py +++ b/githubkit/versions/v2022_11_28/types/group_0131.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0132.py b/githubkit/versions/v2022_11_28/types/group_0132.py index 859283cff..d09db534f 100644 --- a/githubkit/versions/v2022_11_28/types/group_0132.py +++ b/githubkit/versions/v2022_11_28/types/group_0132.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0133.py b/githubkit/versions/v2022_11_28/types/group_0133.py index c968a1add..01706cb92 100644 --- a/githubkit/versions/v2022_11_28/types/group_0133.py +++ b/githubkit/versions/v2022_11_28/types/group_0133.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0134.py b/githubkit/versions/v2022_11_28/types/group_0134.py index bfc2d8c3d..376a8cbd4 100644 --- a/githubkit/versions/v2022_11_28/types/group_0134.py +++ b/githubkit/versions/v2022_11_28/types/group_0134.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0135.py b/githubkit/versions/v2022_11_28/types/group_0135.py index dd13c7d29..dc605167a 100644 --- a/githubkit/versions/v2022_11_28/types/group_0135.py +++ b/githubkit/versions/v2022_11_28/types/group_0135.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0136.py b/githubkit/versions/v2022_11_28/types/group_0136.py index 411f45d54..b49498930 100644 --- a/githubkit/versions/v2022_11_28/types/group_0136.py +++ b/githubkit/versions/v2022_11_28/types/group_0136.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0137.py b/githubkit/versions/v2022_11_28/types/group_0137.py index 72222a7e2..94e387ee3 100644 --- a/githubkit/versions/v2022_11_28/types/group_0137.py +++ b/githubkit/versions/v2022_11_28/types/group_0137.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_0138.py b/githubkit/versions/v2022_11_28/types/group_0138.py index 9617a09fa..cac22c41a 100644 --- a/githubkit/versions/v2022_11_28/types/group_0138.py +++ b/githubkit/versions/v2022_11_28/types/group_0138.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0139.py b/githubkit/versions/v2022_11_28/types/group_0139.py index 32ba5da84..15a19a09d 100644 --- a/githubkit/versions/v2022_11_28/types/group_0139.py +++ b/githubkit/versions/v2022_11_28/types/group_0139.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0140.py b/githubkit/versions/v2022_11_28/types/group_0140.py index e61bf04fc..fe5be376f 100644 --- a/githubkit/versions/v2022_11_28/types/group_0140.py +++ b/githubkit/versions/v2022_11_28/types/group_0140.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0141.py b/githubkit/versions/v2022_11_28/types/group_0141.py index 5d5bd30a4..5f9f36e7a 100644 --- a/githubkit/versions/v2022_11_28/types/group_0141.py +++ b/githubkit/versions/v2022_11_28/types/group_0141.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0142.py b/githubkit/versions/v2022_11_28/types/group_0142.py index f57088b9c..e8289dbb3 100644 --- a/githubkit/versions/v2022_11_28/types/group_0142.py +++ b/githubkit/versions/v2022_11_28/types/group_0142.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0143.py b/githubkit/versions/v2022_11_28/types/group_0143.py index e22dfee0e..4e77006cd 100644 --- a/githubkit/versions/v2022_11_28/types/group_0143.py +++ b/githubkit/versions/v2022_11_28/types/group_0143.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0144.py b/githubkit/versions/v2022_11_28/types/group_0144.py index 9d0354a02..201ca0a17 100644 --- a/githubkit/versions/v2022_11_28/types/group_0144.py +++ b/githubkit/versions/v2022_11_28/types/group_0144.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0145.py b/githubkit/versions/v2022_11_28/types/group_0145.py index c3703cf72..a4bd772e4 100644 --- a/githubkit/versions/v2022_11_28/types/group_0145.py +++ b/githubkit/versions/v2022_11_28/types/group_0145.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0146.py b/githubkit/versions/v2022_11_28/types/group_0146.py index ec9a85dc6..e092b799e 100644 --- a/githubkit/versions/v2022_11_28/types/group_0146.py +++ b/githubkit/versions/v2022_11_28/types/group_0146.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0147.py b/githubkit/versions/v2022_11_28/types/group_0147.py index d78bb1f4a..220768fca 100644 --- a/githubkit/versions/v2022_11_28/types/group_0147.py +++ b/githubkit/versions/v2022_11_28/types/group_0147.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0148.py b/githubkit/versions/v2022_11_28/types/group_0148.py index bd976f02b..d23a9ab67 100644 --- a/githubkit/versions/v2022_11_28/types/group_0148.py +++ b/githubkit/versions/v2022_11_28/types/group_0148.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0149.py b/githubkit/versions/v2022_11_28/types/group_0149.py index 50f3fe059..7ed43f19c 100644 --- a/githubkit/versions/v2022_11_28/types/group_0149.py +++ b/githubkit/versions/v2022_11_28/types/group_0149.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0150.py b/githubkit/versions/v2022_11_28/types/group_0150.py index e5bb4751c..7564a62f1 100644 --- a/githubkit/versions/v2022_11_28/types/group_0150.py +++ b/githubkit/versions/v2022_11_28/types/group_0150.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0151.py b/githubkit/versions/v2022_11_28/types/group_0151.py index 08ad89b5b..f5e613b2a 100644 --- a/githubkit/versions/v2022_11_28/types/group_0151.py +++ b/githubkit/versions/v2022_11_28/types/group_0151.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0152.py b/githubkit/versions/v2022_11_28/types/group_0152.py index 210f47068..0ce66281a 100644 --- a/githubkit/versions/v2022_11_28/types/group_0152.py +++ b/githubkit/versions/v2022_11_28/types/group_0152.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_0153.py b/githubkit/versions/v2022_11_28/types/group_0153.py index baac6ffea..1ba8803f8 100644 --- a/githubkit/versions/v2022_11_28/types/group_0153.py +++ b/githubkit/versions/v2022_11_28/types/group_0153.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0154.py b/githubkit/versions/v2022_11_28/types/group_0154.py index 5b93d3f10..6d51498cc 100644 --- a/githubkit/versions/v2022_11_28/types/group_0154.py +++ b/githubkit/versions/v2022_11_28/types/group_0154.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0155.py b/githubkit/versions/v2022_11_28/types/group_0155.py index 93448daf3..61cc52d83 100644 --- a/githubkit/versions/v2022_11_28/types/group_0155.py +++ b/githubkit/versions/v2022_11_28/types/group_0155.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0156.py b/githubkit/versions/v2022_11_28/types/group_0156.py index c109749f4..e8df7b2a9 100644 --- a/githubkit/versions/v2022_11_28/types/group_0156.py +++ b/githubkit/versions/v2022_11_28/types/group_0156.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0157.py b/githubkit/versions/v2022_11_28/types/group_0157.py index e6005a71e..7d6ae5032 100644 --- a/githubkit/versions/v2022_11_28/types/group_0157.py +++ b/githubkit/versions/v2022_11_28/types/group_0157.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0158.py b/githubkit/versions/v2022_11_28/types/group_0158.py index 75dee1658..eb13c7e2f 100644 --- a/githubkit/versions/v2022_11_28/types/group_0158.py +++ b/githubkit/versions/v2022_11_28/types/group_0158.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0159.py b/githubkit/versions/v2022_11_28/types/group_0159.py index c7f440eb2..e80d7d2e7 100644 --- a/githubkit/versions/v2022_11_28/types/group_0159.py +++ b/githubkit/versions/v2022_11_28/types/group_0159.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0160.py b/githubkit/versions/v2022_11_28/types/group_0160.py index fa9890576..7678cad21 100644 --- a/githubkit/versions/v2022_11_28/types/group_0160.py +++ b/githubkit/versions/v2022_11_28/types/group_0160.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0161.py b/githubkit/versions/v2022_11_28/types/group_0161.py index 707392323..30c5bf1cd 100644 --- a/githubkit/versions/v2022_11_28/types/group_0161.py +++ b/githubkit/versions/v2022_11_28/types/group_0161.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0162.py b/githubkit/versions/v2022_11_28/types/group_0162.py index a0c391bff..78fc3d071 100644 --- a/githubkit/versions/v2022_11_28/types/group_0162.py +++ b/githubkit/versions/v2022_11_28/types/group_0162.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0163.py b/githubkit/versions/v2022_11_28/types/group_0163.py index 6d7164bae..ee9ce43f6 100644 --- a/githubkit/versions/v2022_11_28/types/group_0163.py +++ b/githubkit/versions/v2022_11_28/types/group_0163.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0164.py b/githubkit/versions/v2022_11_28/types/group_0164.py index c5810d8b7..a96ab7d1f 100644 --- a/githubkit/versions/v2022_11_28/types/group_0164.py +++ b/githubkit/versions/v2022_11_28/types/group_0164.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0165.py b/githubkit/versions/v2022_11_28/types/group_0165.py index fe3dd8458..909bb75c8 100644 --- a/githubkit/versions/v2022_11_28/types/group_0165.py +++ b/githubkit/versions/v2022_11_28/types/group_0165.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0166.py b/githubkit/versions/v2022_11_28/types/group_0166.py index 8a19c1723..9ed90361d 100644 --- a/githubkit/versions/v2022_11_28/types/group_0166.py +++ b/githubkit/versions/v2022_11_28/types/group_0166.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0167.py b/githubkit/versions/v2022_11_28/types/group_0167.py index 93034c654..eabae99df 100644 --- a/githubkit/versions/v2022_11_28/types/group_0167.py +++ b/githubkit/versions/v2022_11_28/types/group_0167.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0168.py b/githubkit/versions/v2022_11_28/types/group_0168.py index b1ccafd77..c1dc65752 100644 --- a/githubkit/versions/v2022_11_28/types/group_0168.py +++ b/githubkit/versions/v2022_11_28/types/group_0168.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0169.py b/githubkit/versions/v2022_11_28/types/group_0169.py index 146c78a75..6e05dc2ea 100644 --- a/githubkit/versions/v2022_11_28/types/group_0169.py +++ b/githubkit/versions/v2022_11_28/types/group_0169.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0170.py b/githubkit/versions/v2022_11_28/types/group_0170.py index 71197b4b0..7a79353a1 100644 --- a/githubkit/versions/v2022_11_28/types/group_0170.py +++ b/githubkit/versions/v2022_11_28/types/group_0170.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_0171.py b/githubkit/versions/v2022_11_28/types/group_0171.py index c434cd846..10dea8dbf 100644 --- a/githubkit/versions/v2022_11_28/types/group_0171.py +++ b/githubkit/versions/v2022_11_28/types/group_0171.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0172.py b/githubkit/versions/v2022_11_28/types/group_0172.py index f2e8371c8..8b6890539 100644 --- a/githubkit/versions/v2022_11_28/types/group_0172.py +++ b/githubkit/versions/v2022_11_28/types/group_0172.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0173.py b/githubkit/versions/v2022_11_28/types/group_0173.py index c4708f772..4ef048314 100644 --- a/githubkit/versions/v2022_11_28/types/group_0173.py +++ b/githubkit/versions/v2022_11_28/types/group_0173.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0174.py b/githubkit/versions/v2022_11_28/types/group_0174.py index 983478625..de484a510 100644 --- a/githubkit/versions/v2022_11_28/types/group_0174.py +++ b/githubkit/versions/v2022_11_28/types/group_0174.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_0175.py b/githubkit/versions/v2022_11_28/types/group_0175.py index 716c39449..9826fcbf1 100644 --- a/githubkit/versions/v2022_11_28/types/group_0175.py +++ b/githubkit/versions/v2022_11_28/types/group_0175.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0176.py b/githubkit/versions/v2022_11_28/types/group_0176.py index 73a2bacd5..0c14fcfe8 100644 --- a/githubkit/versions/v2022_11_28/types/group_0176.py +++ b/githubkit/versions/v2022_11_28/types/group_0176.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/v2022_11_28/types/group_0177.py b/githubkit/versions/v2022_11_28/types/group_0177.py index 45ec0ddf0..363e6ac74 100644 --- a/githubkit/versions/v2022_11_28/types/group_0177.py +++ b/githubkit/versions/v2022_11_28/types/group_0177.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/v2022_11_28/types/group_0178.py b/githubkit/versions/v2022_11_28/types/group_0178.py index d568683ab..288361b56 100644 --- a/githubkit/versions/v2022_11_28/types/group_0178.py +++ b/githubkit/versions/v2022_11_28/types/group_0178.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_0179.py b/githubkit/versions/v2022_11_28/types/group_0179.py index 3b7b5ca27..6b7e4ad5c 100644 --- a/githubkit/versions/v2022_11_28/types/group_0179.py +++ b/githubkit/versions/v2022_11_28/types/group_0179.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_0180.py b/githubkit/versions/v2022_11_28/types/group_0180.py index 5c53fb0e7..7f8f1aebd 100644 --- a/githubkit/versions/v2022_11_28/types/group_0180.py +++ b/githubkit/versions/v2022_11_28/types/group_0180.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0181.py b/githubkit/versions/v2022_11_28/types/group_0181.py index 60312ea68..ce7374427 100644 --- a/githubkit/versions/v2022_11_28/types/group_0181.py +++ b/githubkit/versions/v2022_11_28/types/group_0181.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0182.py b/githubkit/versions/v2022_11_28/types/group_0182.py index 59a682062..41d6c9f4d 100644 --- a/githubkit/versions/v2022_11_28/types/group_0182.py +++ b/githubkit/versions/v2022_11_28/types/group_0182.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/v2022_11_28/types/group_0183.py b/githubkit/versions/v2022_11_28/types/group_0183.py index e706348f2..1b9f83a3d 100644 --- a/githubkit/versions/v2022_11_28/types/group_0183.py +++ b/githubkit/versions/v2022_11_28/types/group_0183.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0184.py b/githubkit/versions/v2022_11_28/types/group_0184.py index 3bb080907..2c40ae190 100644 --- a/githubkit/versions/v2022_11_28/types/group_0184.py +++ b/githubkit/versions/v2022_11_28/types/group_0184.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_0185.py b/githubkit/versions/v2022_11_28/types/group_0185.py index f19b7a4d2..f8976fca1 100644 --- a/githubkit/versions/v2022_11_28/types/group_0185.py +++ b/githubkit/versions/v2022_11_28/types/group_0185.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/v2022_11_28/types/group_0186.py b/githubkit/versions/v2022_11_28/types/group_0186.py index 6196bde70..2ccc1b9e2 100644 --- a/githubkit/versions/v2022_11_28/types/group_0186.py +++ b/githubkit/versions/v2022_11_28/types/group_0186.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_0187.py b/githubkit/versions/v2022_11_28/types/group_0187.py index cb3f58f99..044f0c41e 100644 --- a/githubkit/versions/v2022_11_28/types/group_0187.py +++ b/githubkit/versions/v2022_11_28/types/group_0187.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0188.py b/githubkit/versions/v2022_11_28/types/group_0188.py index c7f111078..a26a98c3d 100644 --- a/githubkit/versions/v2022_11_28/types/group_0188.py +++ b/githubkit/versions/v2022_11_28/types/group_0188.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0189.py b/githubkit/versions/v2022_11_28/types/group_0189.py index 8aabfef46..874e02978 100644 --- a/githubkit/versions/v2022_11_28/types/group_0189.py +++ b/githubkit/versions/v2022_11_28/types/group_0189.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0190.py b/githubkit/versions/v2022_11_28/types/group_0190.py index ac7ffcead..82fbb570d 100644 --- a/githubkit/versions/v2022_11_28/types/group_0190.py +++ b/githubkit/versions/v2022_11_28/types/group_0190.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0191.py b/githubkit/versions/v2022_11_28/types/group_0191.py index f9f102498..7cfb89a3b 100644 --- a/githubkit/versions/v2022_11_28/types/group_0191.py +++ b/githubkit/versions/v2022_11_28/types/group_0191.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0192.py b/githubkit/versions/v2022_11_28/types/group_0192.py index 0bbc4ea42..55fea3f5a 100644 --- a/githubkit/versions/v2022_11_28/types/group_0192.py +++ b/githubkit/versions/v2022_11_28/types/group_0192.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0193.py b/githubkit/versions/v2022_11_28/types/group_0193.py index 8a1b5156d..d8b27b24f 100644 --- a/githubkit/versions/v2022_11_28/types/group_0193.py +++ b/githubkit/versions/v2022_11_28/types/group_0193.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0194.py b/githubkit/versions/v2022_11_28/types/group_0194.py index 9cd8f62e2..79876b6af 100644 --- a/githubkit/versions/v2022_11_28/types/group_0194.py +++ b/githubkit/versions/v2022_11_28/types/group_0194.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0195.py b/githubkit/versions/v2022_11_28/types/group_0195.py index a542b0b2b..5365c16d9 100644 --- a/githubkit/versions/v2022_11_28/types/group_0195.py +++ b/githubkit/versions/v2022_11_28/types/group_0195.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0196.py b/githubkit/versions/v2022_11_28/types/group_0196.py index 7583a3915..a217f8af1 100644 --- a/githubkit/versions/v2022_11_28/types/group_0196.py +++ b/githubkit/versions/v2022_11_28/types/group_0196.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0197.py b/githubkit/versions/v2022_11_28/types/group_0197.py index b538ecf5d..0cadd6e42 100644 --- a/githubkit/versions/v2022_11_28/types/group_0197.py +++ b/githubkit/versions/v2022_11_28/types/group_0197.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0198.py b/githubkit/versions/v2022_11_28/types/group_0198.py index e64b16ec0..cdbbfb7fa 100644 --- a/githubkit/versions/v2022_11_28/types/group_0198.py +++ b/githubkit/versions/v2022_11_28/types/group_0198.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0199.py b/githubkit/versions/v2022_11_28/types/group_0199.py index c9c4ccf6b..83fe48476 100644 --- a/githubkit/versions/v2022_11_28/types/group_0199.py +++ b/githubkit/versions/v2022_11_28/types/group_0199.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0200.py b/githubkit/versions/v2022_11_28/types/group_0200.py index d5189575a..1df4620a0 100644 --- a/githubkit/versions/v2022_11_28/types/group_0200.py +++ b/githubkit/versions/v2022_11_28/types/group_0200.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_0201.py b/githubkit/versions/v2022_11_28/types/group_0201.py index e230b9619..995d8ab46 100644 --- a/githubkit/versions/v2022_11_28/types/group_0201.py +++ b/githubkit/versions/v2022_11_28/types/group_0201.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_0202.py b/githubkit/versions/v2022_11_28/types/group_0202.py index 40329fc77..218ccba47 100644 --- a/githubkit/versions/v2022_11_28/types/group_0202.py +++ b/githubkit/versions/v2022_11_28/types/group_0202.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0203.py b/githubkit/versions/v2022_11_28/types/group_0203.py index f5bf8d9fd..6e2d05d46 100644 --- a/githubkit/versions/v2022_11_28/types/group_0203.py +++ b/githubkit/versions/v2022_11_28/types/group_0203.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/v2022_11_28/types/group_0204.py b/githubkit/versions/v2022_11_28/types/group_0204.py index dd9bbae02..e1c93e03b 100644 --- a/githubkit/versions/v2022_11_28/types/group_0204.py +++ b/githubkit/versions/v2022_11_28/types/group_0204.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0205.py b/githubkit/versions/v2022_11_28/types/group_0205.py index 67a6f4cd4..9ee1ca87f 100644 --- a/githubkit/versions/v2022_11_28/types/group_0205.py +++ b/githubkit/versions/v2022_11_28/types/group_0205.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0206.py b/githubkit/versions/v2022_11_28/types/group_0206.py index 542b8639d..896a0e9a1 100644 --- a/githubkit/versions/v2022_11_28/types/group_0206.py +++ b/githubkit/versions/v2022_11_28/types/group_0206.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0207.py b/githubkit/versions/v2022_11_28/types/group_0207.py index a7c7b210c..744ca44c0 100644 --- a/githubkit/versions/v2022_11_28/types/group_0207.py +++ b/githubkit/versions/v2022_11_28/types/group_0207.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0208.py b/githubkit/versions/v2022_11_28/types/group_0208.py index bd4282d35..5ab5687fb 100644 --- a/githubkit/versions/v2022_11_28/types/group_0208.py +++ b/githubkit/versions/v2022_11_28/types/group_0208.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0209.py b/githubkit/versions/v2022_11_28/types/group_0209.py index fd2af88c8..064aa0ae7 100644 --- a/githubkit/versions/v2022_11_28/types/group_0209.py +++ b/githubkit/versions/v2022_11_28/types/group_0209.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0210.py b/githubkit/versions/v2022_11_28/types/group_0210.py index e45082f09..eb2d68457 100644 --- a/githubkit/versions/v2022_11_28/types/group_0210.py +++ b/githubkit/versions/v2022_11_28/types/group_0210.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0211.py b/githubkit/versions/v2022_11_28/types/group_0211.py index 971118047..f268d40fc 100644 --- a/githubkit/versions/v2022_11_28/types/group_0211.py +++ b/githubkit/versions/v2022_11_28/types/group_0211.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0212.py b/githubkit/versions/v2022_11_28/types/group_0212.py index a5a0ab93c..e11b7c39f 100644 --- a/githubkit/versions/v2022_11_28/types/group_0212.py +++ b/githubkit/versions/v2022_11_28/types/group_0212.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0213.py b/githubkit/versions/v2022_11_28/types/group_0213.py index 0bfc7148a..9229e866d 100644 --- a/githubkit/versions/v2022_11_28/types/group_0213.py +++ b/githubkit/versions/v2022_11_28/types/group_0213.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0214.py b/githubkit/versions/v2022_11_28/types/group_0214.py index 5c6812274..558eec47e 100644 --- a/githubkit/versions/v2022_11_28/types/group_0214.py +++ b/githubkit/versions/v2022_11_28/types/group_0214.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0215.py b/githubkit/versions/v2022_11_28/types/group_0215.py index 0ed7ece27..dc094331f 100644 --- a/githubkit/versions/v2022_11_28/types/group_0215.py +++ b/githubkit/versions/v2022_11_28/types/group_0215.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0216.py b/githubkit/versions/v2022_11_28/types/group_0216.py index a1a52e7c8..347fbc58c 100644 --- a/githubkit/versions/v2022_11_28/types/group_0216.py +++ b/githubkit/versions/v2022_11_28/types/group_0216.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0217.py b/githubkit/versions/v2022_11_28/types/group_0217.py index 18153cac9..b23bb371e 100644 --- a/githubkit/versions/v2022_11_28/types/group_0217.py +++ b/githubkit/versions/v2022_11_28/types/group_0217.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0218.py b/githubkit/versions/v2022_11_28/types/group_0218.py index c9de1f8fc..18ab3b111 100644 --- a/githubkit/versions/v2022_11_28/types/group_0218.py +++ b/githubkit/versions/v2022_11_28/types/group_0218.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/v2022_11_28/types/group_0219.py b/githubkit/versions/v2022_11_28/types/group_0219.py index fe99f4684..ee3b791db 100644 --- a/githubkit/versions/v2022_11_28/types/group_0219.py +++ b/githubkit/versions/v2022_11_28/types/group_0219.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0220.py b/githubkit/versions/v2022_11_28/types/group_0220.py index f9c2a9302..2df578d2e 100644 --- a/githubkit/versions/v2022_11_28/types/group_0220.py +++ b/githubkit/versions/v2022_11_28/types/group_0220.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0221.py b/githubkit/versions/v2022_11_28/types/group_0221.py index 3b42d7195..8a5125ca7 100644 --- a/githubkit/versions/v2022_11_28/types/group_0221.py +++ b/githubkit/versions/v2022_11_28/types/group_0221.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0222.py b/githubkit/versions/v2022_11_28/types/group_0222.py index efb1d2d9c..d8f2d90e7 100644 --- a/githubkit/versions/v2022_11_28/types/group_0222.py +++ b/githubkit/versions/v2022_11_28/types/group_0222.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0223.py b/githubkit/versions/v2022_11_28/types/group_0223.py index 810ea1c4f..67d3310f1 100644 --- a/githubkit/versions/v2022_11_28/types/group_0223.py +++ b/githubkit/versions/v2022_11_28/types/group_0223.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/v2022_11_28/types/group_0224.py b/githubkit/versions/v2022_11_28/types/group_0224.py index b7ee9cf99..e7561bbbb 100644 --- a/githubkit/versions/v2022_11_28/types/group_0224.py +++ b/githubkit/versions/v2022_11_28/types/group_0224.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0225.py b/githubkit/versions/v2022_11_28/types/group_0225.py index aaad6d09c..d17d0c019 100644 --- a/githubkit/versions/v2022_11_28/types/group_0225.py +++ b/githubkit/versions/v2022_11_28/types/group_0225.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0226.py b/githubkit/versions/v2022_11_28/types/group_0226.py index d1c7d0d4a..687e7acd0 100644 --- a/githubkit/versions/v2022_11_28/types/group_0226.py +++ b/githubkit/versions/v2022_11_28/types/group_0226.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0227.py b/githubkit/versions/v2022_11_28/types/group_0227.py index d4e40deba..1a34a23a4 100644 --- a/githubkit/versions/v2022_11_28/types/group_0227.py +++ b/githubkit/versions/v2022_11_28/types/group_0227.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0228.py b/githubkit/versions/v2022_11_28/types/group_0228.py index 5ce0fd95e..2beeefa41 100644 --- a/githubkit/versions/v2022_11_28/types/group_0228.py +++ b/githubkit/versions/v2022_11_28/types/group_0228.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0229.py b/githubkit/versions/v2022_11_28/types/group_0229.py index 3034e1725..e831de330 100644 --- a/githubkit/versions/v2022_11_28/types/group_0229.py +++ b/githubkit/versions/v2022_11_28/types/group_0229.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0230.py b/githubkit/versions/v2022_11_28/types/group_0230.py index 6fd2d2058..5a6e47628 100644 --- a/githubkit/versions/v2022_11_28/types/group_0230.py +++ b/githubkit/versions/v2022_11_28/types/group_0230.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0231.py b/githubkit/versions/v2022_11_28/types/group_0231.py index c7470209c..7e41f0fff 100644 --- a/githubkit/versions/v2022_11_28/types/group_0231.py +++ b/githubkit/versions/v2022_11_28/types/group_0231.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_0232.py b/githubkit/versions/v2022_11_28/types/group_0232.py index fc1361eb5..86301392f 100644 --- a/githubkit/versions/v2022_11_28/types/group_0232.py +++ b/githubkit/versions/v2022_11_28/types/group_0232.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0233.py b/githubkit/versions/v2022_11_28/types/group_0233.py index aef568c61..8fa86f4ba 100644 --- a/githubkit/versions/v2022_11_28/types/group_0233.py +++ b/githubkit/versions/v2022_11_28/types/group_0233.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0234.py b/githubkit/versions/v2022_11_28/types/group_0234.py index a808dbe40..2b9241c94 100644 --- a/githubkit/versions/v2022_11_28/types/group_0234.py +++ b/githubkit/versions/v2022_11_28/types/group_0234.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0235.py b/githubkit/versions/v2022_11_28/types/group_0235.py index 16876d157..400fd8d5a 100644 --- a/githubkit/versions/v2022_11_28/types/group_0235.py +++ b/githubkit/versions/v2022_11_28/types/group_0235.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0236.py b/githubkit/versions/v2022_11_28/types/group_0236.py index d9ea9e67c..29e5d5f34 100644 --- a/githubkit/versions/v2022_11_28/types/group_0236.py +++ b/githubkit/versions/v2022_11_28/types/group_0236.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0237.py b/githubkit/versions/v2022_11_28/types/group_0237.py index 42d7243ef..4463fe51e 100644 --- a/githubkit/versions/v2022_11_28/types/group_0237.py +++ b/githubkit/versions/v2022_11_28/types/group_0237.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0238.py b/githubkit/versions/v2022_11_28/types/group_0238.py index 343fc377d..685ed9914 100644 --- a/githubkit/versions/v2022_11_28/types/group_0238.py +++ b/githubkit/versions/v2022_11_28/types/group_0238.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0239.py b/githubkit/versions/v2022_11_28/types/group_0239.py index 778fa8bbb..784015c57 100644 --- a/githubkit/versions/v2022_11_28/types/group_0239.py +++ b/githubkit/versions/v2022_11_28/types/group_0239.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0240.py b/githubkit/versions/v2022_11_28/types/group_0240.py index 9f19fbef9..55685e749 100644 --- a/githubkit/versions/v2022_11_28/types/group_0240.py +++ b/githubkit/versions/v2022_11_28/types/group_0240.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0241.py b/githubkit/versions/v2022_11_28/types/group_0241.py index a3b2f19fe..a51e4f8b3 100644 --- a/githubkit/versions/v2022_11_28/types/group_0241.py +++ b/githubkit/versions/v2022_11_28/types/group_0241.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0242.py b/githubkit/versions/v2022_11_28/types/group_0242.py index 55d1ba6b9..deb8a4c9a 100644 --- a/githubkit/versions/v2022_11_28/types/group_0242.py +++ b/githubkit/versions/v2022_11_28/types/group_0242.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0243.py b/githubkit/versions/v2022_11_28/types/group_0243.py index 5f51a940e..1a6e42c81 100644 --- a/githubkit/versions/v2022_11_28/types/group_0243.py +++ b/githubkit/versions/v2022_11_28/types/group_0243.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0244.py b/githubkit/versions/v2022_11_28/types/group_0244.py index cbfefd591..bf554bd0c 100644 --- a/githubkit/versions/v2022_11_28/types/group_0244.py +++ b/githubkit/versions/v2022_11_28/types/group_0244.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0245.py b/githubkit/versions/v2022_11_28/types/group_0245.py index bb09c2b2a..e71059c34 100644 --- a/githubkit/versions/v2022_11_28/types/group_0245.py +++ b/githubkit/versions/v2022_11_28/types/group_0245.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0246.py b/githubkit/versions/v2022_11_28/types/group_0246.py index 152dbf2c8..3b921fe6f 100644 --- a/githubkit/versions/v2022_11_28/types/group_0246.py +++ b/githubkit/versions/v2022_11_28/types/group_0246.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_0247.py b/githubkit/versions/v2022_11_28/types/group_0247.py index 468ec48b8..808d10108 100644 --- a/githubkit/versions/v2022_11_28/types/group_0247.py +++ b/githubkit/versions/v2022_11_28/types/group_0247.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0248.py b/githubkit/versions/v2022_11_28/types/group_0248.py index 75ed198b9..2763aab9e 100644 --- a/githubkit/versions/v2022_11_28/types/group_0248.py +++ b/githubkit/versions/v2022_11_28/types/group_0248.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0249.py b/githubkit/versions/v2022_11_28/types/group_0249.py index d2f847b0b..cd1b19990 100644 --- a/githubkit/versions/v2022_11_28/types/group_0249.py +++ b/githubkit/versions/v2022_11_28/types/group_0249.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0250.py b/githubkit/versions/v2022_11_28/types/group_0250.py index 527e79ae8..c88910d89 100644 --- a/githubkit/versions/v2022_11_28/types/group_0250.py +++ b/githubkit/versions/v2022_11_28/types/group_0250.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0251.py b/githubkit/versions/v2022_11_28/types/group_0251.py index 2a85ded9c..a760ba55a 100644 --- a/githubkit/versions/v2022_11_28/types/group_0251.py +++ b/githubkit/versions/v2022_11_28/types/group_0251.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0252.py b/githubkit/versions/v2022_11_28/types/group_0252.py index 8d31918ab..ae1425148 100644 --- a/githubkit/versions/v2022_11_28/types/group_0252.py +++ b/githubkit/versions/v2022_11_28/types/group_0252.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0253.py b/githubkit/versions/v2022_11_28/types/group_0253.py index 478fb3d28..197e7e031 100644 --- a/githubkit/versions/v2022_11_28/types/group_0253.py +++ b/githubkit/versions/v2022_11_28/types/group_0253.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0254.py b/githubkit/versions/v2022_11_28/types/group_0254.py index 78f9e6d45..25982f813 100644 --- a/githubkit/versions/v2022_11_28/types/group_0254.py +++ b/githubkit/versions/v2022_11_28/types/group_0254.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0255.py b/githubkit/versions/v2022_11_28/types/group_0255.py index 1a7602f8d..0299cec7c 100644 --- a/githubkit/versions/v2022_11_28/types/group_0255.py +++ b/githubkit/versions/v2022_11_28/types/group_0255.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0256.py b/githubkit/versions/v2022_11_28/types/group_0256.py index 385bc4ab3..869e4d56f 100644 --- a/githubkit/versions/v2022_11_28/types/group_0256.py +++ b/githubkit/versions/v2022_11_28/types/group_0256.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0257.py b/githubkit/versions/v2022_11_28/types/group_0257.py index 0a42080eb..bcd173794 100644 --- a/githubkit/versions/v2022_11_28/types/group_0257.py +++ b/githubkit/versions/v2022_11_28/types/group_0257.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0258.py b/githubkit/versions/v2022_11_28/types/group_0258.py index 48761899a..28cebcf66 100644 --- a/githubkit/versions/v2022_11_28/types/group_0258.py +++ b/githubkit/versions/v2022_11_28/types/group_0258.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0259.py b/githubkit/versions/v2022_11_28/types/group_0259.py index ba0fa7f64..3d6fab4fb 100644 --- a/githubkit/versions/v2022_11_28/types/group_0259.py +++ b/githubkit/versions/v2022_11_28/types/group_0259.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0260.py b/githubkit/versions/v2022_11_28/types/group_0260.py index fc2e7ba41..0b1733f9c 100644 --- a/githubkit/versions/v2022_11_28/types/group_0260.py +++ b/githubkit/versions/v2022_11_28/types/group_0260.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0261.py b/githubkit/versions/v2022_11_28/types/group_0261.py index 815b333ce..17ff9562c 100644 --- a/githubkit/versions/v2022_11_28/types/group_0261.py +++ b/githubkit/versions/v2022_11_28/types/group_0261.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0262.py b/githubkit/versions/v2022_11_28/types/group_0262.py index b60fbdd4a..8e9785d25 100644 --- a/githubkit/versions/v2022_11_28/types/group_0262.py +++ b/githubkit/versions/v2022_11_28/types/group_0262.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0263.py b/githubkit/versions/v2022_11_28/types/group_0263.py index f1205d8d4..a0c800413 100644 --- a/githubkit/versions/v2022_11_28/types/group_0263.py +++ b/githubkit/versions/v2022_11_28/types/group_0263.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0264.py b/githubkit/versions/v2022_11_28/types/group_0264.py index a80d7de50..e141c8229 100644 --- a/githubkit/versions/v2022_11_28/types/group_0264.py +++ b/githubkit/versions/v2022_11_28/types/group_0264.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0265.py b/githubkit/versions/v2022_11_28/types/group_0265.py index 4f99aa509..f589264d3 100644 --- a/githubkit/versions/v2022_11_28/types/group_0265.py +++ b/githubkit/versions/v2022_11_28/types/group_0265.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0266.py b/githubkit/versions/v2022_11_28/types/group_0266.py index 5ab100299..dbd49d911 100644 --- a/githubkit/versions/v2022_11_28/types/group_0266.py +++ b/githubkit/versions/v2022_11_28/types/group_0266.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0267.py b/githubkit/versions/v2022_11_28/types/group_0267.py index 15634cf9f..2d3479f39 100644 --- a/githubkit/versions/v2022_11_28/types/group_0267.py +++ b/githubkit/versions/v2022_11_28/types/group_0267.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0268.py b/githubkit/versions/v2022_11_28/types/group_0268.py index 75dc7d942..a4f0cccb1 100644 --- a/githubkit/versions/v2022_11_28/types/group_0268.py +++ b/githubkit/versions/v2022_11_28/types/group_0268.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0269.py b/githubkit/versions/v2022_11_28/types/group_0269.py index 3423a7177..b11ea9ee0 100644 --- a/githubkit/versions/v2022_11_28/types/group_0269.py +++ b/githubkit/versions/v2022_11_28/types/group_0269.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0270.py b/githubkit/versions/v2022_11_28/types/group_0270.py index 080ed439d..a2eef590b 100644 --- a/githubkit/versions/v2022_11_28/types/group_0270.py +++ b/githubkit/versions/v2022_11_28/types/group_0270.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0271.py b/githubkit/versions/v2022_11_28/types/group_0271.py index eef7379f9..f9a74ded9 100644 --- a/githubkit/versions/v2022_11_28/types/group_0271.py +++ b/githubkit/versions/v2022_11_28/types/group_0271.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0272.py b/githubkit/versions/v2022_11_28/types/group_0272.py index 10b0d030d..9b0850c54 100644 --- a/githubkit/versions/v2022_11_28/types/group_0272.py +++ b/githubkit/versions/v2022_11_28/types/group_0272.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_0273.py b/githubkit/versions/v2022_11_28/types/group_0273.py index 2edaf25f2..503b39935 100644 --- a/githubkit/versions/v2022_11_28/types/group_0273.py +++ b/githubkit/versions/v2022_11_28/types/group_0273.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0274.py b/githubkit/versions/v2022_11_28/types/group_0274.py index 4711726f4..87719cafc 100644 --- a/githubkit/versions/v2022_11_28/types/group_0274.py +++ b/githubkit/versions/v2022_11_28/types/group_0274.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0275.py b/githubkit/versions/v2022_11_28/types/group_0275.py index f584a9660..4fe1b054e 100644 --- a/githubkit/versions/v2022_11_28/types/group_0275.py +++ b/githubkit/versions/v2022_11_28/types/group_0275.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0276.py b/githubkit/versions/v2022_11_28/types/group_0276.py index 28f3ff895..4463b3b41 100644 --- a/githubkit/versions/v2022_11_28/types/group_0276.py +++ b/githubkit/versions/v2022_11_28/types/group_0276.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0277.py b/githubkit/versions/v2022_11_28/types/group_0277.py index c1a21a86e..bac8632dc 100644 --- a/githubkit/versions/v2022_11_28/types/group_0277.py +++ b/githubkit/versions/v2022_11_28/types/group_0277.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0278.py b/githubkit/versions/v2022_11_28/types/group_0278.py index a9333da5b..6abbbf670 100644 --- a/githubkit/versions/v2022_11_28/types/group_0278.py +++ b/githubkit/versions/v2022_11_28/types/group_0278.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0279.py b/githubkit/versions/v2022_11_28/types/group_0279.py index a1bb65342..270956693 100644 --- a/githubkit/versions/v2022_11_28/types/group_0279.py +++ b/githubkit/versions/v2022_11_28/types/group_0279.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0280.py b/githubkit/versions/v2022_11_28/types/group_0280.py index 20c2172ce..3e17052fa 100644 --- a/githubkit/versions/v2022_11_28/types/group_0280.py +++ b/githubkit/versions/v2022_11_28/types/group_0280.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0281.py b/githubkit/versions/v2022_11_28/types/group_0281.py index 8a9ad90e2..b29269706 100644 --- a/githubkit/versions/v2022_11_28/types/group_0281.py +++ b/githubkit/versions/v2022_11_28/types/group_0281.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0282.py b/githubkit/versions/v2022_11_28/types/group_0282.py index c4795276b..9b2e5b242 100644 --- a/githubkit/versions/v2022_11_28/types/group_0282.py +++ b/githubkit/versions/v2022_11_28/types/group_0282.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0283.py b/githubkit/versions/v2022_11_28/types/group_0283.py index 17a3b743f..a626094ab 100644 --- a/githubkit/versions/v2022_11_28/types/group_0283.py +++ b/githubkit/versions/v2022_11_28/types/group_0283.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import date, datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0284.py b/githubkit/versions/v2022_11_28/types/group_0284.py index 7a074253f..9fb53f3a2 100644 --- a/githubkit/versions/v2022_11_28/types/group_0284.py +++ b/githubkit/versions/v2022_11_28/types/group_0284.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0285.py b/githubkit/versions/v2022_11_28/types/group_0285.py index dcafa114d..d7001e4a1 100644 --- a/githubkit/versions/v2022_11_28/types/group_0285.py +++ b/githubkit/versions/v2022_11_28/types/group_0285.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0286.py b/githubkit/versions/v2022_11_28/types/group_0286.py index 0a6de5728..cfd439e5b 100644 --- a/githubkit/versions/v2022_11_28/types/group_0286.py +++ b/githubkit/versions/v2022_11_28/types/group_0286.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0287.py b/githubkit/versions/v2022_11_28/types/group_0287.py index 3e2f31675..6420e8ce7 100644 --- a/githubkit/versions/v2022_11_28/types/group_0287.py +++ b/githubkit/versions/v2022_11_28/types/group_0287.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0288.py b/githubkit/versions/v2022_11_28/types/group_0288.py index 43b2c983b..ebcf6ff9c 100644 --- a/githubkit/versions/v2022_11_28/types/group_0288.py +++ b/githubkit/versions/v2022_11_28/types/group_0288.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0289.py b/githubkit/versions/v2022_11_28/types/group_0289.py index ff50744f6..1325a04e2 100644 --- a/githubkit/versions/v2022_11_28/types/group_0289.py +++ b/githubkit/versions/v2022_11_28/types/group_0289.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0290.py b/githubkit/versions/v2022_11_28/types/group_0290.py index 4e99b49fc..77cd3f3eb 100644 --- a/githubkit/versions/v2022_11_28/types/group_0290.py +++ b/githubkit/versions/v2022_11_28/types/group_0290.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0291.py b/githubkit/versions/v2022_11_28/types/group_0291.py index 1462ca422..0f89d7c9b 100644 --- a/githubkit/versions/v2022_11_28/types/group_0291.py +++ b/githubkit/versions/v2022_11_28/types/group_0291.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0292.py b/githubkit/versions/v2022_11_28/types/group_0292.py index ab101a2dd..3203d8727 100644 --- a/githubkit/versions/v2022_11_28/types/group_0292.py +++ b/githubkit/versions/v2022_11_28/types/group_0292.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0293.py b/githubkit/versions/v2022_11_28/types/group_0293.py index 0ac3d6583..9ab0fc6dc 100644 --- a/githubkit/versions/v2022_11_28/types/group_0293.py +++ b/githubkit/versions/v2022_11_28/types/group_0293.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0294.py b/githubkit/versions/v2022_11_28/types/group_0294.py index 41637c850..211278b38 100644 --- a/githubkit/versions/v2022_11_28/types/group_0294.py +++ b/githubkit/versions/v2022_11_28/types/group_0294.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0295.py b/githubkit/versions/v2022_11_28/types/group_0295.py index ec8e92d52..d2d33bcab 100644 --- a/githubkit/versions/v2022_11_28/types/group_0295.py +++ b/githubkit/versions/v2022_11_28/types/group_0295.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0296.py b/githubkit/versions/v2022_11_28/types/group_0296.py index 31cb3def0..1c6f49309 100644 --- a/githubkit/versions/v2022_11_28/types/group_0296.py +++ b/githubkit/versions/v2022_11_28/types/group_0296.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0297.py b/githubkit/versions/v2022_11_28/types/group_0297.py index ffa69e25d..d74ebf5cc 100644 --- a/githubkit/versions/v2022_11_28/types/group_0297.py +++ b/githubkit/versions/v2022_11_28/types/group_0297.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0298.py b/githubkit/versions/v2022_11_28/types/group_0298.py index 5f337dcb2..e19e8feb0 100644 --- a/githubkit/versions/v2022_11_28/types/group_0298.py +++ b/githubkit/versions/v2022_11_28/types/group_0298.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0299.py b/githubkit/versions/v2022_11_28/types/group_0299.py index 122c065df..763c294c8 100644 --- a/githubkit/versions/v2022_11_28/types/group_0299.py +++ b/githubkit/versions/v2022_11_28/types/group_0299.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0300.py b/githubkit/versions/v2022_11_28/types/group_0300.py index 428207e9c..3b2bfa70b 100644 --- a/githubkit/versions/v2022_11_28/types/group_0300.py +++ b/githubkit/versions/v2022_11_28/types/group_0300.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0301.py b/githubkit/versions/v2022_11_28/types/group_0301.py index 1e2c3ec84..8cbfbc707 100644 --- a/githubkit/versions/v2022_11_28/types/group_0301.py +++ b/githubkit/versions/v2022_11_28/types/group_0301.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0302.py b/githubkit/versions/v2022_11_28/types/group_0302.py index bbf2dd1d9..7624c5eac 100644 --- a/githubkit/versions/v2022_11_28/types/group_0302.py +++ b/githubkit/versions/v2022_11_28/types/group_0302.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0303.py b/githubkit/versions/v2022_11_28/types/group_0303.py index a26fcc6d3..ab76a76e1 100644 --- a/githubkit/versions/v2022_11_28/types/group_0303.py +++ b/githubkit/versions/v2022_11_28/types/group_0303.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0304.py b/githubkit/versions/v2022_11_28/types/group_0304.py index 583f2f6df..3744ed23c 100644 --- a/githubkit/versions/v2022_11_28/types/group_0304.py +++ b/githubkit/versions/v2022_11_28/types/group_0304.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0305.py b/githubkit/versions/v2022_11_28/types/group_0305.py index 6a5739bf6..6d0ae974e 100644 --- a/githubkit/versions/v2022_11_28/types/group_0305.py +++ b/githubkit/versions/v2022_11_28/types/group_0305.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0306.py b/githubkit/versions/v2022_11_28/types/group_0306.py index 2c9487a1c..6c9a7937b 100644 --- a/githubkit/versions/v2022_11_28/types/group_0306.py +++ b/githubkit/versions/v2022_11_28/types/group_0306.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0307.py b/githubkit/versions/v2022_11_28/types/group_0307.py index 95968d659..d41836299 100644 --- a/githubkit/versions/v2022_11_28/types/group_0307.py +++ b/githubkit/versions/v2022_11_28/types/group_0307.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0308.py b/githubkit/versions/v2022_11_28/types/group_0308.py index fd8688a46..f17319898 100644 --- a/githubkit/versions/v2022_11_28/types/group_0308.py +++ b/githubkit/versions/v2022_11_28/types/group_0308.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0309.py b/githubkit/versions/v2022_11_28/types/group_0309.py index 2bdfaf77d..1d8ab5bc7 100644 --- a/githubkit/versions/v2022_11_28/types/group_0309.py +++ b/githubkit/versions/v2022_11_28/types/group_0309.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0310.py b/githubkit/versions/v2022_11_28/types/group_0310.py index 8f8b34019..61cfacc05 100644 --- a/githubkit/versions/v2022_11_28/types/group_0310.py +++ b/githubkit/versions/v2022_11_28/types/group_0310.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0311.py b/githubkit/versions/v2022_11_28/types/group_0311.py index 39fee54aa..b4700d8d9 100644 --- a/githubkit/versions/v2022_11_28/types/group_0311.py +++ b/githubkit/versions/v2022_11_28/types/group_0311.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0312.py b/githubkit/versions/v2022_11_28/types/group_0312.py index 63155de08..3239454a3 100644 --- a/githubkit/versions/v2022_11_28/types/group_0312.py +++ b/githubkit/versions/v2022_11_28/types/group_0312.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0313.py b/githubkit/versions/v2022_11_28/types/group_0313.py index b798e3333..5173b53c7 100644 --- a/githubkit/versions/v2022_11_28/types/group_0313.py +++ b/githubkit/versions/v2022_11_28/types/group_0313.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0314.py b/githubkit/versions/v2022_11_28/types/group_0314.py index d0f2e76c1..c8cefc978 100644 --- a/githubkit/versions/v2022_11_28/types/group_0314.py +++ b/githubkit/versions/v2022_11_28/types/group_0314.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0315.py b/githubkit/versions/v2022_11_28/types/group_0315.py index ab1c4991e..4fdee754a 100644 --- a/githubkit/versions/v2022_11_28/types/group_0315.py +++ b/githubkit/versions/v2022_11_28/types/group_0315.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0316.py b/githubkit/versions/v2022_11_28/types/group_0316.py index 5db7a1803..be59a0c26 100644 --- a/githubkit/versions/v2022_11_28/types/group_0316.py +++ b/githubkit/versions/v2022_11_28/types/group_0316.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0317.py b/githubkit/versions/v2022_11_28/types/group_0317.py index f3ecb2439..fae14796e 100644 --- a/githubkit/versions/v2022_11_28/types/group_0317.py +++ b/githubkit/versions/v2022_11_28/types/group_0317.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0318.py b/githubkit/versions/v2022_11_28/types/group_0318.py index 045236583..b6471d952 100644 --- a/githubkit/versions/v2022_11_28/types/group_0318.py +++ b/githubkit/versions/v2022_11_28/types/group_0318.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0319.py b/githubkit/versions/v2022_11_28/types/group_0319.py index ce7140bda..65483031c 100644 --- a/githubkit/versions/v2022_11_28/types/group_0319.py +++ b/githubkit/versions/v2022_11_28/types/group_0319.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0320.py b/githubkit/versions/v2022_11_28/types/group_0320.py index b7a54990d..114417d81 100644 --- a/githubkit/versions/v2022_11_28/types/group_0320.py +++ b/githubkit/versions/v2022_11_28/types/group_0320.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0321.py b/githubkit/versions/v2022_11_28/types/group_0321.py index 82e99de89..3e277fb86 100644 --- a/githubkit/versions/v2022_11_28/types/group_0321.py +++ b/githubkit/versions/v2022_11_28/types/group_0321.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0322.py b/githubkit/versions/v2022_11_28/types/group_0322.py index 8e9ead218..7d81a1637 100644 --- a/githubkit/versions/v2022_11_28/types/group_0322.py +++ b/githubkit/versions/v2022_11_28/types/group_0322.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0323.py b/githubkit/versions/v2022_11_28/types/group_0323.py index 48a3bd81d..3b359fe67 100644 --- a/githubkit/versions/v2022_11_28/types/group_0323.py +++ b/githubkit/versions/v2022_11_28/types/group_0323.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0324.py b/githubkit/versions/v2022_11_28/types/group_0324.py index 6f194d8c6..14086fd36 100644 --- a/githubkit/versions/v2022_11_28/types/group_0324.py +++ b/githubkit/versions/v2022_11_28/types/group_0324.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/v2022_11_28/types/group_0325.py b/githubkit/versions/v2022_11_28/types/group_0325.py index 2ece786df..905ae039a 100644 --- a/githubkit/versions/v2022_11_28/types/group_0325.py +++ b/githubkit/versions/v2022_11_28/types/group_0325.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0326.py b/githubkit/versions/v2022_11_28/types/group_0326.py index 72bdca3b7..0099f28ce 100644 --- a/githubkit/versions/v2022_11_28/types/group_0326.py +++ b/githubkit/versions/v2022_11_28/types/group_0326.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0327.py b/githubkit/versions/v2022_11_28/types/group_0327.py index e08324022..7a59979c3 100644 --- a/githubkit/versions/v2022_11_28/types/group_0327.py +++ b/githubkit/versions/v2022_11_28/types/group_0327.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0328.py b/githubkit/versions/v2022_11_28/types/group_0328.py index 1c8b0df25..d07e7c979 100644 --- a/githubkit/versions/v2022_11_28/types/group_0328.py +++ b/githubkit/versions/v2022_11_28/types/group_0328.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_0329.py b/githubkit/versions/v2022_11_28/types/group_0329.py index 92902b756..c62332d11 100644 --- a/githubkit/versions/v2022_11_28/types/group_0329.py +++ b/githubkit/versions/v2022_11_28/types/group_0329.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0330.py b/githubkit/versions/v2022_11_28/types/group_0330.py index ef6b88eb3..2412270d8 100644 --- a/githubkit/versions/v2022_11_28/types/group_0330.py +++ b/githubkit/versions/v2022_11_28/types/group_0330.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0331.py b/githubkit/versions/v2022_11_28/types/group_0331.py index 759d4c6b0..9c6a1487e 100644 --- a/githubkit/versions/v2022_11_28/types/group_0331.py +++ b/githubkit/versions/v2022_11_28/types/group_0331.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0332.py b/githubkit/versions/v2022_11_28/types/group_0332.py index 322fa4a1c..8ae9ebc92 100644 --- a/githubkit/versions/v2022_11_28/types/group_0332.py +++ b/githubkit/versions/v2022_11_28/types/group_0332.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0333.py b/githubkit/versions/v2022_11_28/types/group_0333.py index d7d8b97bb..d7d63281a 100644 --- a/githubkit/versions/v2022_11_28/types/group_0333.py +++ b/githubkit/versions/v2022_11_28/types/group_0333.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0334.py b/githubkit/versions/v2022_11_28/types/group_0334.py index 758769edf..e852371c5 100644 --- a/githubkit/versions/v2022_11_28/types/group_0334.py +++ b/githubkit/versions/v2022_11_28/types/group_0334.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0335.py b/githubkit/versions/v2022_11_28/types/group_0335.py index 188fc9833..1ea99ae28 100644 --- a/githubkit/versions/v2022_11_28/types/group_0335.py +++ b/githubkit/versions/v2022_11_28/types/group_0335.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/v2022_11_28/types/group_0336.py b/githubkit/versions/v2022_11_28/types/group_0336.py index 29127f329..5042e44b2 100644 --- a/githubkit/versions/v2022_11_28/types/group_0336.py +++ b/githubkit/versions/v2022_11_28/types/group_0336.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0337.py b/githubkit/versions/v2022_11_28/types/group_0337.py index 51744f997..7333b1a7d 100644 --- a/githubkit/versions/v2022_11_28/types/group_0337.py +++ b/githubkit/versions/v2022_11_28/types/group_0337.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/v2022_11_28/types/group_0338.py b/githubkit/versions/v2022_11_28/types/group_0338.py index be805c4ea..2dabeb4b1 100644 --- a/githubkit/versions/v2022_11_28/types/group_0338.py +++ b/githubkit/versions/v2022_11_28/types/group_0338.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0339.py b/githubkit/versions/v2022_11_28/types/group_0339.py index f5fd99514..feac9d9a0 100644 --- a/githubkit/versions/v2022_11_28/types/group_0339.py +++ b/githubkit/versions/v2022_11_28/types/group_0339.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0340.py b/githubkit/versions/v2022_11_28/types/group_0340.py index 71211df8c..4fd353715 100644 --- a/githubkit/versions/v2022_11_28/types/group_0340.py +++ b/githubkit/versions/v2022_11_28/types/group_0340.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/v2022_11_28/types/group_0341.py b/githubkit/versions/v2022_11_28/types/group_0341.py index e8c2f576d..a3412d53f 100644 --- a/githubkit/versions/v2022_11_28/types/group_0341.py +++ b/githubkit/versions/v2022_11_28/types/group_0341.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0342.py b/githubkit/versions/v2022_11_28/types/group_0342.py index fc5167701..73ee001c3 100644 --- a/githubkit/versions/v2022_11_28/types/group_0342.py +++ b/githubkit/versions/v2022_11_28/types/group_0342.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0343.py b/githubkit/versions/v2022_11_28/types/group_0343.py index fa10ce329..8276ae888 100644 --- a/githubkit/versions/v2022_11_28/types/group_0343.py +++ b/githubkit/versions/v2022_11_28/types/group_0343.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0344.py b/githubkit/versions/v2022_11_28/types/group_0344.py index d1cff0d1d..f9af52b77 100644 --- a/githubkit/versions/v2022_11_28/types/group_0344.py +++ b/githubkit/versions/v2022_11_28/types/group_0344.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0345.py b/githubkit/versions/v2022_11_28/types/group_0345.py index adf960bf8..6be52538b 100644 --- a/githubkit/versions/v2022_11_28/types/group_0345.py +++ b/githubkit/versions/v2022_11_28/types/group_0345.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0346.py b/githubkit/versions/v2022_11_28/types/group_0346.py index 232af1a4d..a57fc4101 100644 --- a/githubkit/versions/v2022_11_28/types/group_0346.py +++ b/githubkit/versions/v2022_11_28/types/group_0346.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0347.py b/githubkit/versions/v2022_11_28/types/group_0347.py index 5f01c565a..ae337cca8 100644 --- a/githubkit/versions/v2022_11_28/types/group_0347.py +++ b/githubkit/versions/v2022_11_28/types/group_0347.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0348.py b/githubkit/versions/v2022_11_28/types/group_0348.py index fb5c94e94..767832678 100644 --- a/githubkit/versions/v2022_11_28/types/group_0348.py +++ b/githubkit/versions/v2022_11_28/types/group_0348.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0349.py b/githubkit/versions/v2022_11_28/types/group_0349.py index 8f3ea5a5a..df0802f2e 100644 --- a/githubkit/versions/v2022_11_28/types/group_0349.py +++ b/githubkit/versions/v2022_11_28/types/group_0349.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0350.py b/githubkit/versions/v2022_11_28/types/group_0350.py index 852cfa375..6c95fc7a9 100644 --- a/githubkit/versions/v2022_11_28/types/group_0350.py +++ b/githubkit/versions/v2022_11_28/types/group_0350.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0351.py b/githubkit/versions/v2022_11_28/types/group_0351.py index ed50d079d..a9eaae7b8 100644 --- a/githubkit/versions/v2022_11_28/types/group_0351.py +++ b/githubkit/versions/v2022_11_28/types/group_0351.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0352.py b/githubkit/versions/v2022_11_28/types/group_0352.py index 922c7ecd2..f892fc0d3 100644 --- a/githubkit/versions/v2022_11_28/types/group_0352.py +++ b/githubkit/versions/v2022_11_28/types/group_0352.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0353.py b/githubkit/versions/v2022_11_28/types/group_0353.py index ee7f9f6c3..a3c3f348b 100644 --- a/githubkit/versions/v2022_11_28/types/group_0353.py +++ b/githubkit/versions/v2022_11_28/types/group_0353.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0354.py b/githubkit/versions/v2022_11_28/types/group_0354.py index 5e1de4cf5..a90acd5c0 100644 --- a/githubkit/versions/v2022_11_28/types/group_0354.py +++ b/githubkit/versions/v2022_11_28/types/group_0354.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0355.py b/githubkit/versions/v2022_11_28/types/group_0355.py index c13c201f5..408258a5a 100644 --- a/githubkit/versions/v2022_11_28/types/group_0355.py +++ b/githubkit/versions/v2022_11_28/types/group_0355.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0356.py b/githubkit/versions/v2022_11_28/types/group_0356.py index eafb7dc9e..04b787e6a 100644 --- a/githubkit/versions/v2022_11_28/types/group_0356.py +++ b/githubkit/versions/v2022_11_28/types/group_0356.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0357.py b/githubkit/versions/v2022_11_28/types/group_0357.py index f4469b9b3..0a05c838a 100644 --- a/githubkit/versions/v2022_11_28/types/group_0357.py +++ b/githubkit/versions/v2022_11_28/types/group_0357.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0358.py b/githubkit/versions/v2022_11_28/types/group_0358.py index 13a2a9172..bbc5a360f 100644 --- a/githubkit/versions/v2022_11_28/types/group_0358.py +++ b/githubkit/versions/v2022_11_28/types/group_0358.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0359.py b/githubkit/versions/v2022_11_28/types/group_0359.py index 7d2fe9341..b52264ecb 100644 --- a/githubkit/versions/v2022_11_28/types/group_0359.py +++ b/githubkit/versions/v2022_11_28/types/group_0359.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0360.py b/githubkit/versions/v2022_11_28/types/group_0360.py index 9bd68f54f..776d76655 100644 --- a/githubkit/versions/v2022_11_28/types/group_0360.py +++ b/githubkit/versions/v2022_11_28/types/group_0360.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0361.py b/githubkit/versions/v2022_11_28/types/group_0361.py index b7491c379..5484de1f2 100644 --- a/githubkit/versions/v2022_11_28/types/group_0361.py +++ b/githubkit/versions/v2022_11_28/types/group_0361.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0362.py b/githubkit/versions/v2022_11_28/types/group_0362.py index c179e32f3..74990b9f7 100644 --- a/githubkit/versions/v2022_11_28/types/group_0362.py +++ b/githubkit/versions/v2022_11_28/types/group_0362.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0363.py b/githubkit/versions/v2022_11_28/types/group_0363.py index bd4733e58..ac72814e6 100644 --- a/githubkit/versions/v2022_11_28/types/group_0363.py +++ b/githubkit/versions/v2022_11_28/types/group_0363.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0364.py b/githubkit/versions/v2022_11_28/types/group_0364.py index d6fcbf3be..c6ec63734 100644 --- a/githubkit/versions/v2022_11_28/types/group_0364.py +++ b/githubkit/versions/v2022_11_28/types/group_0364.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0365.py b/githubkit/versions/v2022_11_28/types/group_0365.py index fd50e8844..1bdfe73ef 100644 --- a/githubkit/versions/v2022_11_28/types/group_0365.py +++ b/githubkit/versions/v2022_11_28/types/group_0365.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0366.py b/githubkit/versions/v2022_11_28/types/group_0366.py index 9ac59c3a8..9dc401c4d 100644 --- a/githubkit/versions/v2022_11_28/types/group_0366.py +++ b/githubkit/versions/v2022_11_28/types/group_0366.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0367.py b/githubkit/versions/v2022_11_28/types/group_0367.py index fbb886ecf..d5d8acb4c 100644 --- a/githubkit/versions/v2022_11_28/types/group_0367.py +++ b/githubkit/versions/v2022_11_28/types/group_0367.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0368.py b/githubkit/versions/v2022_11_28/types/group_0368.py index c2dd8b7a8..1c4516db1 100644 --- a/githubkit/versions/v2022_11_28/types/group_0368.py +++ b/githubkit/versions/v2022_11_28/types/group_0368.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0369.py b/githubkit/versions/v2022_11_28/types/group_0369.py index 0dac6842f..0fa07a87c 100644 --- a/githubkit/versions/v2022_11_28/types/group_0369.py +++ b/githubkit/versions/v2022_11_28/types/group_0369.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0370.py b/githubkit/versions/v2022_11_28/types/group_0370.py index 0e8a37a09..bc1f6a317 100644 --- a/githubkit/versions/v2022_11_28/types/group_0370.py +++ b/githubkit/versions/v2022_11_28/types/group_0370.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0371.py b/githubkit/versions/v2022_11_28/types/group_0371.py index 1ec6608aa..640f4eea7 100644 --- a/githubkit/versions/v2022_11_28/types/group_0371.py +++ b/githubkit/versions/v2022_11_28/types/group_0371.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0372.py b/githubkit/versions/v2022_11_28/types/group_0372.py index 712d531d2..c4743b879 100644 --- a/githubkit/versions/v2022_11_28/types/group_0372.py +++ b/githubkit/versions/v2022_11_28/types/group_0372.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0373.py b/githubkit/versions/v2022_11_28/types/group_0373.py index 9fd2d4e4c..8fdb08932 100644 --- a/githubkit/versions/v2022_11_28/types/group_0373.py +++ b/githubkit/versions/v2022_11_28/types/group_0373.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0374.py b/githubkit/versions/v2022_11_28/types/group_0374.py index f80dac35d..95edc97e6 100644 --- a/githubkit/versions/v2022_11_28/types/group_0374.py +++ b/githubkit/versions/v2022_11_28/types/group_0374.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0375.py b/githubkit/versions/v2022_11_28/types/group_0375.py index af83376bd..be1288b31 100644 --- a/githubkit/versions/v2022_11_28/types/group_0375.py +++ b/githubkit/versions/v2022_11_28/types/group_0375.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0376.py b/githubkit/versions/v2022_11_28/types/group_0376.py index 89023ce14..831afd105 100644 --- a/githubkit/versions/v2022_11_28/types/group_0376.py +++ b/githubkit/versions/v2022_11_28/types/group_0376.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0377.py b/githubkit/versions/v2022_11_28/types/group_0377.py index a96167a08..576907766 100644 --- a/githubkit/versions/v2022_11_28/types/group_0377.py +++ b/githubkit/versions/v2022_11_28/types/group_0377.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0378.py b/githubkit/versions/v2022_11_28/types/group_0378.py index a4028ac3b..090ccf388 100644 --- a/githubkit/versions/v2022_11_28/types/group_0378.py +++ b/githubkit/versions/v2022_11_28/types/group_0378.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0379.py b/githubkit/versions/v2022_11_28/types/group_0379.py index dfc0fe08c..ab5959dac 100644 --- a/githubkit/versions/v2022_11_28/types/group_0379.py +++ b/githubkit/versions/v2022_11_28/types/group_0379.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0380.py b/githubkit/versions/v2022_11_28/types/group_0380.py index 41cdd6ae1..0d80e2c39 100644 --- a/githubkit/versions/v2022_11_28/types/group_0380.py +++ b/githubkit/versions/v2022_11_28/types/group_0380.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0381.py b/githubkit/versions/v2022_11_28/types/group_0381.py index 3fe77db1a..69424f4fb 100644 --- a/githubkit/versions/v2022_11_28/types/group_0381.py +++ b/githubkit/versions/v2022_11_28/types/group_0381.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0382.py b/githubkit/versions/v2022_11_28/types/group_0382.py index 258d6630c..ef6a77599 100644 --- a/githubkit/versions/v2022_11_28/types/group_0382.py +++ b/githubkit/versions/v2022_11_28/types/group_0382.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0383.py b/githubkit/versions/v2022_11_28/types/group_0383.py index 06d642b4d..1489723f6 100644 --- a/githubkit/versions/v2022_11_28/types/group_0383.py +++ b/githubkit/versions/v2022_11_28/types/group_0383.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0384.py b/githubkit/versions/v2022_11_28/types/group_0384.py index a100f99a7..d52571f33 100644 --- a/githubkit/versions/v2022_11_28/types/group_0384.py +++ b/githubkit/versions/v2022_11_28/types/group_0384.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0385.py b/githubkit/versions/v2022_11_28/types/group_0385.py index ab6ddf8b3..8ed75bfa1 100644 --- a/githubkit/versions/v2022_11_28/types/group_0385.py +++ b/githubkit/versions/v2022_11_28/types/group_0385.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0386.py b/githubkit/versions/v2022_11_28/types/group_0386.py index 7ea2f3062..e8d0d1cd1 100644 --- a/githubkit/versions/v2022_11_28/types/group_0386.py +++ b/githubkit/versions/v2022_11_28/types/group_0386.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0387.py b/githubkit/versions/v2022_11_28/types/group_0387.py index 1fe2533a4..fc3b88235 100644 --- a/githubkit/versions/v2022_11_28/types/group_0387.py +++ b/githubkit/versions/v2022_11_28/types/group_0387.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0388.py b/githubkit/versions/v2022_11_28/types/group_0388.py index 38e01d99d..fad2f2511 100644 --- a/githubkit/versions/v2022_11_28/types/group_0388.py +++ b/githubkit/versions/v2022_11_28/types/group_0388.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0389.py b/githubkit/versions/v2022_11_28/types/group_0389.py index 1dceca566..5667e8089 100644 --- a/githubkit/versions/v2022_11_28/types/group_0389.py +++ b/githubkit/versions/v2022_11_28/types/group_0389.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0390.py b/githubkit/versions/v2022_11_28/types/group_0390.py index 2aaffd7a5..f68fb4a2d 100644 --- a/githubkit/versions/v2022_11_28/types/group_0390.py +++ b/githubkit/versions/v2022_11_28/types/group_0390.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0391.py b/githubkit/versions/v2022_11_28/types/group_0391.py index 81c2057e6..b3c94201b 100644 --- a/githubkit/versions/v2022_11_28/types/group_0391.py +++ b/githubkit/versions/v2022_11_28/types/group_0391.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0392.py b/githubkit/versions/v2022_11_28/types/group_0392.py index 6d2d97602..f4f6fc05a 100644 --- a/githubkit/versions/v2022_11_28/types/group_0392.py +++ b/githubkit/versions/v2022_11_28/types/group_0392.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0393.py b/githubkit/versions/v2022_11_28/types/group_0393.py index f17142e4c..106e19f0c 100644 --- a/githubkit/versions/v2022_11_28/types/group_0393.py +++ b/githubkit/versions/v2022_11_28/types/group_0393.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0394.py b/githubkit/versions/v2022_11_28/types/group_0394.py index 36cca3872..727690b4f 100644 --- a/githubkit/versions/v2022_11_28/types/group_0394.py +++ b/githubkit/versions/v2022_11_28/types/group_0394.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0395.py b/githubkit/versions/v2022_11_28/types/group_0395.py index d14b3ef62..decd0dacd 100644 --- a/githubkit/versions/v2022_11_28/types/group_0395.py +++ b/githubkit/versions/v2022_11_28/types/group_0395.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0396.py b/githubkit/versions/v2022_11_28/types/group_0396.py index ca68b049b..1b89e04a6 100644 --- a/githubkit/versions/v2022_11_28/types/group_0396.py +++ b/githubkit/versions/v2022_11_28/types/group_0396.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0397.py b/githubkit/versions/v2022_11_28/types/group_0397.py index de0ed0e0a..65e8fb49e 100644 --- a/githubkit/versions/v2022_11_28/types/group_0397.py +++ b/githubkit/versions/v2022_11_28/types/group_0397.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0398.py b/githubkit/versions/v2022_11_28/types/group_0398.py index 1f0be4ab4..31c4d1545 100644 --- a/githubkit/versions/v2022_11_28/types/group_0398.py +++ b/githubkit/versions/v2022_11_28/types/group_0398.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0399.py b/githubkit/versions/v2022_11_28/types/group_0399.py index d697c1763..c79255075 100644 --- a/githubkit/versions/v2022_11_28/types/group_0399.py +++ b/githubkit/versions/v2022_11_28/types/group_0399.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0400.py b/githubkit/versions/v2022_11_28/types/group_0400.py index 793772c56..a45c5ff15 100644 --- a/githubkit/versions/v2022_11_28/types/group_0400.py +++ b/githubkit/versions/v2022_11_28/types/group_0400.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0401.py b/githubkit/versions/v2022_11_28/types/group_0401.py index 38698c3c9..1b0dc0957 100644 --- a/githubkit/versions/v2022_11_28/types/group_0401.py +++ b/githubkit/versions/v2022_11_28/types/group_0401.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0402.py b/githubkit/versions/v2022_11_28/types/group_0402.py index 357468cb5..13be3dc72 100644 --- a/githubkit/versions/v2022_11_28/types/group_0402.py +++ b/githubkit/versions/v2022_11_28/types/group_0402.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0403.py b/githubkit/versions/v2022_11_28/types/group_0403.py index 6a31d9d23..6551b78aa 100644 --- a/githubkit/versions/v2022_11_28/types/group_0403.py +++ b/githubkit/versions/v2022_11_28/types/group_0403.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0404.py b/githubkit/versions/v2022_11_28/types/group_0404.py index 8fee2726d..ee9bebb78 100644 --- a/githubkit/versions/v2022_11_28/types/group_0404.py +++ b/githubkit/versions/v2022_11_28/types/group_0404.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0405.py b/githubkit/versions/v2022_11_28/types/group_0405.py index 6c2204308..33deb04a7 100644 --- a/githubkit/versions/v2022_11_28/types/group_0405.py +++ b/githubkit/versions/v2022_11_28/types/group_0405.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0406.py b/githubkit/versions/v2022_11_28/types/group_0406.py index 4756206cf..176c7dfa5 100644 --- a/githubkit/versions/v2022_11_28/types/group_0406.py +++ b/githubkit/versions/v2022_11_28/types/group_0406.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0407.py b/githubkit/versions/v2022_11_28/types/group_0407.py index b7cbc5d52..028149d3e 100644 --- a/githubkit/versions/v2022_11_28/types/group_0407.py +++ b/githubkit/versions/v2022_11_28/types/group_0407.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0408.py b/githubkit/versions/v2022_11_28/types/group_0408.py index 4e59cbb5b..eabd236a9 100644 --- a/githubkit/versions/v2022_11_28/types/group_0408.py +++ b/githubkit/versions/v2022_11_28/types/group_0408.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -561,7 +560,9 @@ class WebhookDeploymentCreatedPropWorkflowRunPropPullRequestsItemsPropBaseType( """WebhookDeploymentCreatedPropWorkflowRunPropPullRequestsItemsPropBase""" ref: str - repo: WebhookDeploymentCreatedPropWorkflowRunPropPullRequestsItemsPropBasePropRepoType + repo: ( + WebhookDeploymentCreatedPropWorkflowRunPropPullRequestsItemsPropBasePropRepoType + ) sha: str @@ -581,7 +582,9 @@ class WebhookDeploymentCreatedPropWorkflowRunPropPullRequestsItemsPropHeadType( """WebhookDeploymentCreatedPropWorkflowRunPropPullRequestsItemsPropHead""" ref: str - repo: WebhookDeploymentCreatedPropWorkflowRunPropPullRequestsItemsPropHeadPropRepoType + repo: ( + WebhookDeploymentCreatedPropWorkflowRunPropPullRequestsItemsPropHeadPropRepoType + ) sha: str diff --git a/githubkit/versions/v2022_11_28/types/group_0409.py b/githubkit/versions/v2022_11_28/types/group_0409.py index da0271818..cac0fec4b 100644 --- a/githubkit/versions/v2022_11_28/types/group_0409.py +++ b/githubkit/versions/v2022_11_28/types/group_0409.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0410.py b/githubkit/versions/v2022_11_28/types/group_0410.py index c8ff4d091..da417e48e 100644 --- a/githubkit/versions/v2022_11_28/types/group_0410.py +++ b/githubkit/versions/v2022_11_28/types/group_0410.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -422,8 +421,12 @@ class WebhookDeploymentReviewApprovedPropWorkflowRunPropPullRequestsItemsType( ): """Check Run Pull Request""" - base: WebhookDeploymentReviewApprovedPropWorkflowRunPropPullRequestsItemsPropBaseType - head: WebhookDeploymentReviewApprovedPropWorkflowRunPropPullRequestsItemsPropHeadType + base: ( + WebhookDeploymentReviewApprovedPropWorkflowRunPropPullRequestsItemsPropBaseType + ) + head: ( + WebhookDeploymentReviewApprovedPropWorkflowRunPropPullRequestsItemsPropHeadType + ) id: int number: int url: str diff --git a/githubkit/versions/v2022_11_28/types/group_0411.py b/githubkit/versions/v2022_11_28/types/group_0411.py index fe7345209..20548e90f 100644 --- a/githubkit/versions/v2022_11_28/types/group_0411.py +++ b/githubkit/versions/v2022_11_28/types/group_0411.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -420,8 +419,12 @@ class WebhookDeploymentReviewRejectedPropWorkflowRunPropPullRequestsItemsType( ): """Check Run Pull Request""" - base: WebhookDeploymentReviewRejectedPropWorkflowRunPropPullRequestsItemsPropBaseType - head: WebhookDeploymentReviewRejectedPropWorkflowRunPropPullRequestsItemsPropHeadType + base: ( + WebhookDeploymentReviewRejectedPropWorkflowRunPropPullRequestsItemsPropBaseType + ) + head: ( + WebhookDeploymentReviewRejectedPropWorkflowRunPropPullRequestsItemsPropHeadType + ) id: int number: int url: str diff --git a/githubkit/versions/v2022_11_28/types/group_0412.py b/githubkit/versions/v2022_11_28/types/group_0412.py index 0596acf46..6086e0ec7 100644 --- a/githubkit/versions/v2022_11_28/types/group_0412.py +++ b/githubkit/versions/v2022_11_28/types/group_0412.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -409,8 +408,12 @@ class WebhookDeploymentReviewRequestedPropWorkflowRunPropPullRequestsItemsType( ): """Check Run Pull Request""" - base: WebhookDeploymentReviewRequestedPropWorkflowRunPropPullRequestsItemsPropBaseType - head: WebhookDeploymentReviewRequestedPropWorkflowRunPropPullRequestsItemsPropHeadType + base: ( + WebhookDeploymentReviewRequestedPropWorkflowRunPropPullRequestsItemsPropBaseType + ) + head: ( + WebhookDeploymentReviewRequestedPropWorkflowRunPropPullRequestsItemsPropHeadType + ) id: int number: int url: str diff --git a/githubkit/versions/v2022_11_28/types/group_0413.py b/githubkit/versions/v2022_11_28/types/group_0413.py index 2683b9add..549b0a0be 100644 --- a/githubkit/versions/v2022_11_28/types/group_0413.py +++ b/githubkit/versions/v2022_11_28/types/group_0413.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0414.py b/githubkit/versions/v2022_11_28/types/group_0414.py index 144c070ae..2293c4c95 100644 --- a/githubkit/versions/v2022_11_28/types/group_0414.py +++ b/githubkit/versions/v2022_11_28/types/group_0414.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0415.py b/githubkit/versions/v2022_11_28/types/group_0415.py index 7897fbb95..453961078 100644 --- a/githubkit/versions/v2022_11_28/types/group_0415.py +++ b/githubkit/versions/v2022_11_28/types/group_0415.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0416.py b/githubkit/versions/v2022_11_28/types/group_0416.py index f3d6337b6..840591fbe 100644 --- a/githubkit/versions/v2022_11_28/types/group_0416.py +++ b/githubkit/versions/v2022_11_28/types/group_0416.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0417.py b/githubkit/versions/v2022_11_28/types/group_0417.py index d880a81b3..7c3bdc9e6 100644 --- a/githubkit/versions/v2022_11_28/types/group_0417.py +++ b/githubkit/versions/v2022_11_28/types/group_0417.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0418.py b/githubkit/versions/v2022_11_28/types/group_0418.py index 9043814ba..10fbac17b 100644 --- a/githubkit/versions/v2022_11_28/types/group_0418.py +++ b/githubkit/versions/v2022_11_28/types/group_0418.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0419.py b/githubkit/versions/v2022_11_28/types/group_0419.py index 83bbff673..b1bb904d0 100644 --- a/githubkit/versions/v2022_11_28/types/group_0419.py +++ b/githubkit/versions/v2022_11_28/types/group_0419.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0420.py b/githubkit/versions/v2022_11_28/types/group_0420.py index 8f92fd5e0..e594b6761 100644 --- a/githubkit/versions/v2022_11_28/types/group_0420.py +++ b/githubkit/versions/v2022_11_28/types/group_0420.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0421.py b/githubkit/versions/v2022_11_28/types/group_0421.py index 6928e71d4..99aeff143 100644 --- a/githubkit/versions/v2022_11_28/types/group_0421.py +++ b/githubkit/versions/v2022_11_28/types/group_0421.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0422.py b/githubkit/versions/v2022_11_28/types/group_0422.py index 8b0eddc7b..b67d3508c 100644 --- a/githubkit/versions/v2022_11_28/types/group_0422.py +++ b/githubkit/versions/v2022_11_28/types/group_0422.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0423.py b/githubkit/versions/v2022_11_28/types/group_0423.py index e619ae32e..a42fc57eb 100644 --- a/githubkit/versions/v2022_11_28/types/group_0423.py +++ b/githubkit/versions/v2022_11_28/types/group_0423.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0424.py b/githubkit/versions/v2022_11_28/types/group_0424.py index a098ed659..db7acceda 100644 --- a/githubkit/versions/v2022_11_28/types/group_0424.py +++ b/githubkit/versions/v2022_11_28/types/group_0424.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0425.py b/githubkit/versions/v2022_11_28/types/group_0425.py index ed03eed9b..60a1002fe 100644 --- a/githubkit/versions/v2022_11_28/types/group_0425.py +++ b/githubkit/versions/v2022_11_28/types/group_0425.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0426.py b/githubkit/versions/v2022_11_28/types/group_0426.py index bbdad262f..f9b4f348a 100644 --- a/githubkit/versions/v2022_11_28/types/group_0426.py +++ b/githubkit/versions/v2022_11_28/types/group_0426.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0427.py b/githubkit/versions/v2022_11_28/types/group_0427.py index 850c94a71..2fe22911e 100644 --- a/githubkit/versions/v2022_11_28/types/group_0427.py +++ b/githubkit/versions/v2022_11_28/types/group_0427.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0428.py b/githubkit/versions/v2022_11_28/types/group_0428.py index 4aade727f..fa8413394 100644 --- a/githubkit/versions/v2022_11_28/types/group_0428.py +++ b/githubkit/versions/v2022_11_28/types/group_0428.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0429.py b/githubkit/versions/v2022_11_28/types/group_0429.py index 90b42131c..6950bc5a3 100644 --- a/githubkit/versions/v2022_11_28/types/group_0429.py +++ b/githubkit/versions/v2022_11_28/types/group_0429.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0430.py b/githubkit/versions/v2022_11_28/types/group_0430.py index 74c082407..5115c05f2 100644 --- a/githubkit/versions/v2022_11_28/types/group_0430.py +++ b/githubkit/versions/v2022_11_28/types/group_0430.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0431.py b/githubkit/versions/v2022_11_28/types/group_0431.py index a677fed72..84f6de885 100644 --- a/githubkit/versions/v2022_11_28/types/group_0431.py +++ b/githubkit/versions/v2022_11_28/types/group_0431.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0432.py b/githubkit/versions/v2022_11_28/types/group_0432.py index 96508d907..261ebb429 100644 --- a/githubkit/versions/v2022_11_28/types/group_0432.py +++ b/githubkit/versions/v2022_11_28/types/group_0432.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0433.py b/githubkit/versions/v2022_11_28/types/group_0433.py index 0a2db12b0..51ec5057f 100644 --- a/githubkit/versions/v2022_11_28/types/group_0433.py +++ b/githubkit/versions/v2022_11_28/types/group_0433.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0434.py b/githubkit/versions/v2022_11_28/types/group_0434.py index 43d6f04f6..1099c4505 100644 --- a/githubkit/versions/v2022_11_28/types/group_0434.py +++ b/githubkit/versions/v2022_11_28/types/group_0434.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0435.py b/githubkit/versions/v2022_11_28/types/group_0435.py index 326895cde..f290a134f 100644 --- a/githubkit/versions/v2022_11_28/types/group_0435.py +++ b/githubkit/versions/v2022_11_28/types/group_0435.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_0436.py b/githubkit/versions/v2022_11_28/types/group_0436.py index 31d4cff62..e50195868 100644 --- a/githubkit/versions/v2022_11_28/types/group_0436.py +++ b/githubkit/versions/v2022_11_28/types/group_0436.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0437.py b/githubkit/versions/v2022_11_28/types/group_0437.py index 6a068cd92..5bc445f77 100644 --- a/githubkit/versions/v2022_11_28/types/group_0437.py +++ b/githubkit/versions/v2022_11_28/types/group_0437.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0438.py b/githubkit/versions/v2022_11_28/types/group_0438.py index 160092f96..3ecd9449e 100644 --- a/githubkit/versions/v2022_11_28/types/group_0438.py +++ b/githubkit/versions/v2022_11_28/types/group_0438.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_0439.py b/githubkit/versions/v2022_11_28/types/group_0439.py index 6f813898f..087ca178e 100644 --- a/githubkit/versions/v2022_11_28/types/group_0439.py +++ b/githubkit/versions/v2022_11_28/types/group_0439.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0440.py b/githubkit/versions/v2022_11_28/types/group_0440.py index df0064150..21ccb8fc1 100644 --- a/githubkit/versions/v2022_11_28/types/group_0440.py +++ b/githubkit/versions/v2022_11_28/types/group_0440.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0441.py b/githubkit/versions/v2022_11_28/types/group_0441.py index 210e5894b..529d60869 100644 --- a/githubkit/versions/v2022_11_28/types/group_0441.py +++ b/githubkit/versions/v2022_11_28/types/group_0441.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0442.py b/githubkit/versions/v2022_11_28/types/group_0442.py index 703ca4fd6..633b2439b 100644 --- a/githubkit/versions/v2022_11_28/types/group_0442.py +++ b/githubkit/versions/v2022_11_28/types/group_0442.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0443.py b/githubkit/versions/v2022_11_28/types/group_0443.py index 59f694c6e..074dfe8ba 100644 --- a/githubkit/versions/v2022_11_28/types/group_0443.py +++ b/githubkit/versions/v2022_11_28/types/group_0443.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0444.py b/githubkit/versions/v2022_11_28/types/group_0444.py index f217e70ea..9482bf746 100644 --- a/githubkit/versions/v2022_11_28/types/group_0444.py +++ b/githubkit/versions/v2022_11_28/types/group_0444.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0445.py b/githubkit/versions/v2022_11_28/types/group_0445.py index 3d3ae9af4..f58023879 100644 --- a/githubkit/versions/v2022_11_28/types/group_0445.py +++ b/githubkit/versions/v2022_11_28/types/group_0445.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0446.py b/githubkit/versions/v2022_11_28/types/group_0446.py index 898dfc851..09b9b0486 100644 --- a/githubkit/versions/v2022_11_28/types/group_0446.py +++ b/githubkit/versions/v2022_11_28/types/group_0446.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0447.py b/githubkit/versions/v2022_11_28/types/group_0447.py index de34708c2..90ebc689d 100644 --- a/githubkit/versions/v2022_11_28/types/group_0447.py +++ b/githubkit/versions/v2022_11_28/types/group_0447.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0448.py b/githubkit/versions/v2022_11_28/types/group_0448.py index 9bafe28cc..a47fca58e 100644 --- a/githubkit/versions/v2022_11_28/types/group_0448.py +++ b/githubkit/versions/v2022_11_28/types/group_0448.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0449.py b/githubkit/versions/v2022_11_28/types/group_0449.py index c15ebc496..ebb304421 100644 --- a/githubkit/versions/v2022_11_28/types/group_0449.py +++ b/githubkit/versions/v2022_11_28/types/group_0449.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0450.py b/githubkit/versions/v2022_11_28/types/group_0450.py index bfa88b71c..2750395c5 100644 --- a/githubkit/versions/v2022_11_28/types/group_0450.py +++ b/githubkit/versions/v2022_11_28/types/group_0450.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0451.py b/githubkit/versions/v2022_11_28/types/group_0451.py index 2a355ab1d..d1471269a 100644 --- a/githubkit/versions/v2022_11_28/types/group_0451.py +++ b/githubkit/versions/v2022_11_28/types/group_0451.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0452.py b/githubkit/versions/v2022_11_28/types/group_0452.py index bf8cbfdc3..5c42393dc 100644 --- a/githubkit/versions/v2022_11_28/types/group_0452.py +++ b/githubkit/versions/v2022_11_28/types/group_0452.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0453.py b/githubkit/versions/v2022_11_28/types/group_0453.py index 078185a61..6a6903bb3 100644 --- a/githubkit/versions/v2022_11_28/types/group_0453.py +++ b/githubkit/versions/v2022_11_28/types/group_0453.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0454.py b/githubkit/versions/v2022_11_28/types/group_0454.py index 67c3a512c..44922d8a2 100644 --- a/githubkit/versions/v2022_11_28/types/group_0454.py +++ b/githubkit/versions/v2022_11_28/types/group_0454.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0455.py b/githubkit/versions/v2022_11_28/types/group_0455.py index 832ac69f0..54abd4727 100644 --- a/githubkit/versions/v2022_11_28/types/group_0455.py +++ b/githubkit/versions/v2022_11_28/types/group_0455.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0456.py b/githubkit/versions/v2022_11_28/types/group_0456.py index 00008cce7..69e3aac1c 100644 --- a/githubkit/versions/v2022_11_28/types/group_0456.py +++ b/githubkit/versions/v2022_11_28/types/group_0456.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0457.py b/githubkit/versions/v2022_11_28/types/group_0457.py index b7493c200..fba9682e0 100644 --- a/githubkit/versions/v2022_11_28/types/group_0457.py +++ b/githubkit/versions/v2022_11_28/types/group_0457.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0458.py b/githubkit/versions/v2022_11_28/types/group_0458.py index 62ef1da5f..9373ff8d7 100644 --- a/githubkit/versions/v2022_11_28/types/group_0458.py +++ b/githubkit/versions/v2022_11_28/types/group_0458.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0459.py b/githubkit/versions/v2022_11_28/types/group_0459.py index 21c6d8c00..4069c4d99 100644 --- a/githubkit/versions/v2022_11_28/types/group_0459.py +++ b/githubkit/versions/v2022_11_28/types/group_0459.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0460.py b/githubkit/versions/v2022_11_28/types/group_0460.py index 74ace7ddf..41d280768 100644 --- a/githubkit/versions/v2022_11_28/types/group_0460.py +++ b/githubkit/versions/v2022_11_28/types/group_0460.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0461.py b/githubkit/versions/v2022_11_28/types/group_0461.py index 8cbccd30b..ed9af1a72 100644 --- a/githubkit/versions/v2022_11_28/types/group_0461.py +++ b/githubkit/versions/v2022_11_28/types/group_0461.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0462.py b/githubkit/versions/v2022_11_28/types/group_0462.py index 01dc36259..6a60ba93e 100644 --- a/githubkit/versions/v2022_11_28/types/group_0462.py +++ b/githubkit/versions/v2022_11_28/types/group_0462.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0463.py b/githubkit/versions/v2022_11_28/types/group_0463.py index be3e01288..e29d13bb0 100644 --- a/githubkit/versions/v2022_11_28/types/group_0463.py +++ b/githubkit/versions/v2022_11_28/types/group_0463.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0464.py b/githubkit/versions/v2022_11_28/types/group_0464.py index 3629731ac..5c02fc700 100644 --- a/githubkit/versions/v2022_11_28/types/group_0464.py +++ b/githubkit/versions/v2022_11_28/types/group_0464.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0465.py b/githubkit/versions/v2022_11_28/types/group_0465.py index 0e7e8c2c1..0ae92f97e 100644 --- a/githubkit/versions/v2022_11_28/types/group_0465.py +++ b/githubkit/versions/v2022_11_28/types/group_0465.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0466.py b/githubkit/versions/v2022_11_28/types/group_0466.py index 149e36818..50e1b8aa9 100644 --- a/githubkit/versions/v2022_11_28/types/group_0466.py +++ b/githubkit/versions/v2022_11_28/types/group_0466.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0467.py b/githubkit/versions/v2022_11_28/types/group_0467.py index 2b58ebbc6..87bde6747 100644 --- a/githubkit/versions/v2022_11_28/types/group_0467.py +++ b/githubkit/versions/v2022_11_28/types/group_0467.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0468.py b/githubkit/versions/v2022_11_28/types/group_0468.py index 81fe83c38..3ccc58ed7 100644 --- a/githubkit/versions/v2022_11_28/types/group_0468.py +++ b/githubkit/versions/v2022_11_28/types/group_0468.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0469.py b/githubkit/versions/v2022_11_28/types/group_0469.py index b37812e61..23b6327a7 100644 --- a/githubkit/versions/v2022_11_28/types/group_0469.py +++ b/githubkit/versions/v2022_11_28/types/group_0469.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0470.py b/githubkit/versions/v2022_11_28/types/group_0470.py index 454c92a96..9d6b5cb44 100644 --- a/githubkit/versions/v2022_11_28/types/group_0470.py +++ b/githubkit/versions/v2022_11_28/types/group_0470.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0471.py b/githubkit/versions/v2022_11_28/types/group_0471.py index 6235f0666..d0b36c97e 100644 --- a/githubkit/versions/v2022_11_28/types/group_0471.py +++ b/githubkit/versions/v2022_11_28/types/group_0471.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0472.py b/githubkit/versions/v2022_11_28/types/group_0472.py index ed0ac7a24..8e8795a77 100644 --- a/githubkit/versions/v2022_11_28/types/group_0472.py +++ b/githubkit/versions/v2022_11_28/types/group_0472.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0473.py b/githubkit/versions/v2022_11_28/types/group_0473.py index 701a5dc14..79cfaac29 100644 --- a/githubkit/versions/v2022_11_28/types/group_0473.py +++ b/githubkit/versions/v2022_11_28/types/group_0473.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0474.py b/githubkit/versions/v2022_11_28/types/group_0474.py index c8b716eb0..bd47798fa 100644 --- a/githubkit/versions/v2022_11_28/types/group_0474.py +++ b/githubkit/versions/v2022_11_28/types/group_0474.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0475.py b/githubkit/versions/v2022_11_28/types/group_0475.py index 2491f9814..c070b833f 100644 --- a/githubkit/versions/v2022_11_28/types/group_0475.py +++ b/githubkit/versions/v2022_11_28/types/group_0475.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0476.py b/githubkit/versions/v2022_11_28/types/group_0476.py index 03ecba74b..17ab868ec 100644 --- a/githubkit/versions/v2022_11_28/types/group_0476.py +++ b/githubkit/versions/v2022_11_28/types/group_0476.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0477.py b/githubkit/versions/v2022_11_28/types/group_0477.py index 3894f723a..a9a2d7bd6 100644 --- a/githubkit/versions/v2022_11_28/types/group_0477.py +++ b/githubkit/versions/v2022_11_28/types/group_0477.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0478.py b/githubkit/versions/v2022_11_28/types/group_0478.py index 02357bca3..7b4b74ff3 100644 --- a/githubkit/versions/v2022_11_28/types/group_0478.py +++ b/githubkit/versions/v2022_11_28/types/group_0478.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0479.py b/githubkit/versions/v2022_11_28/types/group_0479.py index 692b1a39d..a238b6095 100644 --- a/githubkit/versions/v2022_11_28/types/group_0479.py +++ b/githubkit/versions/v2022_11_28/types/group_0479.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0480.py b/githubkit/versions/v2022_11_28/types/group_0480.py index 4495832f4..6ea542466 100644 --- a/githubkit/versions/v2022_11_28/types/group_0480.py +++ b/githubkit/versions/v2022_11_28/types/group_0480.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0481.py b/githubkit/versions/v2022_11_28/types/group_0481.py index 724e5495b..0ad9e63b9 100644 --- a/githubkit/versions/v2022_11_28/types/group_0481.py +++ b/githubkit/versions/v2022_11_28/types/group_0481.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0482.py b/githubkit/versions/v2022_11_28/types/group_0482.py index dcbf1cb14..122ddb22c 100644 --- a/githubkit/versions/v2022_11_28/types/group_0482.py +++ b/githubkit/versions/v2022_11_28/types/group_0482.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0483.py b/githubkit/versions/v2022_11_28/types/group_0483.py index 914469e24..3cca84c7e 100644 --- a/githubkit/versions/v2022_11_28/types/group_0483.py +++ b/githubkit/versions/v2022_11_28/types/group_0483.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0484.py b/githubkit/versions/v2022_11_28/types/group_0484.py index 1695a8f4f..d21947270 100644 --- a/githubkit/versions/v2022_11_28/types/group_0484.py +++ b/githubkit/versions/v2022_11_28/types/group_0484.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0485.py b/githubkit/versions/v2022_11_28/types/group_0485.py index d1f6af59f..7f375e7cc 100644 --- a/githubkit/versions/v2022_11_28/types/group_0485.py +++ b/githubkit/versions/v2022_11_28/types/group_0485.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0486.py b/githubkit/versions/v2022_11_28/types/group_0486.py index fea863db7..204b9c6ef 100644 --- a/githubkit/versions/v2022_11_28/types/group_0486.py +++ b/githubkit/versions/v2022_11_28/types/group_0486.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0487.py b/githubkit/versions/v2022_11_28/types/group_0487.py index 5ab2e3e8d..255b464c8 100644 --- a/githubkit/versions/v2022_11_28/types/group_0487.py +++ b/githubkit/versions/v2022_11_28/types/group_0487.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0488.py b/githubkit/versions/v2022_11_28/types/group_0488.py index 45d98d017..be568d6c3 100644 --- a/githubkit/versions/v2022_11_28/types/group_0488.py +++ b/githubkit/versions/v2022_11_28/types/group_0488.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0489.py b/githubkit/versions/v2022_11_28/types/group_0489.py index ecbea5d87..6591ad655 100644 --- a/githubkit/versions/v2022_11_28/types/group_0489.py +++ b/githubkit/versions/v2022_11_28/types/group_0489.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0490.py b/githubkit/versions/v2022_11_28/types/group_0490.py index d1f765c6a..7b05f1bde 100644 --- a/githubkit/versions/v2022_11_28/types/group_0490.py +++ b/githubkit/versions/v2022_11_28/types/group_0490.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0491.py b/githubkit/versions/v2022_11_28/types/group_0491.py index cbca110ae..2ff2292da 100644 --- a/githubkit/versions/v2022_11_28/types/group_0491.py +++ b/githubkit/versions/v2022_11_28/types/group_0491.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0492.py b/githubkit/versions/v2022_11_28/types/group_0492.py index cdf8e8046..32512a608 100644 --- a/githubkit/versions/v2022_11_28/types/group_0492.py +++ b/githubkit/versions/v2022_11_28/types/group_0492.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0493.py b/githubkit/versions/v2022_11_28/types/group_0493.py index f4b9fb78b..c2485f86f 100644 --- a/githubkit/versions/v2022_11_28/types/group_0493.py +++ b/githubkit/versions/v2022_11_28/types/group_0493.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0494.py b/githubkit/versions/v2022_11_28/types/group_0494.py index 178e28e20..a73f7cc15 100644 --- a/githubkit/versions/v2022_11_28/types/group_0494.py +++ b/githubkit/versions/v2022_11_28/types/group_0494.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0495.py b/githubkit/versions/v2022_11_28/types/group_0495.py index 54265a2c0..75a1610df 100644 --- a/githubkit/versions/v2022_11_28/types/group_0495.py +++ b/githubkit/versions/v2022_11_28/types/group_0495.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0496.py b/githubkit/versions/v2022_11_28/types/group_0496.py index 32b39a593..55982c6b1 100644 --- a/githubkit/versions/v2022_11_28/types/group_0496.py +++ b/githubkit/versions/v2022_11_28/types/group_0496.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0497.py b/githubkit/versions/v2022_11_28/types/group_0497.py index e924a4228..191e0e238 100644 --- a/githubkit/versions/v2022_11_28/types/group_0497.py +++ b/githubkit/versions/v2022_11_28/types/group_0497.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0498.py b/githubkit/versions/v2022_11_28/types/group_0498.py index 75faf20f0..f247fd3ce 100644 --- a/githubkit/versions/v2022_11_28/types/group_0498.py +++ b/githubkit/versions/v2022_11_28/types/group_0498.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0499.py b/githubkit/versions/v2022_11_28/types/group_0499.py index e9cdce4be..186512161 100644 --- a/githubkit/versions/v2022_11_28/types/group_0499.py +++ b/githubkit/versions/v2022_11_28/types/group_0499.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0500.py b/githubkit/versions/v2022_11_28/types/group_0500.py index 7de75993c..d8192600f 100644 --- a/githubkit/versions/v2022_11_28/types/group_0500.py +++ b/githubkit/versions/v2022_11_28/types/group_0500.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0501.py b/githubkit/versions/v2022_11_28/types/group_0501.py index 922af1242..0e45aaf00 100644 --- a/githubkit/versions/v2022_11_28/types/group_0501.py +++ b/githubkit/versions/v2022_11_28/types/group_0501.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0502.py b/githubkit/versions/v2022_11_28/types/group_0502.py index 094e5288c..c7704b47c 100644 --- a/githubkit/versions/v2022_11_28/types/group_0502.py +++ b/githubkit/versions/v2022_11_28/types/group_0502.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0503.py b/githubkit/versions/v2022_11_28/types/group_0503.py index e57b4e482..1c6b5f6f3 100644 --- a/githubkit/versions/v2022_11_28/types/group_0503.py +++ b/githubkit/versions/v2022_11_28/types/group_0503.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0504.py b/githubkit/versions/v2022_11_28/types/group_0504.py index 5e078f3f2..0ca77e675 100644 --- a/githubkit/versions/v2022_11_28/types/group_0504.py +++ b/githubkit/versions/v2022_11_28/types/group_0504.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0505.py b/githubkit/versions/v2022_11_28/types/group_0505.py index cd00df7d7..421dcb110 100644 --- a/githubkit/versions/v2022_11_28/types/group_0505.py +++ b/githubkit/versions/v2022_11_28/types/group_0505.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0506.py b/githubkit/versions/v2022_11_28/types/group_0506.py index 419e09477..465a1eda8 100644 --- a/githubkit/versions/v2022_11_28/types/group_0506.py +++ b/githubkit/versions/v2022_11_28/types/group_0506.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0507.py b/githubkit/versions/v2022_11_28/types/group_0507.py index 3003b8041..33c4dd294 100644 --- a/githubkit/versions/v2022_11_28/types/group_0507.py +++ b/githubkit/versions/v2022_11_28/types/group_0507.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0508.py b/githubkit/versions/v2022_11_28/types/group_0508.py index 78847d880..f9ea52835 100644 --- a/githubkit/versions/v2022_11_28/types/group_0508.py +++ b/githubkit/versions/v2022_11_28/types/group_0508.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0509.py b/githubkit/versions/v2022_11_28/types/group_0509.py index 14e6c7377..8a6a622e3 100644 --- a/githubkit/versions/v2022_11_28/types/group_0509.py +++ b/githubkit/versions/v2022_11_28/types/group_0509.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0510.py b/githubkit/versions/v2022_11_28/types/group_0510.py index 6a8c8fe1a..f2651cca9 100644 --- a/githubkit/versions/v2022_11_28/types/group_0510.py +++ b/githubkit/versions/v2022_11_28/types/group_0510.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0511.py b/githubkit/versions/v2022_11_28/types/group_0511.py index 65520e80c..f74555f5f 100644 --- a/githubkit/versions/v2022_11_28/types/group_0511.py +++ b/githubkit/versions/v2022_11_28/types/group_0511.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0512.py b/githubkit/versions/v2022_11_28/types/group_0512.py index 843be8b4b..7ee29b7ad 100644 --- a/githubkit/versions/v2022_11_28/types/group_0512.py +++ b/githubkit/versions/v2022_11_28/types/group_0512.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0513.py b/githubkit/versions/v2022_11_28/types/group_0513.py index e5143c2f6..dc8e90af3 100644 --- a/githubkit/versions/v2022_11_28/types/group_0513.py +++ b/githubkit/versions/v2022_11_28/types/group_0513.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0514.py b/githubkit/versions/v2022_11_28/types/group_0514.py index 348dfcdeb..e342d0903 100644 --- a/githubkit/versions/v2022_11_28/types/group_0514.py +++ b/githubkit/versions/v2022_11_28/types/group_0514.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0515.py b/githubkit/versions/v2022_11_28/types/group_0515.py index 053957b7a..4fa8a8a2e 100644 --- a/githubkit/versions/v2022_11_28/types/group_0515.py +++ b/githubkit/versions/v2022_11_28/types/group_0515.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0516.py b/githubkit/versions/v2022_11_28/types/group_0516.py index 9959433ae..3219fdf9c 100644 --- a/githubkit/versions/v2022_11_28/types/group_0516.py +++ b/githubkit/versions/v2022_11_28/types/group_0516.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0517.py b/githubkit/versions/v2022_11_28/types/group_0517.py index 40b23283b..20ef9e20f 100644 --- a/githubkit/versions/v2022_11_28/types/group_0517.py +++ b/githubkit/versions/v2022_11_28/types/group_0517.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0518.py b/githubkit/versions/v2022_11_28/types/group_0518.py index 2ca656546..ca48eb7db 100644 --- a/githubkit/versions/v2022_11_28/types/group_0518.py +++ b/githubkit/versions/v2022_11_28/types/group_0518.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0519.py b/githubkit/versions/v2022_11_28/types/group_0519.py index d3c2d46f8..f5591dde2 100644 --- a/githubkit/versions/v2022_11_28/types/group_0519.py +++ b/githubkit/versions/v2022_11_28/types/group_0519.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0520.py b/githubkit/versions/v2022_11_28/types/group_0520.py index fd5b50d2b..1c4cc1fa6 100644 --- a/githubkit/versions/v2022_11_28/types/group_0520.py +++ b/githubkit/versions/v2022_11_28/types/group_0520.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0521.py b/githubkit/versions/v2022_11_28/types/group_0521.py index d9e026ca0..bc16322b3 100644 --- a/githubkit/versions/v2022_11_28/types/group_0521.py +++ b/githubkit/versions/v2022_11_28/types/group_0521.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0522.py b/githubkit/versions/v2022_11_28/types/group_0522.py index 2649b2955..8cb29a9fa 100644 --- a/githubkit/versions/v2022_11_28/types/group_0522.py +++ b/githubkit/versions/v2022_11_28/types/group_0522.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0523.py b/githubkit/versions/v2022_11_28/types/group_0523.py index 1f472b500..223c79bab 100644 --- a/githubkit/versions/v2022_11_28/types/group_0523.py +++ b/githubkit/versions/v2022_11_28/types/group_0523.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0524.py b/githubkit/versions/v2022_11_28/types/group_0524.py index 0b14e9891..5ce5a58ae 100644 --- a/githubkit/versions/v2022_11_28/types/group_0524.py +++ b/githubkit/versions/v2022_11_28/types/group_0524.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0525.py b/githubkit/versions/v2022_11_28/types/group_0525.py index 009af9827..704d6aa7d 100644 --- a/githubkit/versions/v2022_11_28/types/group_0525.py +++ b/githubkit/versions/v2022_11_28/types/group_0525.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0526.py b/githubkit/versions/v2022_11_28/types/group_0526.py index da5a893f6..a819fe064 100644 --- a/githubkit/versions/v2022_11_28/types/group_0526.py +++ b/githubkit/versions/v2022_11_28/types/group_0526.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/v2022_11_28/types/group_0527.py b/githubkit/versions/v2022_11_28/types/group_0527.py index 0a28535ed..f1013cc58 100644 --- a/githubkit/versions/v2022_11_28/types/group_0527.py +++ b/githubkit/versions/v2022_11_28/types/group_0527.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0528.py b/githubkit/versions/v2022_11_28/types/group_0528.py index 4ed10a138..4e2e81e46 100644 --- a/githubkit/versions/v2022_11_28/types/group_0528.py +++ b/githubkit/versions/v2022_11_28/types/group_0528.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0529.py b/githubkit/versions/v2022_11_28/types/group_0529.py index f27853314..e8e1c854b 100644 --- a/githubkit/versions/v2022_11_28/types/group_0529.py +++ b/githubkit/versions/v2022_11_28/types/group_0529.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0530.py b/githubkit/versions/v2022_11_28/types/group_0530.py index 56fb6d461..00091d05e 100644 --- a/githubkit/versions/v2022_11_28/types/group_0530.py +++ b/githubkit/versions/v2022_11_28/types/group_0530.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0531.py b/githubkit/versions/v2022_11_28/types/group_0531.py index 15828597e..9cf453b47 100644 --- a/githubkit/versions/v2022_11_28/types/group_0531.py +++ b/githubkit/versions/v2022_11_28/types/group_0531.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0532.py b/githubkit/versions/v2022_11_28/types/group_0532.py index 4c25e6fbd..e027e2a7a 100644 --- a/githubkit/versions/v2022_11_28/types/group_0532.py +++ b/githubkit/versions/v2022_11_28/types/group_0532.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0533.py b/githubkit/versions/v2022_11_28/types/group_0533.py index a28522799..afb4ae4d9 100644 --- a/githubkit/versions/v2022_11_28/types/group_0533.py +++ b/githubkit/versions/v2022_11_28/types/group_0533.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0534.py b/githubkit/versions/v2022_11_28/types/group_0534.py index a2f6a825e..f5f519708 100644 --- a/githubkit/versions/v2022_11_28/types/group_0534.py +++ b/githubkit/versions/v2022_11_28/types/group_0534.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0535.py b/githubkit/versions/v2022_11_28/types/group_0535.py index 14e3ccde0..cff866ce6 100644 --- a/githubkit/versions/v2022_11_28/types/group_0535.py +++ b/githubkit/versions/v2022_11_28/types/group_0535.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0536.py b/githubkit/versions/v2022_11_28/types/group_0536.py index 5447fd835..3b9f7ceda 100644 --- a/githubkit/versions/v2022_11_28/types/group_0536.py +++ b/githubkit/versions/v2022_11_28/types/group_0536.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0537.py b/githubkit/versions/v2022_11_28/types/group_0537.py index 2a4da97db..429e42215 100644 --- a/githubkit/versions/v2022_11_28/types/group_0537.py +++ b/githubkit/versions/v2022_11_28/types/group_0537.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0538.py b/githubkit/versions/v2022_11_28/types/group_0538.py index 2e6fe51bb..3b1ef8db5 100644 --- a/githubkit/versions/v2022_11_28/types/group_0538.py +++ b/githubkit/versions/v2022_11_28/types/group_0538.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0539.py b/githubkit/versions/v2022_11_28/types/group_0539.py index 985078ce6..c07318424 100644 --- a/githubkit/versions/v2022_11_28/types/group_0539.py +++ b/githubkit/versions/v2022_11_28/types/group_0539.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0540.py b/githubkit/versions/v2022_11_28/types/group_0540.py index 5440032f5..b31e9ca87 100644 --- a/githubkit/versions/v2022_11_28/types/group_0540.py +++ b/githubkit/versions/v2022_11_28/types/group_0540.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0541.py b/githubkit/versions/v2022_11_28/types/group_0541.py index f55495d92..676c7384a 100644 --- a/githubkit/versions/v2022_11_28/types/group_0541.py +++ b/githubkit/versions/v2022_11_28/types/group_0541.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0542.py b/githubkit/versions/v2022_11_28/types/group_0542.py index 7387d97bd..83701a906 100644 --- a/githubkit/versions/v2022_11_28/types/group_0542.py +++ b/githubkit/versions/v2022_11_28/types/group_0542.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0543.py b/githubkit/versions/v2022_11_28/types/group_0543.py index 3eaab7095..71f829554 100644 --- a/githubkit/versions/v2022_11_28/types/group_0543.py +++ b/githubkit/versions/v2022_11_28/types/group_0543.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0544.py b/githubkit/versions/v2022_11_28/types/group_0544.py index 3ac648a8c..daf7862c3 100644 --- a/githubkit/versions/v2022_11_28/types/group_0544.py +++ b/githubkit/versions/v2022_11_28/types/group_0544.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0545.py b/githubkit/versions/v2022_11_28/types/group_0545.py index b977bb5ea..7f10d53c7 100644 --- a/githubkit/versions/v2022_11_28/types/group_0545.py +++ b/githubkit/versions/v2022_11_28/types/group_0545.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0546.py b/githubkit/versions/v2022_11_28/types/group_0546.py index a4b62a49e..c09aab021 100644 --- a/githubkit/versions/v2022_11_28/types/group_0546.py +++ b/githubkit/versions/v2022_11_28/types/group_0546.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0547.py b/githubkit/versions/v2022_11_28/types/group_0547.py index 41b8e70c2..6345a6c5c 100644 --- a/githubkit/versions/v2022_11_28/types/group_0547.py +++ b/githubkit/versions/v2022_11_28/types/group_0547.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0548.py b/githubkit/versions/v2022_11_28/types/group_0548.py index 1b885d1b4..4fcc651ea 100644 --- a/githubkit/versions/v2022_11_28/types/group_0548.py +++ b/githubkit/versions/v2022_11_28/types/group_0548.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0549.py b/githubkit/versions/v2022_11_28/types/group_0549.py index d4baec5d5..0f334c243 100644 --- a/githubkit/versions/v2022_11_28/types/group_0549.py +++ b/githubkit/versions/v2022_11_28/types/group_0549.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0550.py b/githubkit/versions/v2022_11_28/types/group_0550.py index 61daf992b..5f54ac7f1 100644 --- a/githubkit/versions/v2022_11_28/types/group_0550.py +++ b/githubkit/versions/v2022_11_28/types/group_0550.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0551.py b/githubkit/versions/v2022_11_28/types/group_0551.py index b409ab6aa..fcb72bab9 100644 --- a/githubkit/versions/v2022_11_28/types/group_0551.py +++ b/githubkit/versions/v2022_11_28/types/group_0551.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0552.py b/githubkit/versions/v2022_11_28/types/group_0552.py index 8d0a9d5e7..0dc9726fb 100644 --- a/githubkit/versions/v2022_11_28/types/group_0552.py +++ b/githubkit/versions/v2022_11_28/types/group_0552.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0553.py b/githubkit/versions/v2022_11_28/types/group_0553.py index e25cfdfd8..adbded2dc 100644 --- a/githubkit/versions/v2022_11_28/types/group_0553.py +++ b/githubkit/versions/v2022_11_28/types/group_0553.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0554.py b/githubkit/versions/v2022_11_28/types/group_0554.py index 346e1551c..9acab6d07 100644 --- a/githubkit/versions/v2022_11_28/types/group_0554.py +++ b/githubkit/versions/v2022_11_28/types/group_0554.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0555.py b/githubkit/versions/v2022_11_28/types/group_0555.py index 81659570f..0799ac62f 100644 --- a/githubkit/versions/v2022_11_28/types/group_0555.py +++ b/githubkit/versions/v2022_11_28/types/group_0555.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0556.py b/githubkit/versions/v2022_11_28/types/group_0556.py index bf78410fa..a31a70380 100644 --- a/githubkit/versions/v2022_11_28/types/group_0556.py +++ b/githubkit/versions/v2022_11_28/types/group_0556.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0557.py b/githubkit/versions/v2022_11_28/types/group_0557.py index 5c1dbee7a..b72768ec0 100644 --- a/githubkit/versions/v2022_11_28/types/group_0557.py +++ b/githubkit/versions/v2022_11_28/types/group_0557.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0558.py b/githubkit/versions/v2022_11_28/types/group_0558.py index 79994a495..19827aede 100644 --- a/githubkit/versions/v2022_11_28/types/group_0558.py +++ b/githubkit/versions/v2022_11_28/types/group_0558.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal @@ -17,7 +16,9 @@ class WebhookMarketplacePurchaseCancelledPropMarketplacePurchaseAllof0Type(TypedDict): """Marketplace Purchase""" - account: WebhookMarketplacePurchaseCancelledPropMarketplacePurchaseAllof0PropAccountType + account: ( + WebhookMarketplacePurchaseCancelledPropMarketplacePurchaseAllof0PropAccountType + ) billing_cycle: str free_trial_ends_on: Union[str, None] next_billing_date: NotRequired[Union[str, None]] diff --git a/githubkit/versions/v2022_11_28/types/group_0559.py b/githubkit/versions/v2022_11_28/types/group_0559.py index 7c6c189c5..6f426e3ee 100644 --- a/githubkit/versions/v2022_11_28/types/group_0559.py +++ b/githubkit/versions/v2022_11_28/types/group_0559.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0560.py b/githubkit/versions/v2022_11_28/types/group_0560.py index 844f14eec..97e3c5742 100644 --- a/githubkit/versions/v2022_11_28/types/group_0560.py +++ b/githubkit/versions/v2022_11_28/types/group_0560.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal @@ -77,7 +76,9 @@ class WebhookMarketplacePurchaseChangedPropMarketplacePurchaseMergedPlanType(Typ class WebhookMarketplacePurchaseChangedPropPreviousMarketplacePurchaseType(TypedDict): """Marketplace Purchase""" - account: WebhookMarketplacePurchaseChangedPropPreviousMarketplacePurchasePropAccountType + account: ( + WebhookMarketplacePurchaseChangedPropPreviousMarketplacePurchasePropAccountType + ) billing_cycle: str free_trial_ends_on: Union[str, None] next_billing_date: NotRequired[Union[str, None]] diff --git a/githubkit/versions/v2022_11_28/types/group_0561.py b/githubkit/versions/v2022_11_28/types/group_0561.py index aa0491e70..34fffd27e 100644 --- a/githubkit/versions/v2022_11_28/types/group_0561.py +++ b/githubkit/versions/v2022_11_28/types/group_0561.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal @@ -17,7 +16,9 @@ class WebhookMarketplacePurchaseChangedPropMarketplacePurchaseAllof0Type(TypedDict): """Marketplace Purchase""" - account: WebhookMarketplacePurchaseChangedPropMarketplacePurchaseAllof0PropAccountType + account: ( + WebhookMarketplacePurchaseChangedPropMarketplacePurchaseAllof0PropAccountType + ) billing_cycle: str free_trial_ends_on: Union[str, None] next_billing_date: NotRequired[Union[str, None]] diff --git a/githubkit/versions/v2022_11_28/types/group_0562.py b/githubkit/versions/v2022_11_28/types/group_0562.py index 9035326f0..c9b97e140 100644 --- a/githubkit/versions/v2022_11_28/types/group_0562.py +++ b/githubkit/versions/v2022_11_28/types/group_0562.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0563.py b/githubkit/versions/v2022_11_28/types/group_0563.py index f32c331ef..c0578132f 100644 --- a/githubkit/versions/v2022_11_28/types/group_0563.py +++ b/githubkit/versions/v2022_11_28/types/group_0563.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal @@ -27,7 +26,9 @@ class WebhookMarketplacePurchasePendingChangeType(TypedDict): effective_date: str enterprise: NotRequired[EnterpriseWebhooksType] installation: NotRequired[SimpleInstallationType] - marketplace_purchase: WebhookMarketplacePurchasePendingChangePropMarketplacePurchaseType + marketplace_purchase: ( + WebhookMarketplacePurchasePendingChangePropMarketplacePurchaseType + ) organization: NotRequired[OrganizationSimpleWebhooksType] previous_marketplace_purchase: NotRequired[ WebhookMarketplacePurchasePendingChangePropPreviousMarketplacePurchaseType @@ -39,7 +40,9 @@ class WebhookMarketplacePurchasePendingChangeType(TypedDict): class WebhookMarketplacePurchasePendingChangePropMarketplacePurchaseType(TypedDict): """WebhookMarketplacePurchasePendingChangePropMarketplacePurchase""" - account: WebhookMarketplacePurchasePendingChangePropMarketplacePurchaseMergedAccountType + account: ( + WebhookMarketplacePurchasePendingChangePropMarketplacePurchaseMergedAccountType + ) billing_cycle: str free_trial_ends_on: Union[Union[str, None], None] next_billing_date: Union[Union[str, None], None] diff --git a/githubkit/versions/v2022_11_28/types/group_0564.py b/githubkit/versions/v2022_11_28/types/group_0564.py index 436305d95..1a30777df 100644 --- a/githubkit/versions/v2022_11_28/types/group_0564.py +++ b/githubkit/versions/v2022_11_28/types/group_0564.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal @@ -24,7 +23,9 @@ class WebhookMarketplacePurchasePendingChangePropMarketplacePurchaseAllof0Type( free_trial_ends_on: Union[str, None] next_billing_date: NotRequired[Union[str, None]] on_free_trial: bool - plan: WebhookMarketplacePurchasePendingChangePropMarketplacePurchaseAllof0PropPlanType + plan: ( + WebhookMarketplacePurchasePendingChangePropMarketplacePurchaseAllof0PropPlanType + ) unit_count: int diff --git a/githubkit/versions/v2022_11_28/types/group_0565.py b/githubkit/versions/v2022_11_28/types/group_0565.py index 517bc7f15..d70a4471f 100644 --- a/githubkit/versions/v2022_11_28/types/group_0565.py +++ b/githubkit/versions/v2022_11_28/types/group_0565.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0566.py b/githubkit/versions/v2022_11_28/types/group_0566.py index 1b5756842..f109bf899 100644 --- a/githubkit/versions/v2022_11_28/types/group_0566.py +++ b/githubkit/versions/v2022_11_28/types/group_0566.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal @@ -30,7 +29,9 @@ class WebhookMarketplacePurchasePendingChangeCancelledType(TypedDict): effective_date: str enterprise: NotRequired[EnterpriseWebhooksType] installation: NotRequired[SimpleInstallationType] - marketplace_purchase: WebhookMarketplacePurchasePendingChangeCancelledPropMarketplacePurchaseType + marketplace_purchase: ( + WebhookMarketplacePurchasePendingChangeCancelledPropMarketplacePurchaseType + ) organization: NotRequired[OrganizationSimpleWebhooksType] previous_marketplace_purchase: NotRequired[ WebhookMarketplacePurchasePendingChangeCancelledPropPreviousMarketplacePurchaseType diff --git a/githubkit/versions/v2022_11_28/types/group_0567.py b/githubkit/versions/v2022_11_28/types/group_0567.py index ae40d981a..d800858ce 100644 --- a/githubkit/versions/v2022_11_28/types/group_0567.py +++ b/githubkit/versions/v2022_11_28/types/group_0567.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0568.py b/githubkit/versions/v2022_11_28/types/group_0568.py index cd0ec8789..a6ebf242f 100644 --- a/githubkit/versions/v2022_11_28/types/group_0568.py +++ b/githubkit/versions/v2022_11_28/types/group_0568.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0569.py b/githubkit/versions/v2022_11_28/types/group_0569.py index c2cffe4e9..d77fdaee5 100644 --- a/githubkit/versions/v2022_11_28/types/group_0569.py +++ b/githubkit/versions/v2022_11_28/types/group_0569.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0570.py b/githubkit/versions/v2022_11_28/types/group_0570.py index 5078fbb44..24277ae5d 100644 --- a/githubkit/versions/v2022_11_28/types/group_0570.py +++ b/githubkit/versions/v2022_11_28/types/group_0570.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0571.py b/githubkit/versions/v2022_11_28/types/group_0571.py index b6dd01360..8a8df753d 100644 --- a/githubkit/versions/v2022_11_28/types/group_0571.py +++ b/githubkit/versions/v2022_11_28/types/group_0571.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0572.py b/githubkit/versions/v2022_11_28/types/group_0572.py index 604401704..008919a32 100644 --- a/githubkit/versions/v2022_11_28/types/group_0572.py +++ b/githubkit/versions/v2022_11_28/types/group_0572.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal @@ -17,7 +16,9 @@ class WebhookMarketplacePurchasePurchasedPropMarketplacePurchaseAllof0Type(TypedDict): """Marketplace Purchase""" - account: WebhookMarketplacePurchasePurchasedPropMarketplacePurchaseAllof0PropAccountType + account: ( + WebhookMarketplacePurchasePurchasedPropMarketplacePurchaseAllof0PropAccountType + ) billing_cycle: str free_trial_ends_on: Union[str, None] next_billing_date: NotRequired[Union[str, None]] diff --git a/githubkit/versions/v2022_11_28/types/group_0573.py b/githubkit/versions/v2022_11_28/types/group_0573.py index 60649fe3b..d52b60497 100644 --- a/githubkit/versions/v2022_11_28/types/group_0573.py +++ b/githubkit/versions/v2022_11_28/types/group_0573.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0574.py b/githubkit/versions/v2022_11_28/types/group_0574.py index 7afa77a59..c9b617466 100644 --- a/githubkit/versions/v2022_11_28/types/group_0574.py +++ b/githubkit/versions/v2022_11_28/types/group_0574.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0575.py b/githubkit/versions/v2022_11_28/types/group_0575.py index 555b15e49..4a72c8d14 100644 --- a/githubkit/versions/v2022_11_28/types/group_0575.py +++ b/githubkit/versions/v2022_11_28/types/group_0575.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0576.py b/githubkit/versions/v2022_11_28/types/group_0576.py index 98b90cac4..293e0b97e 100644 --- a/githubkit/versions/v2022_11_28/types/group_0576.py +++ b/githubkit/versions/v2022_11_28/types/group_0576.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0577.py b/githubkit/versions/v2022_11_28/types/group_0577.py index 9496f557d..a2936af53 100644 --- a/githubkit/versions/v2022_11_28/types/group_0577.py +++ b/githubkit/versions/v2022_11_28/types/group_0577.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0578.py b/githubkit/versions/v2022_11_28/types/group_0578.py index 27435831b..4995e5b1c 100644 --- a/githubkit/versions/v2022_11_28/types/group_0578.py +++ b/githubkit/versions/v2022_11_28/types/group_0578.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0579.py b/githubkit/versions/v2022_11_28/types/group_0579.py index d46a05935..9e1a424a5 100644 --- a/githubkit/versions/v2022_11_28/types/group_0579.py +++ b/githubkit/versions/v2022_11_28/types/group_0579.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0580.py b/githubkit/versions/v2022_11_28/types/group_0580.py index d36932939..053e2d75c 100644 --- a/githubkit/versions/v2022_11_28/types/group_0580.py +++ b/githubkit/versions/v2022_11_28/types/group_0580.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0581.py b/githubkit/versions/v2022_11_28/types/group_0581.py index cea01487f..b006264ea 100644 --- a/githubkit/versions/v2022_11_28/types/group_0581.py +++ b/githubkit/versions/v2022_11_28/types/group_0581.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0582.py b/githubkit/versions/v2022_11_28/types/group_0582.py index 2ab1aa510..da28c079d 100644 --- a/githubkit/versions/v2022_11_28/types/group_0582.py +++ b/githubkit/versions/v2022_11_28/types/group_0582.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0583.py b/githubkit/versions/v2022_11_28/types/group_0583.py index 80440f1a4..7baa26856 100644 --- a/githubkit/versions/v2022_11_28/types/group_0583.py +++ b/githubkit/versions/v2022_11_28/types/group_0583.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0584.py b/githubkit/versions/v2022_11_28/types/group_0584.py index 0e86e7109..bec6b2866 100644 --- a/githubkit/versions/v2022_11_28/types/group_0584.py +++ b/githubkit/versions/v2022_11_28/types/group_0584.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0585.py b/githubkit/versions/v2022_11_28/types/group_0585.py index 6f2b5f769..e83beedbd 100644 --- a/githubkit/versions/v2022_11_28/types/group_0585.py +++ b/githubkit/versions/v2022_11_28/types/group_0585.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0586.py b/githubkit/versions/v2022_11_28/types/group_0586.py index 4afc6d31e..2a0e612f4 100644 --- a/githubkit/versions/v2022_11_28/types/group_0586.py +++ b/githubkit/versions/v2022_11_28/types/group_0586.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0587.py b/githubkit/versions/v2022_11_28/types/group_0587.py index bdfb6f8eb..1517c804f 100644 --- a/githubkit/versions/v2022_11_28/types/group_0587.py +++ b/githubkit/versions/v2022_11_28/types/group_0587.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0588.py b/githubkit/versions/v2022_11_28/types/group_0588.py index e029f66a0..d240823de 100644 --- a/githubkit/versions/v2022_11_28/types/group_0588.py +++ b/githubkit/versions/v2022_11_28/types/group_0588.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0589.py b/githubkit/versions/v2022_11_28/types/group_0589.py index fb95cbc6d..f86ea69bf 100644 --- a/githubkit/versions/v2022_11_28/types/group_0589.py +++ b/githubkit/versions/v2022_11_28/types/group_0589.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0590.py b/githubkit/versions/v2022_11_28/types/group_0590.py index 3304e56c5..e4c6cb3c8 100644 --- a/githubkit/versions/v2022_11_28/types/group_0590.py +++ b/githubkit/versions/v2022_11_28/types/group_0590.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0591.py b/githubkit/versions/v2022_11_28/types/group_0591.py index b9c24dddd..7cc9f2164 100644 --- a/githubkit/versions/v2022_11_28/types/group_0591.py +++ b/githubkit/versions/v2022_11_28/types/group_0591.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0592.py b/githubkit/versions/v2022_11_28/types/group_0592.py index 8e404d391..c391f6ed1 100644 --- a/githubkit/versions/v2022_11_28/types/group_0592.py +++ b/githubkit/versions/v2022_11_28/types/group_0592.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0593.py b/githubkit/versions/v2022_11_28/types/group_0593.py index 2e2cddb14..cde5f3874 100644 --- a/githubkit/versions/v2022_11_28/types/group_0593.py +++ b/githubkit/versions/v2022_11_28/types/group_0593.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0594.py b/githubkit/versions/v2022_11_28/types/group_0594.py index 492741b62..20f1913b5 100644 --- a/githubkit/versions/v2022_11_28/types/group_0594.py +++ b/githubkit/versions/v2022_11_28/types/group_0594.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0595.py b/githubkit/versions/v2022_11_28/types/group_0595.py index cd11fbd76..f8d647402 100644 --- a/githubkit/versions/v2022_11_28/types/group_0595.py +++ b/githubkit/versions/v2022_11_28/types/group_0595.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0596.py b/githubkit/versions/v2022_11_28/types/group_0596.py index 7954df1d4..ea3910462 100644 --- a/githubkit/versions/v2022_11_28/types/group_0596.py +++ b/githubkit/versions/v2022_11_28/types/group_0596.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0597.py b/githubkit/versions/v2022_11_28/types/group_0597.py index ca71fe3a0..5b8553709 100644 --- a/githubkit/versions/v2022_11_28/types/group_0597.py +++ b/githubkit/versions/v2022_11_28/types/group_0597.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0598.py b/githubkit/versions/v2022_11_28/types/group_0598.py index 84da552fc..3a2582462 100644 --- a/githubkit/versions/v2022_11_28/types/group_0598.py +++ b/githubkit/versions/v2022_11_28/types/group_0598.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0599.py b/githubkit/versions/v2022_11_28/types/group_0599.py index 1a6bce7ec..28c2df086 100644 --- a/githubkit/versions/v2022_11_28/types/group_0599.py +++ b/githubkit/versions/v2022_11_28/types/group_0599.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0600.py b/githubkit/versions/v2022_11_28/types/group_0600.py index da6b606cc..cc2c44303 100644 --- a/githubkit/versions/v2022_11_28/types/group_0600.py +++ b/githubkit/versions/v2022_11_28/types/group_0600.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0601.py b/githubkit/versions/v2022_11_28/types/group_0601.py index 16720c68b..645685268 100644 --- a/githubkit/versions/v2022_11_28/types/group_0601.py +++ b/githubkit/versions/v2022_11_28/types/group_0601.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0602.py b/githubkit/versions/v2022_11_28/types/group_0602.py index 7d3aa7ee6..be780e263 100644 --- a/githubkit/versions/v2022_11_28/types/group_0602.py +++ b/githubkit/versions/v2022_11_28/types/group_0602.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0603.py b/githubkit/versions/v2022_11_28/types/group_0603.py index db7d084fb..6e6701056 100644 --- a/githubkit/versions/v2022_11_28/types/group_0603.py +++ b/githubkit/versions/v2022_11_28/types/group_0603.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0604.py b/githubkit/versions/v2022_11_28/types/group_0604.py index e52c1be9a..2992afe51 100644 --- a/githubkit/versions/v2022_11_28/types/group_0604.py +++ b/githubkit/versions/v2022_11_28/types/group_0604.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0605.py b/githubkit/versions/v2022_11_28/types/group_0605.py index 4548c970d..3722f28c5 100644 --- a/githubkit/versions/v2022_11_28/types/group_0605.py +++ b/githubkit/versions/v2022_11_28/types/group_0605.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0606.py b/githubkit/versions/v2022_11_28/types/group_0606.py index 65305410c..41b4fb26b 100644 --- a/githubkit/versions/v2022_11_28/types/group_0606.py +++ b/githubkit/versions/v2022_11_28/types/group_0606.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_0607.py b/githubkit/versions/v2022_11_28/types/group_0607.py index 314a68a5e..0d7b30474 100644 --- a/githubkit/versions/v2022_11_28/types/group_0607.py +++ b/githubkit/versions/v2022_11_28/types/group_0607.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0608.py b/githubkit/versions/v2022_11_28/types/group_0608.py index 211ffb303..76f44f172 100644 --- a/githubkit/versions/v2022_11_28/types/group_0608.py +++ b/githubkit/versions/v2022_11_28/types/group_0608.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0609.py b/githubkit/versions/v2022_11_28/types/group_0609.py index 4b0a1cfb6..60e88b6c3 100644 --- a/githubkit/versions/v2022_11_28/types/group_0609.py +++ b/githubkit/versions/v2022_11_28/types/group_0609.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0610.py b/githubkit/versions/v2022_11_28/types/group_0610.py index a8cff6d00..8ecd37849 100644 --- a/githubkit/versions/v2022_11_28/types/group_0610.py +++ b/githubkit/versions/v2022_11_28/types/group_0610.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0611.py b/githubkit/versions/v2022_11_28/types/group_0611.py index ae74b8f2f..25bf38f76 100644 --- a/githubkit/versions/v2022_11_28/types/group_0611.py +++ b/githubkit/versions/v2022_11_28/types/group_0611.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0612.py b/githubkit/versions/v2022_11_28/types/group_0612.py index b560f2730..89061541d 100644 --- a/githubkit/versions/v2022_11_28/types/group_0612.py +++ b/githubkit/versions/v2022_11_28/types/group_0612.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0613.py b/githubkit/versions/v2022_11_28/types/group_0613.py index f1f7dcf93..bc37dd49c 100644 --- a/githubkit/versions/v2022_11_28/types/group_0613.py +++ b/githubkit/versions/v2022_11_28/types/group_0613.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0614.py b/githubkit/versions/v2022_11_28/types/group_0614.py index 0b65f246a..0b3e375d0 100644 --- a/githubkit/versions/v2022_11_28/types/group_0614.py +++ b/githubkit/versions/v2022_11_28/types/group_0614.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0615.py b/githubkit/versions/v2022_11_28/types/group_0615.py index c36c51fb7..2386d865b 100644 --- a/githubkit/versions/v2022_11_28/types/group_0615.py +++ b/githubkit/versions/v2022_11_28/types/group_0615.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0616.py b/githubkit/versions/v2022_11_28/types/group_0616.py index 6f2578ed0..b3e571bf6 100644 --- a/githubkit/versions/v2022_11_28/types/group_0616.py +++ b/githubkit/versions/v2022_11_28/types/group_0616.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0617.py b/githubkit/versions/v2022_11_28/types/group_0617.py index 4c4e883ae..de1a3904e 100644 --- a/githubkit/versions/v2022_11_28/types/group_0617.py +++ b/githubkit/versions/v2022_11_28/types/group_0617.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0618.py b/githubkit/versions/v2022_11_28/types/group_0618.py index 72bcd0da2..df152a6c8 100644 --- a/githubkit/versions/v2022_11_28/types/group_0618.py +++ b/githubkit/versions/v2022_11_28/types/group_0618.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0619.py b/githubkit/versions/v2022_11_28/types/group_0619.py index 1cf536930..090368370 100644 --- a/githubkit/versions/v2022_11_28/types/group_0619.py +++ b/githubkit/versions/v2022_11_28/types/group_0619.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0620.py b/githubkit/versions/v2022_11_28/types/group_0620.py index db4fd7308..1e8f75c01 100644 --- a/githubkit/versions/v2022_11_28/types/group_0620.py +++ b/githubkit/versions/v2022_11_28/types/group_0620.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0621.py b/githubkit/versions/v2022_11_28/types/group_0621.py index 846a9f05f..eb8b02284 100644 --- a/githubkit/versions/v2022_11_28/types/group_0621.py +++ b/githubkit/versions/v2022_11_28/types/group_0621.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0622.py b/githubkit/versions/v2022_11_28/types/group_0622.py index 1c01cee16..f38161e82 100644 --- a/githubkit/versions/v2022_11_28/types/group_0622.py +++ b/githubkit/versions/v2022_11_28/types/group_0622.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0623.py b/githubkit/versions/v2022_11_28/types/group_0623.py index 913ed161e..57428d8d2 100644 --- a/githubkit/versions/v2022_11_28/types/group_0623.py +++ b/githubkit/versions/v2022_11_28/types/group_0623.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0624.py b/githubkit/versions/v2022_11_28/types/group_0624.py index b46d5ae77..5009d5fa8 100644 --- a/githubkit/versions/v2022_11_28/types/group_0624.py +++ b/githubkit/versions/v2022_11_28/types/group_0624.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0625.py b/githubkit/versions/v2022_11_28/types/group_0625.py index c2b388724..101b59924 100644 --- a/githubkit/versions/v2022_11_28/types/group_0625.py +++ b/githubkit/versions/v2022_11_28/types/group_0625.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0626.py b/githubkit/versions/v2022_11_28/types/group_0626.py index de210a47d..9d079270d 100644 --- a/githubkit/versions/v2022_11_28/types/group_0626.py +++ b/githubkit/versions/v2022_11_28/types/group_0626.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0627.py b/githubkit/versions/v2022_11_28/types/group_0627.py index a099ba2a4..1068df6a8 100644 --- a/githubkit/versions/v2022_11_28/types/group_0627.py +++ b/githubkit/versions/v2022_11_28/types/group_0627.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0628.py b/githubkit/versions/v2022_11_28/types/group_0628.py index 31e93deda..9ec2356c7 100644 --- a/githubkit/versions/v2022_11_28/types/group_0628.py +++ b/githubkit/versions/v2022_11_28/types/group_0628.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0629.py b/githubkit/versions/v2022_11_28/types/group_0629.py index 1a593b568..afbb25f7a 100644 --- a/githubkit/versions/v2022_11_28/types/group_0629.py +++ b/githubkit/versions/v2022_11_28/types/group_0629.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0630.py b/githubkit/versions/v2022_11_28/types/group_0630.py index 4e47b1c20..c3602d384 100644 --- a/githubkit/versions/v2022_11_28/types/group_0630.py +++ b/githubkit/versions/v2022_11_28/types/group_0630.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0631.py b/githubkit/versions/v2022_11_28/types/group_0631.py index 5940976f2..dc4efb876 100644 --- a/githubkit/versions/v2022_11_28/types/group_0631.py +++ b/githubkit/versions/v2022_11_28/types/group_0631.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0632.py b/githubkit/versions/v2022_11_28/types/group_0632.py index 5b6454b04..5d75fe25c 100644 --- a/githubkit/versions/v2022_11_28/types/group_0632.py +++ b/githubkit/versions/v2022_11_28/types/group_0632.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0633.py b/githubkit/versions/v2022_11_28/types/group_0633.py index bec7bfeed..4af63b68b 100644 --- a/githubkit/versions/v2022_11_28/types/group_0633.py +++ b/githubkit/versions/v2022_11_28/types/group_0633.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0634.py b/githubkit/versions/v2022_11_28/types/group_0634.py index 8cf1e6f78..1b8e1c6b4 100644 --- a/githubkit/versions/v2022_11_28/types/group_0634.py +++ b/githubkit/versions/v2022_11_28/types/group_0634.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0635.py b/githubkit/versions/v2022_11_28/types/group_0635.py index ac16b2dc2..d1f7b0ccd 100644 --- a/githubkit/versions/v2022_11_28/types/group_0635.py +++ b/githubkit/versions/v2022_11_28/types/group_0635.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0636.py b/githubkit/versions/v2022_11_28/types/group_0636.py index ba8f4035a..5d7eca18f 100644 --- a/githubkit/versions/v2022_11_28/types/group_0636.py +++ b/githubkit/versions/v2022_11_28/types/group_0636.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0637.py b/githubkit/versions/v2022_11_28/types/group_0637.py index 063fe4818..1d49ffe3d 100644 --- a/githubkit/versions/v2022_11_28/types/group_0637.py +++ b/githubkit/versions/v2022_11_28/types/group_0637.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_0638.py b/githubkit/versions/v2022_11_28/types/group_0638.py index e5316a663..999add34e 100644 --- a/githubkit/versions/v2022_11_28/types/group_0638.py +++ b/githubkit/versions/v2022_11_28/types/group_0638.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -382,8 +381,12 @@ class WebhookPullRequestAssignedPropPullRequestPropLinksType(TypedDict): commits: WebhookPullRequestAssignedPropPullRequestPropLinksPropCommitsType html: WebhookPullRequestAssignedPropPullRequestPropLinksPropHtmlType issue: WebhookPullRequestAssignedPropPullRequestPropLinksPropIssueType - review_comment: WebhookPullRequestAssignedPropPullRequestPropLinksPropReviewCommentType - review_comments: WebhookPullRequestAssignedPropPullRequestPropLinksPropReviewCommentsType + review_comment: ( + WebhookPullRequestAssignedPropPullRequestPropLinksPropReviewCommentType + ) + review_comments: ( + WebhookPullRequestAssignedPropPullRequestPropLinksPropReviewCommentsType + ) self_: WebhookPullRequestAssignedPropPullRequestPropLinksPropSelfType statuses: WebhookPullRequestAssignedPropPullRequestPropLinksPropStatusesType diff --git a/githubkit/versions/v2022_11_28/types/group_0639.py b/githubkit/versions/v2022_11_28/types/group_0639.py index 4a794dc92..a243d8013 100644 --- a/githubkit/versions/v2022_11_28/types/group_0639.py +++ b/githubkit/versions/v2022_11_28/types/group_0639.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -367,14 +366,20 @@ class WebhookPullRequestAutoMergeDisabledPropPullRequestPropUserType(TypedDict): class WebhookPullRequestAutoMergeDisabledPropPullRequestPropLinksType(TypedDict): """WebhookPullRequestAutoMergeDisabledPropPullRequestPropLinks""" - comments: WebhookPullRequestAutoMergeDisabledPropPullRequestPropLinksPropCommentsType + comments: ( + WebhookPullRequestAutoMergeDisabledPropPullRequestPropLinksPropCommentsType + ) commits: WebhookPullRequestAutoMergeDisabledPropPullRequestPropLinksPropCommitsType html: WebhookPullRequestAutoMergeDisabledPropPullRequestPropLinksPropHtmlType issue: WebhookPullRequestAutoMergeDisabledPropPullRequestPropLinksPropIssueType - review_comment: WebhookPullRequestAutoMergeDisabledPropPullRequestPropLinksPropReviewCommentType + review_comment: ( + WebhookPullRequestAutoMergeDisabledPropPullRequestPropLinksPropReviewCommentType + ) review_comments: WebhookPullRequestAutoMergeDisabledPropPullRequestPropLinksPropReviewCommentsType self_: WebhookPullRequestAutoMergeDisabledPropPullRequestPropLinksPropSelfType - statuses: WebhookPullRequestAutoMergeDisabledPropPullRequestPropLinksPropStatusesType + statuses: ( + WebhookPullRequestAutoMergeDisabledPropPullRequestPropLinksPropStatusesType + ) class WebhookPullRequestAutoMergeDisabledPropPullRequestPropLinksPropCommentsType( diff --git a/githubkit/versions/v2022_11_28/types/group_0640.py b/githubkit/versions/v2022_11_28/types/group_0640.py index c148c0b69..e1f05453a 100644 --- a/githubkit/versions/v2022_11_28/types/group_0640.py +++ b/githubkit/versions/v2022_11_28/types/group_0640.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -371,8 +370,12 @@ class WebhookPullRequestAutoMergeEnabledPropPullRequestPropLinksType(TypedDict): commits: WebhookPullRequestAutoMergeEnabledPropPullRequestPropLinksPropCommitsType html: WebhookPullRequestAutoMergeEnabledPropPullRequestPropLinksPropHtmlType issue: WebhookPullRequestAutoMergeEnabledPropPullRequestPropLinksPropIssueType - review_comment: WebhookPullRequestAutoMergeEnabledPropPullRequestPropLinksPropReviewCommentType - review_comments: WebhookPullRequestAutoMergeEnabledPropPullRequestPropLinksPropReviewCommentsType + review_comment: ( + WebhookPullRequestAutoMergeEnabledPropPullRequestPropLinksPropReviewCommentType + ) + review_comments: ( + WebhookPullRequestAutoMergeEnabledPropPullRequestPropLinksPropReviewCommentsType + ) self_: WebhookPullRequestAutoMergeEnabledPropPullRequestPropLinksPropSelfType statuses: WebhookPullRequestAutoMergeEnabledPropPullRequestPropLinksPropStatusesType diff --git a/githubkit/versions/v2022_11_28/types/group_0641.py b/githubkit/versions/v2022_11_28/types/group_0641.py index 5a6417e78..31233d016 100644 --- a/githubkit/versions/v2022_11_28/types/group_0641.py +++ b/githubkit/versions/v2022_11_28/types/group_0641.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0642.py b/githubkit/versions/v2022_11_28/types/group_0642.py index 6c5c80240..cfc883745 100644 --- a/githubkit/versions/v2022_11_28/types/group_0642.py +++ b/githubkit/versions/v2022_11_28/types/group_0642.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0643.py b/githubkit/versions/v2022_11_28/types/group_0643.py index 71e09c323..dd38bb560 100644 --- a/githubkit/versions/v2022_11_28/types/group_0643.py +++ b/githubkit/versions/v2022_11_28/types/group_0643.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0644.py b/githubkit/versions/v2022_11_28/types/group_0644.py index a276ed469..11e62283d 100644 --- a/githubkit/versions/v2022_11_28/types/group_0644.py +++ b/githubkit/versions/v2022_11_28/types/group_0644.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0645.py b/githubkit/versions/v2022_11_28/types/group_0645.py index 82bcf2568..22494b473 100644 --- a/githubkit/versions/v2022_11_28/types/group_0645.py +++ b/githubkit/versions/v2022_11_28/types/group_0645.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0646.py b/githubkit/versions/v2022_11_28/types/group_0646.py index 0d6b7b97e..46198cdaa 100644 --- a/githubkit/versions/v2022_11_28/types/group_0646.py +++ b/githubkit/versions/v2022_11_28/types/group_0646.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0647.py b/githubkit/versions/v2022_11_28/types/group_0647.py index db1dd8dca..df31340b8 100644 --- a/githubkit/versions/v2022_11_28/types/group_0647.py +++ b/githubkit/versions/v2022_11_28/types/group_0647.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -362,8 +361,12 @@ class WebhookPullRequestDemilestonedPropPullRequestPropLinksType(TypedDict): commits: WebhookPullRequestDemilestonedPropPullRequestPropLinksPropCommitsType html: WebhookPullRequestDemilestonedPropPullRequestPropLinksPropHtmlType issue: WebhookPullRequestDemilestonedPropPullRequestPropLinksPropIssueType - review_comment: WebhookPullRequestDemilestonedPropPullRequestPropLinksPropReviewCommentType - review_comments: WebhookPullRequestDemilestonedPropPullRequestPropLinksPropReviewCommentsType + review_comment: ( + WebhookPullRequestDemilestonedPropPullRequestPropLinksPropReviewCommentType + ) + review_comments: ( + WebhookPullRequestDemilestonedPropPullRequestPropLinksPropReviewCommentsType + ) self_: WebhookPullRequestDemilestonedPropPullRequestPropLinksPropSelfType statuses: WebhookPullRequestDemilestonedPropPullRequestPropLinksPropStatusesType diff --git a/githubkit/versions/v2022_11_28/types/group_0648.py b/githubkit/versions/v2022_11_28/types/group_0648.py index 9698bde60..7682129dd 100644 --- a/githubkit/versions/v2022_11_28/types/group_0648.py +++ b/githubkit/versions/v2022_11_28/types/group_0648.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -356,8 +355,12 @@ class WebhookPullRequestDequeuedPropPullRequestPropLinksType(TypedDict): commits: WebhookPullRequestDequeuedPropPullRequestPropLinksPropCommitsType html: WebhookPullRequestDequeuedPropPullRequestPropLinksPropHtmlType issue: WebhookPullRequestDequeuedPropPullRequestPropLinksPropIssueType - review_comment: WebhookPullRequestDequeuedPropPullRequestPropLinksPropReviewCommentType - review_comments: WebhookPullRequestDequeuedPropPullRequestPropLinksPropReviewCommentsType + review_comment: ( + WebhookPullRequestDequeuedPropPullRequestPropLinksPropReviewCommentType + ) + review_comments: ( + WebhookPullRequestDequeuedPropPullRequestPropLinksPropReviewCommentsType + ) self_: WebhookPullRequestDequeuedPropPullRequestPropLinksPropSelfType statuses: WebhookPullRequestDequeuedPropPullRequestPropLinksPropStatusesType diff --git a/githubkit/versions/v2022_11_28/types/group_0649.py b/githubkit/versions/v2022_11_28/types/group_0649.py index 87ab33663..0ad8fffdb 100644 --- a/githubkit/versions/v2022_11_28/types/group_0649.py +++ b/githubkit/versions/v2022_11_28/types/group_0649.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0650.py b/githubkit/versions/v2022_11_28/types/group_0650.py index cf7628165..42262af47 100644 --- a/githubkit/versions/v2022_11_28/types/group_0650.py +++ b/githubkit/versions/v2022_11_28/types/group_0650.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0651.py b/githubkit/versions/v2022_11_28/types/group_0651.py index d47284076..39fd7076f 100644 --- a/githubkit/versions/v2022_11_28/types/group_0651.py +++ b/githubkit/versions/v2022_11_28/types/group_0651.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0652.py b/githubkit/versions/v2022_11_28/types/group_0652.py index daf50d783..5adefb4b0 100644 --- a/githubkit/versions/v2022_11_28/types/group_0652.py +++ b/githubkit/versions/v2022_11_28/types/group_0652.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -355,8 +354,12 @@ class WebhookPullRequestEnqueuedPropPullRequestPropLinksType(TypedDict): commits: WebhookPullRequestEnqueuedPropPullRequestPropLinksPropCommitsType html: WebhookPullRequestEnqueuedPropPullRequestPropLinksPropHtmlType issue: WebhookPullRequestEnqueuedPropPullRequestPropLinksPropIssueType - review_comment: WebhookPullRequestEnqueuedPropPullRequestPropLinksPropReviewCommentType - review_comments: WebhookPullRequestEnqueuedPropPullRequestPropLinksPropReviewCommentsType + review_comment: ( + WebhookPullRequestEnqueuedPropPullRequestPropLinksPropReviewCommentType + ) + review_comments: ( + WebhookPullRequestEnqueuedPropPullRequestPropLinksPropReviewCommentsType + ) self_: WebhookPullRequestEnqueuedPropPullRequestPropLinksPropSelfType statuses: WebhookPullRequestEnqueuedPropPullRequestPropLinksPropStatusesType diff --git a/githubkit/versions/v2022_11_28/types/group_0653.py b/githubkit/versions/v2022_11_28/types/group_0653.py index 5446f26ce..d5d1b4f45 100644 --- a/githubkit/versions/v2022_11_28/types/group_0653.py +++ b/githubkit/versions/v2022_11_28/types/group_0653.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -366,8 +365,12 @@ class WebhookPullRequestLabeledPropPullRequestPropLinksType(TypedDict): commits: WebhookPullRequestLabeledPropPullRequestPropLinksPropCommitsType html: WebhookPullRequestLabeledPropPullRequestPropLinksPropHtmlType issue: WebhookPullRequestLabeledPropPullRequestPropLinksPropIssueType - review_comment: WebhookPullRequestLabeledPropPullRequestPropLinksPropReviewCommentType - review_comments: WebhookPullRequestLabeledPropPullRequestPropLinksPropReviewCommentsType + review_comment: ( + WebhookPullRequestLabeledPropPullRequestPropLinksPropReviewCommentType + ) + review_comments: ( + WebhookPullRequestLabeledPropPullRequestPropLinksPropReviewCommentsType + ) self_: WebhookPullRequestLabeledPropPullRequestPropLinksPropSelfType statuses: WebhookPullRequestLabeledPropPullRequestPropLinksPropStatusesType diff --git a/githubkit/versions/v2022_11_28/types/group_0654.py b/githubkit/versions/v2022_11_28/types/group_0654.py index 03cabc713..344d39340 100644 --- a/githubkit/versions/v2022_11_28/types/group_0654.py +++ b/githubkit/versions/v2022_11_28/types/group_0654.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -353,8 +352,12 @@ class WebhookPullRequestLockedPropPullRequestPropLinksType(TypedDict): commits: WebhookPullRequestLockedPropPullRequestPropLinksPropCommitsType html: WebhookPullRequestLockedPropPullRequestPropLinksPropHtmlType issue: WebhookPullRequestLockedPropPullRequestPropLinksPropIssueType - review_comment: WebhookPullRequestLockedPropPullRequestPropLinksPropReviewCommentType - review_comments: WebhookPullRequestLockedPropPullRequestPropLinksPropReviewCommentsType + review_comment: ( + WebhookPullRequestLockedPropPullRequestPropLinksPropReviewCommentType + ) + review_comments: ( + WebhookPullRequestLockedPropPullRequestPropLinksPropReviewCommentsType + ) self_: WebhookPullRequestLockedPropPullRequestPropLinksPropSelfType statuses: WebhookPullRequestLockedPropPullRequestPropLinksPropStatusesType diff --git a/githubkit/versions/v2022_11_28/types/group_0655.py b/githubkit/versions/v2022_11_28/types/group_0655.py index fcf5c5456..3e55351cd 100644 --- a/githubkit/versions/v2022_11_28/types/group_0655.py +++ b/githubkit/versions/v2022_11_28/types/group_0655.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -359,8 +358,12 @@ class WebhookPullRequestMilestonedPropPullRequestPropLinksType(TypedDict): commits: WebhookPullRequestMilestonedPropPullRequestPropLinksPropCommitsType html: WebhookPullRequestMilestonedPropPullRequestPropLinksPropHtmlType issue: WebhookPullRequestMilestonedPropPullRequestPropLinksPropIssueType - review_comment: WebhookPullRequestMilestonedPropPullRequestPropLinksPropReviewCommentType - review_comments: WebhookPullRequestMilestonedPropPullRequestPropLinksPropReviewCommentsType + review_comment: ( + WebhookPullRequestMilestonedPropPullRequestPropLinksPropReviewCommentType + ) + review_comments: ( + WebhookPullRequestMilestonedPropPullRequestPropLinksPropReviewCommentsType + ) self_: WebhookPullRequestMilestonedPropPullRequestPropLinksPropSelfType statuses: WebhookPullRequestMilestonedPropPullRequestPropLinksPropStatusesType diff --git a/githubkit/versions/v2022_11_28/types/group_0656.py b/githubkit/versions/v2022_11_28/types/group_0656.py index c356613c2..93a123813 100644 --- a/githubkit/versions/v2022_11_28/types/group_0656.py +++ b/githubkit/versions/v2022_11_28/types/group_0656.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0657.py b/githubkit/versions/v2022_11_28/types/group_0657.py index 571c568cc..15eac5f93 100644 --- a/githubkit/versions/v2022_11_28/types/group_0657.py +++ b/githubkit/versions/v2022_11_28/types/group_0657.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0658.py b/githubkit/versions/v2022_11_28/types/group_0658.py index 8a86bfa03..68d48ed00 100644 --- a/githubkit/versions/v2022_11_28/types/group_0658.py +++ b/githubkit/versions/v2022_11_28/types/group_0658.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0659.py b/githubkit/versions/v2022_11_28/types/group_0659.py index 957c1be7b..2f0b66ee4 100644 --- a/githubkit/versions/v2022_11_28/types/group_0659.py +++ b/githubkit/versions/v2022_11_28/types/group_0659.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0660.py b/githubkit/versions/v2022_11_28/types/group_0660.py index 70eddbcf5..b12202e5b 100644 --- a/githubkit/versions/v2022_11_28/types/group_0660.py +++ b/githubkit/versions/v2022_11_28/types/group_0660.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0661.py b/githubkit/versions/v2022_11_28/types/group_0661.py index 7d834b8f5..fde66824b 100644 --- a/githubkit/versions/v2022_11_28/types/group_0661.py +++ b/githubkit/versions/v2022_11_28/types/group_0661.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0662.py b/githubkit/versions/v2022_11_28/types/group_0662.py index 9f3347159..66080b6dc 100644 --- a/githubkit/versions/v2022_11_28/types/group_0662.py +++ b/githubkit/versions/v2022_11_28/types/group_0662.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0663.py b/githubkit/versions/v2022_11_28/types/group_0663.py index 6eb6ef3f2..de57835f5 100644 --- a/githubkit/versions/v2022_11_28/types/group_0663.py +++ b/githubkit/versions/v2022_11_28/types/group_0663.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0664.py b/githubkit/versions/v2022_11_28/types/group_0664.py index 8c8005f89..105754315 100644 --- a/githubkit/versions/v2022_11_28/types/group_0664.py +++ b/githubkit/versions/v2022_11_28/types/group_0664.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0665.py b/githubkit/versions/v2022_11_28/types/group_0665.py index f5a8ac1d6..37d976e3e 100644 --- a/githubkit/versions/v2022_11_28/types/group_0665.py +++ b/githubkit/versions/v2022_11_28/types/group_0665.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -124,7 +123,9 @@ class WebhookPullRequestReviewCommentCreatedPropCommentPropLinksType(TypedDict): """WebhookPullRequestReviewCommentCreatedPropCommentPropLinks""" html: WebhookPullRequestReviewCommentCreatedPropCommentPropLinksPropHtmlType - pull_request: WebhookPullRequestReviewCommentCreatedPropCommentPropLinksPropPullRequestType + pull_request: ( + WebhookPullRequestReviewCommentCreatedPropCommentPropLinksPropPullRequestType + ) self_: WebhookPullRequestReviewCommentCreatedPropCommentPropLinksPropSelfType @@ -446,14 +447,20 @@ class WebhookPullRequestReviewCommentCreatedPropPullRequestPropUserType(TypedDic class WebhookPullRequestReviewCommentCreatedPropPullRequestPropLinksType(TypedDict): """WebhookPullRequestReviewCommentCreatedPropPullRequestPropLinks""" - comments: WebhookPullRequestReviewCommentCreatedPropPullRequestPropLinksPropCommentsType - commits: WebhookPullRequestReviewCommentCreatedPropPullRequestPropLinksPropCommitsType + comments: ( + WebhookPullRequestReviewCommentCreatedPropPullRequestPropLinksPropCommentsType + ) + commits: ( + WebhookPullRequestReviewCommentCreatedPropPullRequestPropLinksPropCommitsType + ) html: WebhookPullRequestReviewCommentCreatedPropPullRequestPropLinksPropHtmlType issue: WebhookPullRequestReviewCommentCreatedPropPullRequestPropLinksPropIssueType review_comment: WebhookPullRequestReviewCommentCreatedPropPullRequestPropLinksPropReviewCommentType review_comments: WebhookPullRequestReviewCommentCreatedPropPullRequestPropLinksPropReviewCommentsType self_: WebhookPullRequestReviewCommentCreatedPropPullRequestPropLinksPropSelfType - statuses: WebhookPullRequestReviewCommentCreatedPropPullRequestPropLinksPropStatusesType + statuses: ( + WebhookPullRequestReviewCommentCreatedPropPullRequestPropLinksPropStatusesType + ) class WebhookPullRequestReviewCommentCreatedPropPullRequestPropLinksPropCommentsType( diff --git a/githubkit/versions/v2022_11_28/types/group_0666.py b/githubkit/versions/v2022_11_28/types/group_0666.py index 296e1ac3a..f8bdd522a 100644 --- a/githubkit/versions/v2022_11_28/types/group_0666.py +++ b/githubkit/versions/v2022_11_28/types/group_0666.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -124,7 +123,9 @@ class WebhookPullRequestReviewCommentDeletedPropCommentPropLinksType(TypedDict): """WebhookPullRequestReviewCommentDeletedPropCommentPropLinks""" html: WebhookPullRequestReviewCommentDeletedPropCommentPropLinksPropHtmlType - pull_request: WebhookPullRequestReviewCommentDeletedPropCommentPropLinksPropPullRequestType + pull_request: ( + WebhookPullRequestReviewCommentDeletedPropCommentPropLinksPropPullRequestType + ) self_: WebhookPullRequestReviewCommentDeletedPropCommentPropLinksPropSelfType @@ -446,14 +447,20 @@ class WebhookPullRequestReviewCommentDeletedPropPullRequestPropUserType(TypedDic class WebhookPullRequestReviewCommentDeletedPropPullRequestPropLinksType(TypedDict): """WebhookPullRequestReviewCommentDeletedPropPullRequestPropLinks""" - comments: WebhookPullRequestReviewCommentDeletedPropPullRequestPropLinksPropCommentsType - commits: WebhookPullRequestReviewCommentDeletedPropPullRequestPropLinksPropCommitsType + comments: ( + WebhookPullRequestReviewCommentDeletedPropPullRequestPropLinksPropCommentsType + ) + commits: ( + WebhookPullRequestReviewCommentDeletedPropPullRequestPropLinksPropCommitsType + ) html: WebhookPullRequestReviewCommentDeletedPropPullRequestPropLinksPropHtmlType issue: WebhookPullRequestReviewCommentDeletedPropPullRequestPropLinksPropIssueType review_comment: WebhookPullRequestReviewCommentDeletedPropPullRequestPropLinksPropReviewCommentType review_comments: WebhookPullRequestReviewCommentDeletedPropPullRequestPropLinksPropReviewCommentsType self_: WebhookPullRequestReviewCommentDeletedPropPullRequestPropLinksPropSelfType - statuses: WebhookPullRequestReviewCommentDeletedPropPullRequestPropLinksPropStatusesType + statuses: ( + WebhookPullRequestReviewCommentDeletedPropPullRequestPropLinksPropStatusesType + ) class WebhookPullRequestReviewCommentDeletedPropPullRequestPropLinksPropCommentsType( diff --git a/githubkit/versions/v2022_11_28/types/group_0667.py b/githubkit/versions/v2022_11_28/types/group_0667.py index f4bcf2811..f762ca38f 100644 --- a/githubkit/versions/v2022_11_28/types/group_0667.py +++ b/githubkit/versions/v2022_11_28/types/group_0667.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -140,7 +139,9 @@ class WebhookPullRequestReviewCommentEditedPropCommentPropLinksType(TypedDict): """WebhookPullRequestReviewCommentEditedPropCommentPropLinks""" html: WebhookPullRequestReviewCommentEditedPropCommentPropLinksPropHtmlType - pull_request: WebhookPullRequestReviewCommentEditedPropCommentPropLinksPropPullRequestType + pull_request: ( + WebhookPullRequestReviewCommentEditedPropCommentPropLinksPropPullRequestType + ) self_: WebhookPullRequestReviewCommentEditedPropCommentPropLinksPropSelfType @@ -462,14 +463,20 @@ class WebhookPullRequestReviewCommentEditedPropPullRequestPropUserType(TypedDict class WebhookPullRequestReviewCommentEditedPropPullRequestPropLinksType(TypedDict): """WebhookPullRequestReviewCommentEditedPropPullRequestPropLinks""" - comments: WebhookPullRequestReviewCommentEditedPropPullRequestPropLinksPropCommentsType - commits: WebhookPullRequestReviewCommentEditedPropPullRequestPropLinksPropCommitsType + comments: ( + WebhookPullRequestReviewCommentEditedPropPullRequestPropLinksPropCommentsType + ) + commits: ( + WebhookPullRequestReviewCommentEditedPropPullRequestPropLinksPropCommitsType + ) html: WebhookPullRequestReviewCommentEditedPropPullRequestPropLinksPropHtmlType issue: WebhookPullRequestReviewCommentEditedPropPullRequestPropLinksPropIssueType review_comment: WebhookPullRequestReviewCommentEditedPropPullRequestPropLinksPropReviewCommentType review_comments: WebhookPullRequestReviewCommentEditedPropPullRequestPropLinksPropReviewCommentsType self_: WebhookPullRequestReviewCommentEditedPropPullRequestPropLinksPropSelfType - statuses: WebhookPullRequestReviewCommentEditedPropPullRequestPropLinksPropStatusesType + statuses: ( + WebhookPullRequestReviewCommentEditedPropPullRequestPropLinksPropStatusesType + ) class WebhookPullRequestReviewCommentEditedPropPullRequestPropLinksPropCommentsType( diff --git a/githubkit/versions/v2022_11_28/types/group_0668.py b/githubkit/versions/v2022_11_28/types/group_0668.py index eebd99db6..3d4d910a1 100644 --- a/githubkit/versions/v2022_11_28/types/group_0668.py +++ b/githubkit/versions/v2022_11_28/types/group_0668.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -92,7 +91,9 @@ class WebhookPullRequestReviewDismissedPropReviewPropLinksType(TypedDict): """WebhookPullRequestReviewDismissedPropReviewPropLinks""" html: WebhookPullRequestReviewDismissedPropReviewPropLinksPropHtmlType - pull_request: WebhookPullRequestReviewDismissedPropReviewPropLinksPropPullRequestType + pull_request: ( + WebhookPullRequestReviewDismissedPropReviewPropLinksPropPullRequestType + ) class WebhookPullRequestReviewDismissedPropReviewPropLinksPropHtmlType(TypedDict): @@ -402,8 +403,12 @@ class WebhookPullRequestReviewDismissedPropPullRequestPropLinksType(TypedDict): commits: WebhookPullRequestReviewDismissedPropPullRequestPropLinksPropCommitsType html: WebhookPullRequestReviewDismissedPropPullRequestPropLinksPropHtmlType issue: WebhookPullRequestReviewDismissedPropPullRequestPropLinksPropIssueType - review_comment: WebhookPullRequestReviewDismissedPropPullRequestPropLinksPropReviewCommentType - review_comments: WebhookPullRequestReviewDismissedPropPullRequestPropLinksPropReviewCommentsType + review_comment: ( + WebhookPullRequestReviewDismissedPropPullRequestPropLinksPropReviewCommentType + ) + review_comments: ( + WebhookPullRequestReviewDismissedPropPullRequestPropLinksPropReviewCommentsType + ) self_: WebhookPullRequestReviewDismissedPropPullRequestPropLinksPropSelfType statuses: WebhookPullRequestReviewDismissedPropPullRequestPropLinksPropStatusesType diff --git a/githubkit/versions/v2022_11_28/types/group_0669.py b/githubkit/versions/v2022_11_28/types/group_0669.py index 97b9e3573..353142565 100644 --- a/githubkit/versions/v2022_11_28/types/group_0669.py +++ b/githubkit/versions/v2022_11_28/types/group_0669.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -408,8 +407,12 @@ class WebhookPullRequestReviewEditedPropPullRequestPropLinksType(TypedDict): commits: WebhookPullRequestReviewEditedPropPullRequestPropLinksPropCommitsType html: WebhookPullRequestReviewEditedPropPullRequestPropLinksPropHtmlType issue: WebhookPullRequestReviewEditedPropPullRequestPropLinksPropIssueType - review_comment: WebhookPullRequestReviewEditedPropPullRequestPropLinksPropReviewCommentType - review_comments: WebhookPullRequestReviewEditedPropPullRequestPropLinksPropReviewCommentsType + review_comment: ( + WebhookPullRequestReviewEditedPropPullRequestPropLinksPropReviewCommentType + ) + review_comments: ( + WebhookPullRequestReviewEditedPropPullRequestPropLinksPropReviewCommentsType + ) self_: WebhookPullRequestReviewEditedPropPullRequestPropLinksPropSelfType statuses: WebhookPullRequestReviewEditedPropPullRequestPropLinksPropStatusesType diff --git a/githubkit/versions/v2022_11_28/types/group_0670.py b/githubkit/versions/v2022_11_28/types/group_0670.py index ac8aa0407..87d3397af 100644 --- a/githubkit/versions/v2022_11_28/types/group_0670.py +++ b/githubkit/versions/v2022_11_28/types/group_0670.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -421,11 +420,15 @@ class WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropLinksType( comments: WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropLinksPropCommentsType commits: WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropLinksPropCommitsType - html: WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropLinksPropHtmlType + html: ( + WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropLinksPropHtmlType + ) issue: WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropLinksPropIssueType review_comment: WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropLinksPropReviewCommentType review_comments: WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropLinksPropReviewCommentsType - self_: WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropLinksPropSelfType + self_: ( + WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropLinksPropSelfType + ) statuses: WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropLinksPropStatusesType @@ -500,7 +503,9 @@ class WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropBaseType( label: str ref: str - repo: WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropBasePropRepoType + repo: ( + WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropBasePropRepoType + ) sha: str user: Union[ WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropBasePropUserType, @@ -713,7 +718,9 @@ class WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropHeadType( label: str ref: str - repo: WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropHeadPropRepoType + repo: ( + WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropHeadPropRepoType + ) sha: str user: Union[ WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropHeadPropUserType, diff --git a/githubkit/versions/v2022_11_28/types/group_0671.py b/githubkit/versions/v2022_11_28/types/group_0671.py index fe05603cb..716728605 100644 --- a/githubkit/versions/v2022_11_28/types/group_0671.py +++ b/githubkit/versions/v2022_11_28/types/group_0671.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -437,11 +436,15 @@ class WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropLinksType( comments: WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropLinksPropCommentsType commits: WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropLinksPropCommitsType - html: WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropLinksPropHtmlType + html: ( + WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropLinksPropHtmlType + ) issue: WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropLinksPropIssueType review_comment: WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropLinksPropReviewCommentType review_comments: WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropLinksPropReviewCommentsType - self_: WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropLinksPropSelfType + self_: ( + WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropLinksPropSelfType + ) statuses: WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropLinksPropStatusesType @@ -516,7 +519,9 @@ class WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropBaseType( label: str ref: str - repo: WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropBasePropRepoType + repo: ( + WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropBasePropRepoType + ) sha: str user: Union[ WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropBasePropUserType, @@ -729,7 +734,9 @@ class WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropHeadType( label: str ref: str - repo: WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropHeadPropRepoType + repo: ( + WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropHeadPropRepoType + ) sha: str user: Union[ WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropHeadPropUserType, diff --git a/githubkit/versions/v2022_11_28/types/group_0672.py b/githubkit/versions/v2022_11_28/types/group_0672.py index b85d17cc0..f828eb01d 100644 --- a/githubkit/versions/v2022_11_28/types/group_0672.py +++ b/githubkit/versions/v2022_11_28/types/group_0672.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -407,14 +406,20 @@ class WebhookPullRequestReviewRequestedOneof0PropPullRequestPropUserType(TypedDi class WebhookPullRequestReviewRequestedOneof0PropPullRequestPropLinksType(TypedDict): """WebhookPullRequestReviewRequestedOneof0PropPullRequestPropLinks""" - comments: WebhookPullRequestReviewRequestedOneof0PropPullRequestPropLinksPropCommentsType - commits: WebhookPullRequestReviewRequestedOneof0PropPullRequestPropLinksPropCommitsType + comments: ( + WebhookPullRequestReviewRequestedOneof0PropPullRequestPropLinksPropCommentsType + ) + commits: ( + WebhookPullRequestReviewRequestedOneof0PropPullRequestPropLinksPropCommitsType + ) html: WebhookPullRequestReviewRequestedOneof0PropPullRequestPropLinksPropHtmlType issue: WebhookPullRequestReviewRequestedOneof0PropPullRequestPropLinksPropIssueType review_comment: WebhookPullRequestReviewRequestedOneof0PropPullRequestPropLinksPropReviewCommentType review_comments: WebhookPullRequestReviewRequestedOneof0PropPullRequestPropLinksPropReviewCommentsType self_: WebhookPullRequestReviewRequestedOneof0PropPullRequestPropLinksPropSelfType - statuses: WebhookPullRequestReviewRequestedOneof0PropPullRequestPropLinksPropStatusesType + statuses: ( + WebhookPullRequestReviewRequestedOneof0PropPullRequestPropLinksPropStatusesType + ) class WebhookPullRequestReviewRequestedOneof0PropPullRequestPropLinksPropCommentsType( diff --git a/githubkit/versions/v2022_11_28/types/group_0673.py b/githubkit/versions/v2022_11_28/types/group_0673.py index 7d3857e74..4de7ebfb5 100644 --- a/githubkit/versions/v2022_11_28/types/group_0673.py +++ b/githubkit/versions/v2022_11_28/types/group_0673.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -420,14 +419,20 @@ class WebhookPullRequestReviewRequestedOneof1PropPullRequestPropUserType(TypedDi class WebhookPullRequestReviewRequestedOneof1PropPullRequestPropLinksType(TypedDict): """WebhookPullRequestReviewRequestedOneof1PropPullRequestPropLinks""" - comments: WebhookPullRequestReviewRequestedOneof1PropPullRequestPropLinksPropCommentsType - commits: WebhookPullRequestReviewRequestedOneof1PropPullRequestPropLinksPropCommitsType + comments: ( + WebhookPullRequestReviewRequestedOneof1PropPullRequestPropLinksPropCommentsType + ) + commits: ( + WebhookPullRequestReviewRequestedOneof1PropPullRequestPropLinksPropCommitsType + ) html: WebhookPullRequestReviewRequestedOneof1PropPullRequestPropLinksPropHtmlType issue: WebhookPullRequestReviewRequestedOneof1PropPullRequestPropLinksPropIssueType review_comment: WebhookPullRequestReviewRequestedOneof1PropPullRequestPropLinksPropReviewCommentType review_comments: WebhookPullRequestReviewRequestedOneof1PropPullRequestPropLinksPropReviewCommentsType self_: WebhookPullRequestReviewRequestedOneof1PropPullRequestPropLinksPropSelfType - statuses: WebhookPullRequestReviewRequestedOneof1PropPullRequestPropLinksPropStatusesType + statuses: ( + WebhookPullRequestReviewRequestedOneof1PropPullRequestPropLinksPropStatusesType + ) class WebhookPullRequestReviewRequestedOneof1PropPullRequestPropLinksPropCommentsType( diff --git a/githubkit/versions/v2022_11_28/types/group_0674.py b/githubkit/versions/v2022_11_28/types/group_0674.py index 8a66d1526..360f6d973 100644 --- a/githubkit/versions/v2022_11_28/types/group_0674.py +++ b/githubkit/versions/v2022_11_28/types/group_0674.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -92,7 +91,9 @@ class WebhookPullRequestReviewSubmittedPropReviewPropLinksType(TypedDict): """WebhookPullRequestReviewSubmittedPropReviewPropLinks""" html: WebhookPullRequestReviewSubmittedPropReviewPropLinksPropHtmlType - pull_request: WebhookPullRequestReviewSubmittedPropReviewPropLinksPropPullRequestType + pull_request: ( + WebhookPullRequestReviewSubmittedPropReviewPropLinksPropPullRequestType + ) class WebhookPullRequestReviewSubmittedPropReviewPropLinksPropHtmlType(TypedDict): @@ -402,8 +403,12 @@ class WebhookPullRequestReviewSubmittedPropPullRequestPropLinksType(TypedDict): commits: WebhookPullRequestReviewSubmittedPropPullRequestPropLinksPropCommitsType html: WebhookPullRequestReviewSubmittedPropPullRequestPropLinksPropHtmlType issue: WebhookPullRequestReviewSubmittedPropPullRequestPropLinksPropIssueType - review_comment: WebhookPullRequestReviewSubmittedPropPullRequestPropLinksPropReviewCommentType - review_comments: WebhookPullRequestReviewSubmittedPropPullRequestPropLinksPropReviewCommentsType + review_comment: ( + WebhookPullRequestReviewSubmittedPropPullRequestPropLinksPropReviewCommentType + ) + review_comments: ( + WebhookPullRequestReviewSubmittedPropPullRequestPropLinksPropReviewCommentsType + ) self_: WebhookPullRequestReviewSubmittedPropPullRequestPropLinksPropSelfType statuses: WebhookPullRequestReviewSubmittedPropPullRequestPropLinksPropStatusesType diff --git a/githubkit/versions/v2022_11_28/types/group_0675.py b/githubkit/versions/v2022_11_28/types/group_0675.py index e5f4917e4..e7b3f581a 100644 --- a/githubkit/versions/v2022_11_28/types/group_0675.py +++ b/githubkit/versions/v2022_11_28/types/group_0675.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -330,14 +329,20 @@ class WebhookPullRequestReviewThreadResolvedPropPullRequestPropUserType(TypedDic class WebhookPullRequestReviewThreadResolvedPropPullRequestPropLinksType(TypedDict): """WebhookPullRequestReviewThreadResolvedPropPullRequestPropLinks""" - comments: WebhookPullRequestReviewThreadResolvedPropPullRequestPropLinksPropCommentsType - commits: WebhookPullRequestReviewThreadResolvedPropPullRequestPropLinksPropCommitsType + comments: ( + WebhookPullRequestReviewThreadResolvedPropPullRequestPropLinksPropCommentsType + ) + commits: ( + WebhookPullRequestReviewThreadResolvedPropPullRequestPropLinksPropCommitsType + ) html: WebhookPullRequestReviewThreadResolvedPropPullRequestPropLinksPropHtmlType issue: WebhookPullRequestReviewThreadResolvedPropPullRequestPropLinksPropIssueType review_comment: WebhookPullRequestReviewThreadResolvedPropPullRequestPropLinksPropReviewCommentType review_comments: WebhookPullRequestReviewThreadResolvedPropPullRequestPropLinksPropReviewCommentsType self_: WebhookPullRequestReviewThreadResolvedPropPullRequestPropLinksPropSelfType - statuses: WebhookPullRequestReviewThreadResolvedPropPullRequestPropLinksPropStatusesType + statuses: ( + WebhookPullRequestReviewThreadResolvedPropPullRequestPropLinksPropStatusesType + ) class WebhookPullRequestReviewThreadResolvedPropPullRequestPropLinksPropCommentsType( @@ -924,7 +929,9 @@ class WebhookPullRequestReviewThreadResolvedPropThreadPropCommentsItemsType(Type for-a-pull-request) itself. """ - links: WebhookPullRequestReviewThreadResolvedPropThreadPropCommentsItemsPropLinksType + links: ( + WebhookPullRequestReviewThreadResolvedPropThreadPropCommentsItemsPropLinksType + ) author_association: Literal[ "COLLABORATOR", "CONTRIBUTOR", diff --git a/githubkit/versions/v2022_11_28/types/group_0676.py b/githubkit/versions/v2022_11_28/types/group_0676.py index c19b016b8..4ec8043f5 100644 --- a/githubkit/versions/v2022_11_28/types/group_0676.py +++ b/githubkit/versions/v2022_11_28/types/group_0676.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -338,14 +337,20 @@ class WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropUserType(TypedD class WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropLinksType(TypedDict): """WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropLinks""" - comments: WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropLinksPropCommentsType - commits: WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropLinksPropCommitsType + comments: ( + WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropLinksPropCommentsType + ) + commits: ( + WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropLinksPropCommitsType + ) html: WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropLinksPropHtmlType issue: WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropLinksPropIssueType review_comment: WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropLinksPropReviewCommentType review_comments: WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropLinksPropReviewCommentsType self_: WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropLinksPropSelfType - statuses: WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropLinksPropStatusesType + statuses: ( + WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropLinksPropStatusesType + ) class WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropLinksPropCommentsType( @@ -934,7 +939,9 @@ class WebhookPullRequestReviewThreadUnresolvedPropThreadPropCommentsItemsType( for-a-pull-request) itself. """ - links: WebhookPullRequestReviewThreadUnresolvedPropThreadPropCommentsItemsPropLinksType + links: ( + WebhookPullRequestReviewThreadUnresolvedPropThreadPropCommentsItemsPropLinksType + ) author_association: Literal[ "COLLABORATOR", "CONTRIBUTOR", diff --git a/githubkit/versions/v2022_11_28/types/group_0677.py b/githubkit/versions/v2022_11_28/types/group_0677.py index 98435d907..ba9639c5f 100644 --- a/githubkit/versions/v2022_11_28/types/group_0677.py +++ b/githubkit/versions/v2022_11_28/types/group_0677.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -363,8 +362,12 @@ class WebhookPullRequestSynchronizePropPullRequestPropLinksType(TypedDict): commits: WebhookPullRequestSynchronizePropPullRequestPropLinksPropCommitsType html: WebhookPullRequestSynchronizePropPullRequestPropLinksPropHtmlType issue: WebhookPullRequestSynchronizePropPullRequestPropLinksPropIssueType - review_comment: WebhookPullRequestSynchronizePropPullRequestPropLinksPropReviewCommentType - review_comments: WebhookPullRequestSynchronizePropPullRequestPropLinksPropReviewCommentsType + review_comment: ( + WebhookPullRequestSynchronizePropPullRequestPropLinksPropReviewCommentType + ) + review_comments: ( + WebhookPullRequestSynchronizePropPullRequestPropLinksPropReviewCommentsType + ) self_: WebhookPullRequestSynchronizePropPullRequestPropLinksPropSelfType statuses: WebhookPullRequestSynchronizePropPullRequestPropLinksPropStatusesType diff --git a/githubkit/versions/v2022_11_28/types/group_0678.py b/githubkit/versions/v2022_11_28/types/group_0678.py index 648e35bdc..47e020e7e 100644 --- a/githubkit/versions/v2022_11_28/types/group_0678.py +++ b/githubkit/versions/v2022_11_28/types/group_0678.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -386,8 +385,12 @@ class WebhookPullRequestUnassignedPropPullRequestPropLinksType(TypedDict): commits: WebhookPullRequestUnassignedPropPullRequestPropLinksPropCommitsType html: WebhookPullRequestUnassignedPropPullRequestPropLinksPropHtmlType issue: WebhookPullRequestUnassignedPropPullRequestPropLinksPropIssueType - review_comment: WebhookPullRequestUnassignedPropPullRequestPropLinksPropReviewCommentType - review_comments: WebhookPullRequestUnassignedPropPullRequestPropLinksPropReviewCommentsType + review_comment: ( + WebhookPullRequestUnassignedPropPullRequestPropLinksPropReviewCommentType + ) + review_comments: ( + WebhookPullRequestUnassignedPropPullRequestPropLinksPropReviewCommentsType + ) self_: WebhookPullRequestUnassignedPropPullRequestPropLinksPropSelfType statuses: WebhookPullRequestUnassignedPropPullRequestPropLinksPropStatusesType diff --git a/githubkit/versions/v2022_11_28/types/group_0679.py b/githubkit/versions/v2022_11_28/types/group_0679.py index a27eef181..45fec4dda 100644 --- a/githubkit/versions/v2022_11_28/types/group_0679.py +++ b/githubkit/versions/v2022_11_28/types/group_0679.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -368,8 +367,12 @@ class WebhookPullRequestUnlabeledPropPullRequestPropLinksType(TypedDict): commits: WebhookPullRequestUnlabeledPropPullRequestPropLinksPropCommitsType html: WebhookPullRequestUnlabeledPropPullRequestPropLinksPropHtmlType issue: WebhookPullRequestUnlabeledPropPullRequestPropLinksPropIssueType - review_comment: WebhookPullRequestUnlabeledPropPullRequestPropLinksPropReviewCommentType - review_comments: WebhookPullRequestUnlabeledPropPullRequestPropLinksPropReviewCommentsType + review_comment: ( + WebhookPullRequestUnlabeledPropPullRequestPropLinksPropReviewCommentType + ) + review_comments: ( + WebhookPullRequestUnlabeledPropPullRequestPropLinksPropReviewCommentsType + ) self_: WebhookPullRequestUnlabeledPropPullRequestPropLinksPropSelfType statuses: WebhookPullRequestUnlabeledPropPullRequestPropLinksPropStatusesType diff --git a/githubkit/versions/v2022_11_28/types/group_0680.py b/githubkit/versions/v2022_11_28/types/group_0680.py index ae014ff23..db4c6526d 100644 --- a/githubkit/versions/v2022_11_28/types/group_0680.py +++ b/githubkit/versions/v2022_11_28/types/group_0680.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -355,8 +354,12 @@ class WebhookPullRequestUnlockedPropPullRequestPropLinksType(TypedDict): commits: WebhookPullRequestUnlockedPropPullRequestPropLinksPropCommitsType html: WebhookPullRequestUnlockedPropPullRequestPropLinksPropHtmlType issue: WebhookPullRequestUnlockedPropPullRequestPropLinksPropIssueType - review_comment: WebhookPullRequestUnlockedPropPullRequestPropLinksPropReviewCommentType - review_comments: WebhookPullRequestUnlockedPropPullRequestPropLinksPropReviewCommentsType + review_comment: ( + WebhookPullRequestUnlockedPropPullRequestPropLinksPropReviewCommentType + ) + review_comments: ( + WebhookPullRequestUnlockedPropPullRequestPropLinksPropReviewCommentsType + ) self_: WebhookPullRequestUnlockedPropPullRequestPropLinksPropSelfType statuses: WebhookPullRequestUnlockedPropPullRequestPropLinksPropStatusesType diff --git a/githubkit/versions/v2022_11_28/types/group_0681.py b/githubkit/versions/v2022_11_28/types/group_0681.py index b168d0758..8f1db2d7c 100644 --- a/githubkit/versions/v2022_11_28/types/group_0681.py +++ b/githubkit/versions/v2022_11_28/types/group_0681.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0682.py b/githubkit/versions/v2022_11_28/types/group_0682.py index 76f4062cf..5fae325cc 100644 --- a/githubkit/versions/v2022_11_28/types/group_0682.py +++ b/githubkit/versions/v2022_11_28/types/group_0682.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0683.py b/githubkit/versions/v2022_11_28/types/group_0683.py index 8b28c3b5c..dde3b579b 100644 --- a/githubkit/versions/v2022_11_28/types/group_0683.py +++ b/githubkit/versions/v2022_11_28/types/group_0683.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0684.py b/githubkit/versions/v2022_11_28/types/group_0684.py index 5fc85dbee..051d6778c 100644 --- a/githubkit/versions/v2022_11_28/types/group_0684.py +++ b/githubkit/versions/v2022_11_28/types/group_0684.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/v2022_11_28/types/group_0685.py b/githubkit/versions/v2022_11_28/types/group_0685.py index 4a56db20e..cc3b04e63 100644 --- a/githubkit/versions/v2022_11_28/types/group_0685.py +++ b/githubkit/versions/v2022_11_28/types/group_0685.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0686.py b/githubkit/versions/v2022_11_28/types/group_0686.py index 0e1b5d19e..7617cc2ba 100644 --- a/githubkit/versions/v2022_11_28/types/group_0686.py +++ b/githubkit/versions/v2022_11_28/types/group_0686.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union @@ -30,7 +29,9 @@ class WebhookRegistryPackageUpdatedPropRegistryPackageType(TypedDict): namespace: str owner: WebhookRegistryPackageUpdatedPropRegistryPackagePropOwnerType package_type: str - package_version: WebhookRegistryPackageUpdatedPropRegistryPackagePropPackageVersionType + package_version: ( + WebhookRegistryPackageUpdatedPropRegistryPackagePropPackageVersionType + ) registry: Union[ WebhookRegistryPackageUpdatedPropRegistryPackagePropRegistryType, None ] diff --git a/githubkit/versions/v2022_11_28/types/group_0687.py b/githubkit/versions/v2022_11_28/types/group_0687.py index abb868087..bbf018ff8 100644 --- a/githubkit/versions/v2022_11_28/types/group_0687.py +++ b/githubkit/versions/v2022_11_28/types/group_0687.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union @@ -19,7 +18,9 @@ class WebhookRegistryPackageUpdatedPropRegistryPackagePropPackageVersionType(TypedDict): """WebhookRegistryPackageUpdatedPropRegistryPackagePropPackageVersion""" - author: WebhookRegistryPackageUpdatedPropRegistryPackagePropPackageVersionPropAuthorType + author: ( + WebhookRegistryPackageUpdatedPropRegistryPackagePropPackageVersionPropAuthorType + ) body: str body_html: str created_at: str diff --git a/githubkit/versions/v2022_11_28/types/group_0688.py b/githubkit/versions/v2022_11_28/types/group_0688.py index fe4630ff6..108921b69 100644 --- a/githubkit/versions/v2022_11_28/types/group_0688.py +++ b/githubkit/versions/v2022_11_28/types/group_0688.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0689.py b/githubkit/versions/v2022_11_28/types/group_0689.py index 98efa3113..94794e6df 100644 --- a/githubkit/versions/v2022_11_28/types/group_0689.py +++ b/githubkit/versions/v2022_11_28/types/group_0689.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0690.py b/githubkit/versions/v2022_11_28/types/group_0690.py index f346f33da..95f32cdde 100644 --- a/githubkit/versions/v2022_11_28/types/group_0690.py +++ b/githubkit/versions/v2022_11_28/types/group_0690.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0691.py b/githubkit/versions/v2022_11_28/types/group_0691.py index a48430abe..ce04176ca 100644 --- a/githubkit/versions/v2022_11_28/types/group_0691.py +++ b/githubkit/versions/v2022_11_28/types/group_0691.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0692.py b/githubkit/versions/v2022_11_28/types/group_0692.py index a92f4e514..fa9c2e941 100644 --- a/githubkit/versions/v2022_11_28/types/group_0692.py +++ b/githubkit/versions/v2022_11_28/types/group_0692.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0693.py b/githubkit/versions/v2022_11_28/types/group_0693.py index db7188c29..3079034a8 100644 --- a/githubkit/versions/v2022_11_28/types/group_0693.py +++ b/githubkit/versions/v2022_11_28/types/group_0693.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0694.py b/githubkit/versions/v2022_11_28/types/group_0694.py index 3b0cdc5f6..5c45139f6 100644 --- a/githubkit/versions/v2022_11_28/types/group_0694.py +++ b/githubkit/versions/v2022_11_28/types/group_0694.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0695.py b/githubkit/versions/v2022_11_28/types/group_0695.py index 3b961302b..8e0bd49ed 100644 --- a/githubkit/versions/v2022_11_28/types/group_0695.py +++ b/githubkit/versions/v2022_11_28/types/group_0695.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0696.py b/githubkit/versions/v2022_11_28/types/group_0696.py index a90c023e2..ebc9260a6 100644 --- a/githubkit/versions/v2022_11_28/types/group_0696.py +++ b/githubkit/versions/v2022_11_28/types/group_0696.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0697.py b/githubkit/versions/v2022_11_28/types/group_0697.py index a690b5a86..020e8fcfd 100644 --- a/githubkit/versions/v2022_11_28/types/group_0697.py +++ b/githubkit/versions/v2022_11_28/types/group_0697.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0698.py b/githubkit/versions/v2022_11_28/types/group_0698.py index 38d21c89c..5e0e13ab4 100644 --- a/githubkit/versions/v2022_11_28/types/group_0698.py +++ b/githubkit/versions/v2022_11_28/types/group_0698.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0699.py b/githubkit/versions/v2022_11_28/types/group_0699.py index 4473258c6..e8ceea306 100644 --- a/githubkit/versions/v2022_11_28/types/group_0699.py +++ b/githubkit/versions/v2022_11_28/types/group_0699.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0700.py b/githubkit/versions/v2022_11_28/types/group_0700.py index 305166715..e9761d279 100644 --- a/githubkit/versions/v2022_11_28/types/group_0700.py +++ b/githubkit/versions/v2022_11_28/types/group_0700.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0701.py b/githubkit/versions/v2022_11_28/types/group_0701.py index 2ca57124f..2aea589e1 100644 --- a/githubkit/versions/v2022_11_28/types/group_0701.py +++ b/githubkit/versions/v2022_11_28/types/group_0701.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0702.py b/githubkit/versions/v2022_11_28/types/group_0702.py index 37b39ae3a..6644e7609 100644 --- a/githubkit/versions/v2022_11_28/types/group_0702.py +++ b/githubkit/versions/v2022_11_28/types/group_0702.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0703.py b/githubkit/versions/v2022_11_28/types/group_0703.py index f19ba73a4..b42f5c267 100644 --- a/githubkit/versions/v2022_11_28/types/group_0703.py +++ b/githubkit/versions/v2022_11_28/types/group_0703.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0704.py b/githubkit/versions/v2022_11_28/types/group_0704.py index 28b66da33..3014c280b 100644 --- a/githubkit/versions/v2022_11_28/types/group_0704.py +++ b/githubkit/versions/v2022_11_28/types/group_0704.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0705.py b/githubkit/versions/v2022_11_28/types/group_0705.py index eaf6ebb92..0b85cf4b2 100644 --- a/githubkit/versions/v2022_11_28/types/group_0705.py +++ b/githubkit/versions/v2022_11_28/types/group_0705.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0706.py b/githubkit/versions/v2022_11_28/types/group_0706.py index 3caa83dd4..d905f5444 100644 --- a/githubkit/versions/v2022_11_28/types/group_0706.py +++ b/githubkit/versions/v2022_11_28/types/group_0706.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0707.py b/githubkit/versions/v2022_11_28/types/group_0707.py index fe2c8e580..b75d3b81c 100644 --- a/githubkit/versions/v2022_11_28/types/group_0707.py +++ b/githubkit/versions/v2022_11_28/types/group_0707.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0708.py b/githubkit/versions/v2022_11_28/types/group_0708.py index ecfd2f770..32f6df188 100644 --- a/githubkit/versions/v2022_11_28/types/group_0708.py +++ b/githubkit/versions/v2022_11_28/types/group_0708.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0709.py b/githubkit/versions/v2022_11_28/types/group_0709.py index 25e2e7404..d8c87f684 100644 --- a/githubkit/versions/v2022_11_28/types/group_0709.py +++ b/githubkit/versions/v2022_11_28/types/group_0709.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0710.py b/githubkit/versions/v2022_11_28/types/group_0710.py index b2a22cd11..4ecee7bd8 100644 --- a/githubkit/versions/v2022_11_28/types/group_0710.py +++ b/githubkit/versions/v2022_11_28/types/group_0710.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0711.py b/githubkit/versions/v2022_11_28/types/group_0711.py index 9dbf63223..c4fb60620 100644 --- a/githubkit/versions/v2022_11_28/types/group_0711.py +++ b/githubkit/versions/v2022_11_28/types/group_0711.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0712.py b/githubkit/versions/v2022_11_28/types/group_0712.py index 9810aafdd..6e687495b 100644 --- a/githubkit/versions/v2022_11_28/types/group_0712.py +++ b/githubkit/versions/v2022_11_28/types/group_0712.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0713.py b/githubkit/versions/v2022_11_28/types/group_0713.py index 6023941ec..2033f72f0 100644 --- a/githubkit/versions/v2022_11_28/types/group_0713.py +++ b/githubkit/versions/v2022_11_28/types/group_0713.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0714.py b/githubkit/versions/v2022_11_28/types/group_0714.py index eb8155552..bd3df91fe 100644 --- a/githubkit/versions/v2022_11_28/types/group_0714.py +++ b/githubkit/versions/v2022_11_28/types/group_0714.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/v2022_11_28/types/group_0715.py b/githubkit/versions/v2022_11_28/types/group_0715.py index 1000c0d3c..4c5cf1399 100644 --- a/githubkit/versions/v2022_11_28/types/group_0715.py +++ b/githubkit/versions/v2022_11_28/types/group_0715.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0716.py b/githubkit/versions/v2022_11_28/types/group_0716.py index d54f45c06..5f53f419f 100644 --- a/githubkit/versions/v2022_11_28/types/group_0716.py +++ b/githubkit/versions/v2022_11_28/types/group_0716.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0717.py b/githubkit/versions/v2022_11_28/types/group_0717.py index 45662ab5c..57e02c077 100644 --- a/githubkit/versions/v2022_11_28/types/group_0717.py +++ b/githubkit/versions/v2022_11_28/types/group_0717.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0718.py b/githubkit/versions/v2022_11_28/types/group_0718.py index 468a442b0..ca34af60f 100644 --- a/githubkit/versions/v2022_11_28/types/group_0718.py +++ b/githubkit/versions/v2022_11_28/types/group_0718.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0719.py b/githubkit/versions/v2022_11_28/types/group_0719.py index 319cf3dc9..3d633c21d 100644 --- a/githubkit/versions/v2022_11_28/types/group_0719.py +++ b/githubkit/versions/v2022_11_28/types/group_0719.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0720.py b/githubkit/versions/v2022_11_28/types/group_0720.py index 1e80aa28a..9403d073e 100644 --- a/githubkit/versions/v2022_11_28/types/group_0720.py +++ b/githubkit/versions/v2022_11_28/types/group_0720.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0722.py b/githubkit/versions/v2022_11_28/types/group_0722.py index 38d9b9650..da0d541ee 100644 --- a/githubkit/versions/v2022_11_28/types/group_0722.py +++ b/githubkit/versions/v2022_11_28/types/group_0722.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0723.py b/githubkit/versions/v2022_11_28/types/group_0723.py index d48593f3a..26951897f 100644 --- a/githubkit/versions/v2022_11_28/types/group_0723.py +++ b/githubkit/versions/v2022_11_28/types/group_0723.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0724.py b/githubkit/versions/v2022_11_28/types/group_0724.py index 56af4994c..53066a626 100644 --- a/githubkit/versions/v2022_11_28/types/group_0724.py +++ b/githubkit/versions/v2022_11_28/types/group_0724.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0725.py b/githubkit/versions/v2022_11_28/types/group_0725.py index 922c214b9..6f468304b 100644 --- a/githubkit/versions/v2022_11_28/types/group_0725.py +++ b/githubkit/versions/v2022_11_28/types/group_0725.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0726.py b/githubkit/versions/v2022_11_28/types/group_0726.py index 9ce9d6a79..5c47646ff 100644 --- a/githubkit/versions/v2022_11_28/types/group_0726.py +++ b/githubkit/versions/v2022_11_28/types/group_0726.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0727.py b/githubkit/versions/v2022_11_28/types/group_0727.py index cc04419bb..8903de287 100644 --- a/githubkit/versions/v2022_11_28/types/group_0727.py +++ b/githubkit/versions/v2022_11_28/types/group_0727.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0728.py b/githubkit/versions/v2022_11_28/types/group_0728.py index e10603441..297c96672 100644 --- a/githubkit/versions/v2022_11_28/types/group_0728.py +++ b/githubkit/versions/v2022_11_28/types/group_0728.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0729.py b/githubkit/versions/v2022_11_28/types/group_0729.py index 25fbe7ede..8f9a52fed 100644 --- a/githubkit/versions/v2022_11_28/types/group_0729.py +++ b/githubkit/versions/v2022_11_28/types/group_0729.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0730.py b/githubkit/versions/v2022_11_28/types/group_0730.py index a5cb47849..5462637a8 100644 --- a/githubkit/versions/v2022_11_28/types/group_0730.py +++ b/githubkit/versions/v2022_11_28/types/group_0730.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_0731.py b/githubkit/versions/v2022_11_28/types/group_0731.py index c4c7777fd..f0caca719 100644 --- a/githubkit/versions/v2022_11_28/types/group_0731.py +++ b/githubkit/versions/v2022_11_28/types/group_0731.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0732.py b/githubkit/versions/v2022_11_28/types/group_0732.py index 79ad67a9b..7d13f239b 100644 --- a/githubkit/versions/v2022_11_28/types/group_0732.py +++ b/githubkit/versions/v2022_11_28/types/group_0732.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0733.py b/githubkit/versions/v2022_11_28/types/group_0733.py index 63839a871..40c185b5f 100644 --- a/githubkit/versions/v2022_11_28/types/group_0733.py +++ b/githubkit/versions/v2022_11_28/types/group_0733.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/v2022_11_28/types/group_0734.py b/githubkit/versions/v2022_11_28/types/group_0734.py index b36053a07..106bdb6b1 100644 --- a/githubkit/versions/v2022_11_28/types/group_0734.py +++ b/githubkit/versions/v2022_11_28/types/group_0734.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0735.py b/githubkit/versions/v2022_11_28/types/group_0735.py index 30a6cee29..359bba717 100644 --- a/githubkit/versions/v2022_11_28/types/group_0735.py +++ b/githubkit/versions/v2022_11_28/types/group_0735.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0736.py b/githubkit/versions/v2022_11_28/types/group_0736.py index c6a611ccc..a9d3dee12 100644 --- a/githubkit/versions/v2022_11_28/types/group_0736.py +++ b/githubkit/versions/v2022_11_28/types/group_0736.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0737.py b/githubkit/versions/v2022_11_28/types/group_0737.py index a0d3f47de..90cfcad80 100644 --- a/githubkit/versions/v2022_11_28/types/group_0737.py +++ b/githubkit/versions/v2022_11_28/types/group_0737.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0738.py b/githubkit/versions/v2022_11_28/types/group_0738.py index 0c098b5c6..2a29eefd2 100644 --- a/githubkit/versions/v2022_11_28/types/group_0738.py +++ b/githubkit/versions/v2022_11_28/types/group_0738.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0739.py b/githubkit/versions/v2022_11_28/types/group_0739.py index c8fb576d8..2410babd8 100644 --- a/githubkit/versions/v2022_11_28/types/group_0739.py +++ b/githubkit/versions/v2022_11_28/types/group_0739.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0740.py b/githubkit/versions/v2022_11_28/types/group_0740.py index 667ecf80d..6ac0078f7 100644 --- a/githubkit/versions/v2022_11_28/types/group_0740.py +++ b/githubkit/versions/v2022_11_28/types/group_0740.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0741.py b/githubkit/versions/v2022_11_28/types/group_0741.py index 01edd386b..c9db80249 100644 --- a/githubkit/versions/v2022_11_28/types/group_0741.py +++ b/githubkit/versions/v2022_11_28/types/group_0741.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0742.py b/githubkit/versions/v2022_11_28/types/group_0742.py index b51a42dcd..2aa83e267 100644 --- a/githubkit/versions/v2022_11_28/types/group_0742.py +++ b/githubkit/versions/v2022_11_28/types/group_0742.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0743.py b/githubkit/versions/v2022_11_28/types/group_0743.py index ed81c08f5..c9b698ac2 100644 --- a/githubkit/versions/v2022_11_28/types/group_0743.py +++ b/githubkit/versions/v2022_11_28/types/group_0743.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0744.py b/githubkit/versions/v2022_11_28/types/group_0744.py index bfb41b570..47a5e9788 100644 --- a/githubkit/versions/v2022_11_28/types/group_0744.py +++ b/githubkit/versions/v2022_11_28/types/group_0744.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0745.py b/githubkit/versions/v2022_11_28/types/group_0745.py index c188b2031..e0f681505 100644 --- a/githubkit/versions/v2022_11_28/types/group_0745.py +++ b/githubkit/versions/v2022_11_28/types/group_0745.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0746.py b/githubkit/versions/v2022_11_28/types/group_0746.py index 9f8543468..57e879999 100644 --- a/githubkit/versions/v2022_11_28/types/group_0746.py +++ b/githubkit/versions/v2022_11_28/types/group_0746.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0747.py b/githubkit/versions/v2022_11_28/types/group_0747.py index 9baa3dd8f..44ab2e5b3 100644 --- a/githubkit/versions/v2022_11_28/types/group_0747.py +++ b/githubkit/versions/v2022_11_28/types/group_0747.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0748.py b/githubkit/versions/v2022_11_28/types/group_0748.py index bcf6f5d9e..dfe14ac12 100644 --- a/githubkit/versions/v2022_11_28/types/group_0748.py +++ b/githubkit/versions/v2022_11_28/types/group_0748.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0749.py b/githubkit/versions/v2022_11_28/types/group_0749.py index b8fa56f5a..80658fe8a 100644 --- a/githubkit/versions/v2022_11_28/types/group_0749.py +++ b/githubkit/versions/v2022_11_28/types/group_0749.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0750.py b/githubkit/versions/v2022_11_28/types/group_0750.py index 2005e6d29..ea276b437 100644 --- a/githubkit/versions/v2022_11_28/types/group_0750.py +++ b/githubkit/versions/v2022_11_28/types/group_0750.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0751.py b/githubkit/versions/v2022_11_28/types/group_0751.py index b5f2e60dd..7bc5f917d 100644 --- a/githubkit/versions/v2022_11_28/types/group_0751.py +++ b/githubkit/versions/v2022_11_28/types/group_0751.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0752.py b/githubkit/versions/v2022_11_28/types/group_0752.py index 001decc46..a9d6c7eb5 100644 --- a/githubkit/versions/v2022_11_28/types/group_0752.py +++ b/githubkit/versions/v2022_11_28/types/group_0752.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0753.py b/githubkit/versions/v2022_11_28/types/group_0753.py index 65152369b..ad600acd1 100644 --- a/githubkit/versions/v2022_11_28/types/group_0753.py +++ b/githubkit/versions/v2022_11_28/types/group_0753.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0754.py b/githubkit/versions/v2022_11_28/types/group_0754.py index f7934473d..9ad5e1762 100644 --- a/githubkit/versions/v2022_11_28/types/group_0754.py +++ b/githubkit/versions/v2022_11_28/types/group_0754.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0755.py b/githubkit/versions/v2022_11_28/types/group_0755.py index a3791cb6d..c1d127c0e 100644 --- a/githubkit/versions/v2022_11_28/types/group_0755.py +++ b/githubkit/versions/v2022_11_28/types/group_0755.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0756.py b/githubkit/versions/v2022_11_28/types/group_0756.py index 7feb1d882..8e517fbfc 100644 --- a/githubkit/versions/v2022_11_28/types/group_0756.py +++ b/githubkit/versions/v2022_11_28/types/group_0756.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0757.py b/githubkit/versions/v2022_11_28/types/group_0757.py index b2bbe94dd..00f40a3d8 100644 --- a/githubkit/versions/v2022_11_28/types/group_0757.py +++ b/githubkit/versions/v2022_11_28/types/group_0757.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0758.py b/githubkit/versions/v2022_11_28/types/group_0758.py index d4cf2e4ae..a33752438 100644 --- a/githubkit/versions/v2022_11_28/types/group_0758.py +++ b/githubkit/versions/v2022_11_28/types/group_0758.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0759.py b/githubkit/versions/v2022_11_28/types/group_0759.py index d147797d6..4c3c84e39 100644 --- a/githubkit/versions/v2022_11_28/types/group_0759.py +++ b/githubkit/versions/v2022_11_28/types/group_0759.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0760.py b/githubkit/versions/v2022_11_28/types/group_0760.py index 3304b0fe2..5e157f986 100644 --- a/githubkit/versions/v2022_11_28/types/group_0760.py +++ b/githubkit/versions/v2022_11_28/types/group_0760.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0761.py b/githubkit/versions/v2022_11_28/types/group_0761.py index 07b3f7161..45120be92 100644 --- a/githubkit/versions/v2022_11_28/types/group_0761.py +++ b/githubkit/versions/v2022_11_28/types/group_0761.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0762.py b/githubkit/versions/v2022_11_28/types/group_0762.py index 50e0f0de9..67074f8b4 100644 --- a/githubkit/versions/v2022_11_28/types/group_0762.py +++ b/githubkit/versions/v2022_11_28/types/group_0762.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0763.py b/githubkit/versions/v2022_11_28/types/group_0763.py index 7ed3bd045..1f3817649 100644 --- a/githubkit/versions/v2022_11_28/types/group_0763.py +++ b/githubkit/versions/v2022_11_28/types/group_0763.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0764.py b/githubkit/versions/v2022_11_28/types/group_0764.py index 6bce83669..c37503d61 100644 --- a/githubkit/versions/v2022_11_28/types/group_0764.py +++ b/githubkit/versions/v2022_11_28/types/group_0764.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0765.py b/githubkit/versions/v2022_11_28/types/group_0765.py index 9ea156460..be43a8573 100644 --- a/githubkit/versions/v2022_11_28/types/group_0765.py +++ b/githubkit/versions/v2022_11_28/types/group_0765.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0766.py b/githubkit/versions/v2022_11_28/types/group_0766.py index a8940aa44..3a9209f58 100644 --- a/githubkit/versions/v2022_11_28/types/group_0766.py +++ b/githubkit/versions/v2022_11_28/types/group_0766.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0767.py b/githubkit/versions/v2022_11_28/types/group_0767.py index 4607ea6b5..b26169e30 100644 --- a/githubkit/versions/v2022_11_28/types/group_0767.py +++ b/githubkit/versions/v2022_11_28/types/group_0767.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_0768.py b/githubkit/versions/v2022_11_28/types/group_0768.py index dcc024442..09180065b 100644 --- a/githubkit/versions/v2022_11_28/types/group_0768.py +++ b/githubkit/versions/v2022_11_28/types/group_0768.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_0769.py b/githubkit/versions/v2022_11_28/types/group_0769.py index eaf46fc4c..c0edc8da1 100644 --- a/githubkit/versions/v2022_11_28/types/group_0769.py +++ b/githubkit/versions/v2022_11_28/types/group_0769.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0770.py b/githubkit/versions/v2022_11_28/types/group_0770.py index 412460516..12bd7c2c7 100644 --- a/githubkit/versions/v2022_11_28/types/group_0770.py +++ b/githubkit/versions/v2022_11_28/types/group_0770.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0771.py b/githubkit/versions/v2022_11_28/types/group_0771.py index 9799362d8..b49eb7836 100644 --- a/githubkit/versions/v2022_11_28/types/group_0771.py +++ b/githubkit/versions/v2022_11_28/types/group_0771.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0772.py b/githubkit/versions/v2022_11_28/types/group_0772.py index 7d896017d..b9a7896db 100644 --- a/githubkit/versions/v2022_11_28/types/group_0772.py +++ b/githubkit/versions/v2022_11_28/types/group_0772.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0773.py b/githubkit/versions/v2022_11_28/types/group_0773.py index 674636477..3a1ea030c 100644 --- a/githubkit/versions/v2022_11_28/types/group_0773.py +++ b/githubkit/versions/v2022_11_28/types/group_0773.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0774.py b/githubkit/versions/v2022_11_28/types/group_0774.py index d17533f25..f829efb72 100644 --- a/githubkit/versions/v2022_11_28/types/group_0774.py +++ b/githubkit/versions/v2022_11_28/types/group_0774.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0775.py b/githubkit/versions/v2022_11_28/types/group_0775.py index 88cb8b8a4..2f2fc5178 100644 --- a/githubkit/versions/v2022_11_28/types/group_0775.py +++ b/githubkit/versions/v2022_11_28/types/group_0775.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0776.py b/githubkit/versions/v2022_11_28/types/group_0776.py index 66a683a4a..fcfe9f846 100644 --- a/githubkit/versions/v2022_11_28/types/group_0776.py +++ b/githubkit/versions/v2022_11_28/types/group_0776.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0777.py b/githubkit/versions/v2022_11_28/types/group_0777.py index c183638ef..0a73bc19b 100644 --- a/githubkit/versions/v2022_11_28/types/group_0777.py +++ b/githubkit/versions/v2022_11_28/types/group_0777.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0778.py b/githubkit/versions/v2022_11_28/types/group_0778.py index a938c1a94..a23000df5 100644 --- a/githubkit/versions/v2022_11_28/types/group_0778.py +++ b/githubkit/versions/v2022_11_28/types/group_0778.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0779.py b/githubkit/versions/v2022_11_28/types/group_0779.py index 06f44cff8..aab36d9f8 100644 --- a/githubkit/versions/v2022_11_28/types/group_0779.py +++ b/githubkit/versions/v2022_11_28/types/group_0779.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0780.py b/githubkit/versions/v2022_11_28/types/group_0780.py index ee5dd1e8a..19cbee4e2 100644 --- a/githubkit/versions/v2022_11_28/types/group_0780.py +++ b/githubkit/versions/v2022_11_28/types/group_0780.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_0781.py b/githubkit/versions/v2022_11_28/types/group_0781.py index d42541f1c..983acb648 100644 --- a/githubkit/versions/v2022_11_28/types/group_0781.py +++ b/githubkit/versions/v2022_11_28/types/group_0781.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0782.py b/githubkit/versions/v2022_11_28/types/group_0782.py index 318e06c19..6d8f6e0a2 100644 --- a/githubkit/versions/v2022_11_28/types/group_0782.py +++ b/githubkit/versions/v2022_11_28/types/group_0782.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_0783.py b/githubkit/versions/v2022_11_28/types/group_0783.py index 1c8173228..0360155d9 100644 --- a/githubkit/versions/v2022_11_28/types/group_0783.py +++ b/githubkit/versions/v2022_11_28/types/group_0783.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0784.py b/githubkit/versions/v2022_11_28/types/group_0784.py index 9630c39c5..335c6b52a 100644 --- a/githubkit/versions/v2022_11_28/types/group_0784.py +++ b/githubkit/versions/v2022_11_28/types/group_0784.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0785.py b/githubkit/versions/v2022_11_28/types/group_0785.py index 54de5e642..a7b5bc24a 100644 --- a/githubkit/versions/v2022_11_28/types/group_0785.py +++ b/githubkit/versions/v2022_11_28/types/group_0785.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0786.py b/githubkit/versions/v2022_11_28/types/group_0786.py index 6d1f8d21d..2b483aef3 100644 --- a/githubkit/versions/v2022_11_28/types/group_0786.py +++ b/githubkit/versions/v2022_11_28/types/group_0786.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0787.py b/githubkit/versions/v2022_11_28/types/group_0787.py index 9fcc2f4a8..3236a7e2b 100644 --- a/githubkit/versions/v2022_11_28/types/group_0787.py +++ b/githubkit/versions/v2022_11_28/types/group_0787.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0788.py b/githubkit/versions/v2022_11_28/types/group_0788.py index 7a1b420dd..4e053b74d 100644 --- a/githubkit/versions/v2022_11_28/types/group_0788.py +++ b/githubkit/versions/v2022_11_28/types/group_0788.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0789.py b/githubkit/versions/v2022_11_28/types/group_0789.py index 0360c442e..bd4098798 100644 --- a/githubkit/versions/v2022_11_28/types/group_0789.py +++ b/githubkit/versions/v2022_11_28/types/group_0789.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0790.py b/githubkit/versions/v2022_11_28/types/group_0790.py index a2ab276a5..7aae3a62a 100644 --- a/githubkit/versions/v2022_11_28/types/group_0790.py +++ b/githubkit/versions/v2022_11_28/types/group_0790.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0791.py b/githubkit/versions/v2022_11_28/types/group_0791.py index 9d31797c0..d2189dd2e 100644 --- a/githubkit/versions/v2022_11_28/types/group_0791.py +++ b/githubkit/versions/v2022_11_28/types/group_0791.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0792.py b/githubkit/versions/v2022_11_28/types/group_0792.py index 80ba52b2b..8ea8b11cc 100644 --- a/githubkit/versions/v2022_11_28/types/group_0792.py +++ b/githubkit/versions/v2022_11_28/types/group_0792.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0793.py b/githubkit/versions/v2022_11_28/types/group_0793.py index 8e5eb293c..b2190c31c 100644 --- a/githubkit/versions/v2022_11_28/types/group_0793.py +++ b/githubkit/versions/v2022_11_28/types/group_0793.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0794.py b/githubkit/versions/v2022_11_28/types/group_0794.py index a96256b67..1a30a0fbb 100644 --- a/githubkit/versions/v2022_11_28/types/group_0794.py +++ b/githubkit/versions/v2022_11_28/types/group_0794.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0795.py b/githubkit/versions/v2022_11_28/types/group_0795.py index 7a68aa431..342fee780 100644 --- a/githubkit/versions/v2022_11_28/types/group_0795.py +++ b/githubkit/versions/v2022_11_28/types/group_0795.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0796.py b/githubkit/versions/v2022_11_28/types/group_0796.py index 05e7a55a1..058da261a 100644 --- a/githubkit/versions/v2022_11_28/types/group_0796.py +++ b/githubkit/versions/v2022_11_28/types/group_0796.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0797.py b/githubkit/versions/v2022_11_28/types/group_0797.py index bc0ca0c84..1272d7cdf 100644 --- a/githubkit/versions/v2022_11_28/types/group_0797.py +++ b/githubkit/versions/v2022_11_28/types/group_0797.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0798.py b/githubkit/versions/v2022_11_28/types/group_0798.py index a7aaf5074..1b62b8493 100644 --- a/githubkit/versions/v2022_11_28/types/group_0798.py +++ b/githubkit/versions/v2022_11_28/types/group_0798.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0799.py b/githubkit/versions/v2022_11_28/types/group_0799.py index 39052b0e9..e9bb9d3ae 100644 --- a/githubkit/versions/v2022_11_28/types/group_0799.py +++ b/githubkit/versions/v2022_11_28/types/group_0799.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0800.py b/githubkit/versions/v2022_11_28/types/group_0800.py index e29106611..bc114a56d 100644 --- a/githubkit/versions/v2022_11_28/types/group_0800.py +++ b/githubkit/versions/v2022_11_28/types/group_0800.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -114,7 +113,9 @@ class WebhookWorkflowRunCompletedPropWorkflowRunMergedHeadCommitType(TypedDict): """WebhookWorkflowRunCompletedPropWorkflowRunMergedHeadCommit""" author: WebhookWorkflowRunCompletedPropWorkflowRunMergedHeadCommitPropAuthorType - committer: WebhookWorkflowRunCompletedPropWorkflowRunMergedHeadCommitPropCommitterType + committer: ( + WebhookWorkflowRunCompletedPropWorkflowRunMergedHeadCommitPropCommitterType + ) id: str message: str timestamp: str diff --git a/githubkit/versions/v2022_11_28/types/group_0801.py b/githubkit/versions/v2022_11_28/types/group_0801.py index 0464ddfc4..9a6780d5d 100644 --- a/githubkit/versions/v2022_11_28/types/group_0801.py +++ b/githubkit/versions/v2022_11_28/types/group_0801.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -48,7 +47,9 @@ class WebhookWorkflowRunCompletedPropWorkflowRunAllof0Type(TypedDict): event: str head_branch: Union[str, None] head_commit: WebhookWorkflowRunCompletedPropWorkflowRunAllof0PropHeadCommitType - head_repository: WebhookWorkflowRunCompletedPropWorkflowRunAllof0PropHeadRepositoryType + head_repository: ( + WebhookWorkflowRunCompletedPropWorkflowRunAllof0PropHeadRepositoryType + ) head_sha: str html_url: str id: int @@ -144,7 +145,9 @@ class WebhookWorkflowRunCompletedPropWorkflowRunAllof0PropHeadCommitType(TypedDi """SimpleCommit""" author: WebhookWorkflowRunCompletedPropWorkflowRunAllof0PropHeadCommitPropAuthorType - committer: WebhookWorkflowRunCompletedPropWorkflowRunAllof0PropHeadCommitPropCommitterType + committer: ( + WebhookWorkflowRunCompletedPropWorkflowRunAllof0PropHeadCommitPropCommitterType + ) id: str message: str timestamp: str diff --git a/githubkit/versions/v2022_11_28/types/group_0802.py b/githubkit/versions/v2022_11_28/types/group_0802.py index b019cb046..680986fe2 100644 --- a/githubkit/versions/v2022_11_28/types/group_0802.py +++ b/githubkit/versions/v2022_11_28/types/group_0802.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0803.py b/githubkit/versions/v2022_11_28/types/group_0803.py index 671a22e9a..2701a8c69 100644 --- a/githubkit/versions/v2022_11_28/types/group_0803.py +++ b/githubkit/versions/v2022_11_28/types/group_0803.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0804.py b/githubkit/versions/v2022_11_28/types/group_0804.py index eca6121fb..dff2a3e5f 100644 --- a/githubkit/versions/v2022_11_28/types/group_0804.py +++ b/githubkit/versions/v2022_11_28/types/group_0804.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_0805.py b/githubkit/versions/v2022_11_28/types/group_0805.py index 9fb38ffb6..e6b56bf2a 100644 --- a/githubkit/versions/v2022_11_28/types/group_0805.py +++ b/githubkit/versions/v2022_11_28/types/group_0805.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0806.py b/githubkit/versions/v2022_11_28/types/group_0806.py index 418c69c2d..a121117fc 100644 --- a/githubkit/versions/v2022_11_28/types/group_0806.py +++ b/githubkit/versions/v2022_11_28/types/group_0806.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0807.py b/githubkit/versions/v2022_11_28/types/group_0807.py index 0817d3c9e..a835f2544 100644 --- a/githubkit/versions/v2022_11_28/types/group_0807.py +++ b/githubkit/versions/v2022_11_28/types/group_0807.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0808.py b/githubkit/versions/v2022_11_28/types/group_0808.py index b0ed3266a..b4de597cf 100644 --- a/githubkit/versions/v2022_11_28/types/group_0808.py +++ b/githubkit/versions/v2022_11_28/types/group_0808.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -78,7 +77,9 @@ class WebhookWorkflowRunInProgressPropWorkflowRunType(TypedDict): run_number: int run_started_at: datetime status: Literal["requested", "in_progress", "completed", "queued", "pending"] - triggering_actor: WebhookWorkflowRunInProgressPropWorkflowRunMergedTriggeringActorType + triggering_actor: ( + WebhookWorkflowRunInProgressPropWorkflowRunMergedTriggeringActorType + ) updated_at: datetime url: str workflow_id: int @@ -115,7 +116,9 @@ class WebhookWorkflowRunInProgressPropWorkflowRunMergedHeadCommitType(TypedDict) """WebhookWorkflowRunInProgressPropWorkflowRunMergedHeadCommit""" author: WebhookWorkflowRunInProgressPropWorkflowRunMergedHeadCommitPropAuthorType - committer: WebhookWorkflowRunInProgressPropWorkflowRunMergedHeadCommitPropCommitterType + committer: ( + WebhookWorkflowRunInProgressPropWorkflowRunMergedHeadCommitPropCommitterType + ) id: str message: str timestamp: str diff --git a/githubkit/versions/v2022_11_28/types/group_0809.py b/githubkit/versions/v2022_11_28/types/group_0809.py index 5af557a60..8d51d4aa2 100644 --- a/githubkit/versions/v2022_11_28/types/group_0809.py +++ b/githubkit/versions/v2022_11_28/types/group_0809.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime @@ -48,7 +47,9 @@ class WebhookWorkflowRunInProgressPropWorkflowRunAllof0Type(TypedDict): event: str head_branch: Union[str, None] head_commit: WebhookWorkflowRunInProgressPropWorkflowRunAllof0PropHeadCommitType - head_repository: WebhookWorkflowRunInProgressPropWorkflowRunAllof0PropHeadRepositoryType + head_repository: ( + WebhookWorkflowRunInProgressPropWorkflowRunAllof0PropHeadRepositoryType + ) head_sha: str html_url: str id: int @@ -141,8 +142,12 @@ class WebhookWorkflowRunInProgressPropWorkflowRunAllof0PropTriggeringActorType( class WebhookWorkflowRunInProgressPropWorkflowRunAllof0PropHeadCommitType(TypedDict): """SimpleCommit""" - author: WebhookWorkflowRunInProgressPropWorkflowRunAllof0PropHeadCommitPropAuthorType - committer: WebhookWorkflowRunInProgressPropWorkflowRunAllof0PropHeadCommitPropCommitterType + author: ( + WebhookWorkflowRunInProgressPropWorkflowRunAllof0PropHeadCommitPropAuthorType + ) + committer: ( + WebhookWorkflowRunInProgressPropWorkflowRunAllof0PropHeadCommitPropCommitterType + ) id: str message: str timestamp: str diff --git a/githubkit/versions/v2022_11_28/types/group_0810.py b/githubkit/versions/v2022_11_28/types/group_0810.py index abbbd0667..ea1da1d6b 100644 --- a/githubkit/versions/v2022_11_28/types/group_0810.py +++ b/githubkit/versions/v2022_11_28/types/group_0810.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0811.py b/githubkit/versions/v2022_11_28/types/group_0811.py index a8847c5fd..7f4dd1e39 100644 --- a/githubkit/versions/v2022_11_28/types/group_0811.py +++ b/githubkit/versions/v2022_11_28/types/group_0811.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0812.py b/githubkit/versions/v2022_11_28/types/group_0812.py index fc96d5dab..3f28dd082 100644 --- a/githubkit/versions/v2022_11_28/types/group_0812.py +++ b/githubkit/versions/v2022_11_28/types/group_0812.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_0813.py b/githubkit/versions/v2022_11_28/types/group_0813.py index 16fc47e3f..d75afe787 100644 --- a/githubkit/versions/v2022_11_28/types/group_0813.py +++ b/githubkit/versions/v2022_11_28/types/group_0813.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0814.py b/githubkit/versions/v2022_11_28/types/group_0814.py index d600bee3d..9ac0110cd 100644 --- a/githubkit/versions/v2022_11_28/types/group_0814.py +++ b/githubkit/versions/v2022_11_28/types/group_0814.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0815.py b/githubkit/versions/v2022_11_28/types/group_0815.py index cced98cd3..33ba15f9c 100644 --- a/githubkit/versions/v2022_11_28/types/group_0815.py +++ b/githubkit/versions/v2022_11_28/types/group_0815.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0816.py b/githubkit/versions/v2022_11_28/types/group_0816.py index b811dec0a..136b8f69e 100644 --- a/githubkit/versions/v2022_11_28/types/group_0816.py +++ b/githubkit/versions/v2022_11_28/types/group_0816.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0817.py b/githubkit/versions/v2022_11_28/types/group_0817.py index a72e9853f..528a915b7 100644 --- a/githubkit/versions/v2022_11_28/types/group_0817.py +++ b/githubkit/versions/v2022_11_28/types/group_0817.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0818.py b/githubkit/versions/v2022_11_28/types/group_0818.py index 216b03eaf..8c1c8c418 100644 --- a/githubkit/versions/v2022_11_28/types/group_0818.py +++ b/githubkit/versions/v2022_11_28/types/group_0818.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0819.py b/githubkit/versions/v2022_11_28/types/group_0819.py index 2420f7122..24eb9bac1 100644 --- a/githubkit/versions/v2022_11_28/types/group_0819.py +++ b/githubkit/versions/v2022_11_28/types/group_0819.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0820.py b/githubkit/versions/v2022_11_28/types/group_0820.py index e702daad9..02bda8c69 100644 --- a/githubkit/versions/v2022_11_28/types/group_0820.py +++ b/githubkit/versions/v2022_11_28/types/group_0820.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0821.py b/githubkit/versions/v2022_11_28/types/group_0821.py index b9fe3cde9..fad60868e 100644 --- a/githubkit/versions/v2022_11_28/types/group_0821.py +++ b/githubkit/versions/v2022_11_28/types/group_0821.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0822.py b/githubkit/versions/v2022_11_28/types/group_0822.py index 356c41967..c0bad1ae1 100644 --- a/githubkit/versions/v2022_11_28/types/group_0822.py +++ b/githubkit/versions/v2022_11_28/types/group_0822.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0823.py b/githubkit/versions/v2022_11_28/types/group_0823.py index fc515f81e..8a68cb8df 100644 --- a/githubkit/versions/v2022_11_28/types/group_0823.py +++ b/githubkit/versions/v2022_11_28/types/group_0823.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0824.py b/githubkit/versions/v2022_11_28/types/group_0824.py index d777b3a1c..8e0b6ce68 100644 --- a/githubkit/versions/v2022_11_28/types/group_0824.py +++ b/githubkit/versions/v2022_11_28/types/group_0824.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0825.py b/githubkit/versions/v2022_11_28/types/group_0825.py index cf3bffe39..9af931f5d 100644 --- a/githubkit/versions/v2022_11_28/types/group_0825.py +++ b/githubkit/versions/v2022_11_28/types/group_0825.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0826.py b/githubkit/versions/v2022_11_28/types/group_0826.py index af8c92abd..54e9d814e 100644 --- a/githubkit/versions/v2022_11_28/types/group_0826.py +++ b/githubkit/versions/v2022_11_28/types/group_0826.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0827.py b/githubkit/versions/v2022_11_28/types/group_0827.py index fd88c0b97..2f451b10b 100644 --- a/githubkit/versions/v2022_11_28/types/group_0827.py +++ b/githubkit/versions/v2022_11_28/types/group_0827.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_0828.py b/githubkit/versions/v2022_11_28/types/group_0828.py index c6e2f9c91..8f9809a85 100644 --- a/githubkit/versions/v2022_11_28/types/group_0828.py +++ b/githubkit/versions/v2022_11_28/types/group_0828.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0829.py b/githubkit/versions/v2022_11_28/types/group_0829.py index b18636bcd..c1d56fb20 100644 --- a/githubkit/versions/v2022_11_28/types/group_0829.py +++ b/githubkit/versions/v2022_11_28/types/group_0829.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0830.py b/githubkit/versions/v2022_11_28/types/group_0830.py index 2117a9827..320e5859f 100644 --- a/githubkit/versions/v2022_11_28/types/group_0830.py +++ b/githubkit/versions/v2022_11_28/types/group_0830.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_0831.py b/githubkit/versions/v2022_11_28/types/group_0831.py index af75e6317..054661ac7 100644 --- a/githubkit/versions/v2022_11_28/types/group_0831.py +++ b/githubkit/versions/v2022_11_28/types/group_0831.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0832.py b/githubkit/versions/v2022_11_28/types/group_0832.py index c4702de9d..39ac46ae2 100644 --- a/githubkit/versions/v2022_11_28/types/group_0832.py +++ b/githubkit/versions/v2022_11_28/types/group_0832.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0833.py b/githubkit/versions/v2022_11_28/types/group_0833.py index 4ee58c5f8..10e6b69c7 100644 --- a/githubkit/versions/v2022_11_28/types/group_0833.py +++ b/githubkit/versions/v2022_11_28/types/group_0833.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0834.py b/githubkit/versions/v2022_11_28/types/group_0834.py index e229b60e8..0e16da280 100644 --- a/githubkit/versions/v2022_11_28/types/group_0834.py +++ b/githubkit/versions/v2022_11_28/types/group_0834.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0835.py b/githubkit/versions/v2022_11_28/types/group_0835.py index c6a74d3e5..247364e10 100644 --- a/githubkit/versions/v2022_11_28/types/group_0835.py +++ b/githubkit/versions/v2022_11_28/types/group_0835.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0836.py b/githubkit/versions/v2022_11_28/types/group_0836.py index 908d0e4d6..b40e83f9e 100644 --- a/githubkit/versions/v2022_11_28/types/group_0836.py +++ b/githubkit/versions/v2022_11_28/types/group_0836.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0837.py b/githubkit/versions/v2022_11_28/types/group_0837.py index 8c6984201..36e560089 100644 --- a/githubkit/versions/v2022_11_28/types/group_0837.py +++ b/githubkit/versions/v2022_11_28/types/group_0837.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_0838.py b/githubkit/versions/v2022_11_28/types/group_0838.py index c0531787f..d14e27254 100644 --- a/githubkit/versions/v2022_11_28/types/group_0838.py +++ b/githubkit/versions/v2022_11_28/types/group_0838.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_0839.py b/githubkit/versions/v2022_11_28/types/group_0839.py index 188294de6..4172f7bc5 100644 --- a/githubkit/versions/v2022_11_28/types/group_0839.py +++ b/githubkit/versions/v2022_11_28/types/group_0839.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0840.py b/githubkit/versions/v2022_11_28/types/group_0840.py index 8fe18f9c6..00d36424e 100644 --- a/githubkit/versions/v2022_11_28/types/group_0840.py +++ b/githubkit/versions/v2022_11_28/types/group_0840.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0841.py b/githubkit/versions/v2022_11_28/types/group_0841.py index 854b9dce9..057fcec7d 100644 --- a/githubkit/versions/v2022_11_28/types/group_0841.py +++ b/githubkit/versions/v2022_11_28/types/group_0841.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0842.py b/githubkit/versions/v2022_11_28/types/group_0842.py index fc223db7d..dbf4b3831 100644 --- a/githubkit/versions/v2022_11_28/types/group_0842.py +++ b/githubkit/versions/v2022_11_28/types/group_0842.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0843.py b/githubkit/versions/v2022_11_28/types/group_0843.py index 93c89909d..0a9b8d49f 100644 --- a/githubkit/versions/v2022_11_28/types/group_0843.py +++ b/githubkit/versions/v2022_11_28/types/group_0843.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0844.py b/githubkit/versions/v2022_11_28/types/group_0844.py index e2a3a345a..a64568beb 100644 --- a/githubkit/versions/v2022_11_28/types/group_0844.py +++ b/githubkit/versions/v2022_11_28/types/group_0844.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0845.py b/githubkit/versions/v2022_11_28/types/group_0845.py index 3dcfca7b8..eca351801 100644 --- a/githubkit/versions/v2022_11_28/types/group_0845.py +++ b/githubkit/versions/v2022_11_28/types/group_0845.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0846.py b/githubkit/versions/v2022_11_28/types/group_0846.py index 2bc408de7..abe37aeba 100644 --- a/githubkit/versions/v2022_11_28/types/group_0846.py +++ b/githubkit/versions/v2022_11_28/types/group_0846.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0847.py b/githubkit/versions/v2022_11_28/types/group_0847.py index edfd7f21e..e67ecda67 100644 --- a/githubkit/versions/v2022_11_28/types/group_0847.py +++ b/githubkit/versions/v2022_11_28/types/group_0847.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0848.py b/githubkit/versions/v2022_11_28/types/group_0848.py index 6a275ec26..501b19b50 100644 --- a/githubkit/versions/v2022_11_28/types/group_0848.py +++ b/githubkit/versions/v2022_11_28/types/group_0848.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0849.py b/githubkit/versions/v2022_11_28/types/group_0849.py index bc1532441..a31968bb1 100644 --- a/githubkit/versions/v2022_11_28/types/group_0849.py +++ b/githubkit/versions/v2022_11_28/types/group_0849.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0850.py b/githubkit/versions/v2022_11_28/types/group_0850.py index 881b3343b..a1d23fc81 100644 --- a/githubkit/versions/v2022_11_28/types/group_0850.py +++ b/githubkit/versions/v2022_11_28/types/group_0850.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0851.py b/githubkit/versions/v2022_11_28/types/group_0851.py index 324a6e6f4..2e71259c6 100644 --- a/githubkit/versions/v2022_11_28/types/group_0851.py +++ b/githubkit/versions/v2022_11_28/types/group_0851.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0852.py b/githubkit/versions/v2022_11_28/types/group_0852.py index 3d27187a5..011a4a449 100644 --- a/githubkit/versions/v2022_11_28/types/group_0852.py +++ b/githubkit/versions/v2022_11_28/types/group_0852.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0853.py b/githubkit/versions/v2022_11_28/types/group_0853.py index 371eec963..046e030f4 100644 --- a/githubkit/versions/v2022_11_28/types/group_0853.py +++ b/githubkit/versions/v2022_11_28/types/group_0853.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0854.py b/githubkit/versions/v2022_11_28/types/group_0854.py index 4aec7347a..6323f1787 100644 --- a/githubkit/versions/v2022_11_28/types/group_0854.py +++ b/githubkit/versions/v2022_11_28/types/group_0854.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0855.py b/githubkit/versions/v2022_11_28/types/group_0855.py index d570dab8a..669cd0638 100644 --- a/githubkit/versions/v2022_11_28/types/group_0855.py +++ b/githubkit/versions/v2022_11_28/types/group_0855.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0856.py b/githubkit/versions/v2022_11_28/types/group_0856.py index d7605228c..bf80fe0df 100644 --- a/githubkit/versions/v2022_11_28/types/group_0856.py +++ b/githubkit/versions/v2022_11_28/types/group_0856.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0857.py b/githubkit/versions/v2022_11_28/types/group_0857.py index e1a707287..dd70527c5 100644 --- a/githubkit/versions/v2022_11_28/types/group_0857.py +++ b/githubkit/versions/v2022_11_28/types/group_0857.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0858.py b/githubkit/versions/v2022_11_28/types/group_0858.py index 54ccde0e6..70ff9cb54 100644 --- a/githubkit/versions/v2022_11_28/types/group_0858.py +++ b/githubkit/versions/v2022_11_28/types/group_0858.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0859.py b/githubkit/versions/v2022_11_28/types/group_0859.py index ad8188282..7038b96c8 100644 --- a/githubkit/versions/v2022_11_28/types/group_0859.py +++ b/githubkit/versions/v2022_11_28/types/group_0859.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0860.py b/githubkit/versions/v2022_11_28/types/group_0860.py index cbaf68acb..fc7018c55 100644 --- a/githubkit/versions/v2022_11_28/types/group_0860.py +++ b/githubkit/versions/v2022_11_28/types/group_0860.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0861.py b/githubkit/versions/v2022_11_28/types/group_0861.py index c456f7f30..11890a4e9 100644 --- a/githubkit/versions/v2022_11_28/types/group_0861.py +++ b/githubkit/versions/v2022_11_28/types/group_0861.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0862.py b/githubkit/versions/v2022_11_28/types/group_0862.py index 860deb451..ecb5a7ff7 100644 --- a/githubkit/versions/v2022_11_28/types/group_0862.py +++ b/githubkit/versions/v2022_11_28/types/group_0862.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0863.py b/githubkit/versions/v2022_11_28/types/group_0863.py index cd937cbb8..343148794 100644 --- a/githubkit/versions/v2022_11_28/types/group_0863.py +++ b/githubkit/versions/v2022_11_28/types/group_0863.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0864.py b/githubkit/versions/v2022_11_28/types/group_0864.py index 698e384d0..9f9f2b273 100644 --- a/githubkit/versions/v2022_11_28/types/group_0864.py +++ b/githubkit/versions/v2022_11_28/types/group_0864.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0865.py b/githubkit/versions/v2022_11_28/types/group_0865.py index 70a93d119..df9701450 100644 --- a/githubkit/versions/v2022_11_28/types/group_0865.py +++ b/githubkit/versions/v2022_11_28/types/group_0865.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0866.py b/githubkit/versions/v2022_11_28/types/group_0866.py index 85ae82828..1acb10792 100644 --- a/githubkit/versions/v2022_11_28/types/group_0866.py +++ b/githubkit/versions/v2022_11_28/types/group_0866.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0867.py b/githubkit/versions/v2022_11_28/types/group_0867.py index 838545650..bc6a55ac2 100644 --- a/githubkit/versions/v2022_11_28/types/group_0867.py +++ b/githubkit/versions/v2022_11_28/types/group_0867.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0868.py b/githubkit/versions/v2022_11_28/types/group_0868.py index 8e82cd5aa..f5fc4cf2b 100644 --- a/githubkit/versions/v2022_11_28/types/group_0868.py +++ b/githubkit/versions/v2022_11_28/types/group_0868.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0869.py b/githubkit/versions/v2022_11_28/types/group_0869.py index 0283e93b3..7d801be5e 100644 --- a/githubkit/versions/v2022_11_28/types/group_0869.py +++ b/githubkit/versions/v2022_11_28/types/group_0869.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0870.py b/githubkit/versions/v2022_11_28/types/group_0870.py index 050c21592..ad2745b9f 100644 --- a/githubkit/versions/v2022_11_28/types/group_0870.py +++ b/githubkit/versions/v2022_11_28/types/group_0870.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0871.py b/githubkit/versions/v2022_11_28/types/group_0871.py index 6c2b679af..2c06d525c 100644 --- a/githubkit/versions/v2022_11_28/types/group_0871.py +++ b/githubkit/versions/v2022_11_28/types/group_0871.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0872.py b/githubkit/versions/v2022_11_28/types/group_0872.py index ee9ce9269..d2bc78059 100644 --- a/githubkit/versions/v2022_11_28/types/group_0872.py +++ b/githubkit/versions/v2022_11_28/types/group_0872.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0873.py b/githubkit/versions/v2022_11_28/types/group_0873.py index 53f9e5106..c59c644d1 100644 --- a/githubkit/versions/v2022_11_28/types/group_0873.py +++ b/githubkit/versions/v2022_11_28/types/group_0873.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0874.py b/githubkit/versions/v2022_11_28/types/group_0874.py index 217d4574c..b06b1b236 100644 --- a/githubkit/versions/v2022_11_28/types/group_0874.py +++ b/githubkit/versions/v2022_11_28/types/group_0874.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0875.py b/githubkit/versions/v2022_11_28/types/group_0875.py index 4788504ff..146387615 100644 --- a/githubkit/versions/v2022_11_28/types/group_0875.py +++ b/githubkit/versions/v2022_11_28/types/group_0875.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0876.py b/githubkit/versions/v2022_11_28/types/group_0876.py index d201c082e..a4754484f 100644 --- a/githubkit/versions/v2022_11_28/types/group_0876.py +++ b/githubkit/versions/v2022_11_28/types/group_0876.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0877.py b/githubkit/versions/v2022_11_28/types/group_0877.py index 5effab034..eb6772b44 100644 --- a/githubkit/versions/v2022_11_28/types/group_0877.py +++ b/githubkit/versions/v2022_11_28/types/group_0877.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0878.py b/githubkit/versions/v2022_11_28/types/group_0878.py index 9f6d2d62e..85e4c4648 100644 --- a/githubkit/versions/v2022_11_28/types/group_0878.py +++ b/githubkit/versions/v2022_11_28/types/group_0878.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0879.py b/githubkit/versions/v2022_11_28/types/group_0879.py index 38cdb8581..20b1891ca 100644 --- a/githubkit/versions/v2022_11_28/types/group_0879.py +++ b/githubkit/versions/v2022_11_28/types/group_0879.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0880.py b/githubkit/versions/v2022_11_28/types/group_0880.py index 1b469291b..122ba557e 100644 --- a/githubkit/versions/v2022_11_28/types/group_0880.py +++ b/githubkit/versions/v2022_11_28/types/group_0880.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/v2022_11_28/types/group_0881.py b/githubkit/versions/v2022_11_28/types/group_0881.py index 35bc54d9d..11e886a2e 100644 --- a/githubkit/versions/v2022_11_28/types/group_0881.py +++ b/githubkit/versions/v2022_11_28/types/group_0881.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/v2022_11_28/types/group_0882.py b/githubkit/versions/v2022_11_28/types/group_0882.py index cf7cd1cd1..7e5067447 100644 --- a/githubkit/versions/v2022_11_28/types/group_0882.py +++ b/githubkit/versions/v2022_11_28/types/group_0882.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0883.py b/githubkit/versions/v2022_11_28/types/group_0883.py index 79f46921c..6cb3bd343 100644 --- a/githubkit/versions/v2022_11_28/types/group_0883.py +++ b/githubkit/versions/v2022_11_28/types/group_0883.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0884.py b/githubkit/versions/v2022_11_28/types/group_0884.py index 884165801..5916d7d10 100644 --- a/githubkit/versions/v2022_11_28/types/group_0884.py +++ b/githubkit/versions/v2022_11_28/types/group_0884.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0885.py b/githubkit/versions/v2022_11_28/types/group_0885.py index 16c7a61b8..53e71b67a 100644 --- a/githubkit/versions/v2022_11_28/types/group_0885.py +++ b/githubkit/versions/v2022_11_28/types/group_0885.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0886.py b/githubkit/versions/v2022_11_28/types/group_0886.py index dced6d3a2..d31b7a6f8 100644 --- a/githubkit/versions/v2022_11_28/types/group_0886.py +++ b/githubkit/versions/v2022_11_28/types/group_0886.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0887.py b/githubkit/versions/v2022_11_28/types/group_0887.py index cee5ba215..8a9c0bc90 100644 --- a/githubkit/versions/v2022_11_28/types/group_0887.py +++ b/githubkit/versions/v2022_11_28/types/group_0887.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0888.py b/githubkit/versions/v2022_11_28/types/group_0888.py index 1f67277db..f222d73fb 100644 --- a/githubkit/versions/v2022_11_28/types/group_0888.py +++ b/githubkit/versions/v2022_11_28/types/group_0888.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0889.py b/githubkit/versions/v2022_11_28/types/group_0889.py index 7b5f2aba3..174eddcfe 100644 --- a/githubkit/versions/v2022_11_28/types/group_0889.py +++ b/githubkit/versions/v2022_11_28/types/group_0889.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0890.py b/githubkit/versions/v2022_11_28/types/group_0890.py index f177c275e..7b35bcb3e 100644 --- a/githubkit/versions/v2022_11_28/types/group_0890.py +++ b/githubkit/versions/v2022_11_28/types/group_0890.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0891.py b/githubkit/versions/v2022_11_28/types/group_0891.py index 78d449430..76bef7987 100644 --- a/githubkit/versions/v2022_11_28/types/group_0891.py +++ b/githubkit/versions/v2022_11_28/types/group_0891.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_0892.py b/githubkit/versions/v2022_11_28/types/group_0892.py index 6f6ef9908..5de4170f2 100644 --- a/githubkit/versions/v2022_11_28/types/group_0892.py +++ b/githubkit/versions/v2022_11_28/types/group_0892.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0893.py b/githubkit/versions/v2022_11_28/types/group_0893.py index 696320087..c6b448fef 100644 --- a/githubkit/versions/v2022_11_28/types/group_0893.py +++ b/githubkit/versions/v2022_11_28/types/group_0893.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_0894.py b/githubkit/versions/v2022_11_28/types/group_0894.py index 70fdbf3e1..606354a4b 100644 --- a/githubkit/versions/v2022_11_28/types/group_0894.py +++ b/githubkit/versions/v2022_11_28/types/group_0894.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0895.py b/githubkit/versions/v2022_11_28/types/group_0895.py index 9e5bb7e69..4fc23e50a 100644 --- a/githubkit/versions/v2022_11_28/types/group_0895.py +++ b/githubkit/versions/v2022_11_28/types/group_0895.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0896.py b/githubkit/versions/v2022_11_28/types/group_0896.py index ecbb7bc2c..23297838b 100644 --- a/githubkit/versions/v2022_11_28/types/group_0896.py +++ b/githubkit/versions/v2022_11_28/types/group_0896.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0897.py b/githubkit/versions/v2022_11_28/types/group_0897.py index ff2f440ae..32c37cd97 100644 --- a/githubkit/versions/v2022_11_28/types/group_0897.py +++ b/githubkit/versions/v2022_11_28/types/group_0897.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0898.py b/githubkit/versions/v2022_11_28/types/group_0898.py index c034ebbf7..afad09a25 100644 --- a/githubkit/versions/v2022_11_28/types/group_0898.py +++ b/githubkit/versions/v2022_11_28/types/group_0898.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_0899.py b/githubkit/versions/v2022_11_28/types/group_0899.py index e3e36c96e..84c5f3600 100644 --- a/githubkit/versions/v2022_11_28/types/group_0899.py +++ b/githubkit/versions/v2022_11_28/types/group_0899.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0900.py b/githubkit/versions/v2022_11_28/types/group_0900.py index d4c68d4d8..cf991e210 100644 --- a/githubkit/versions/v2022_11_28/types/group_0900.py +++ b/githubkit/versions/v2022_11_28/types/group_0900.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0901.py b/githubkit/versions/v2022_11_28/types/group_0901.py index 5d2b53d22..c8927e275 100644 --- a/githubkit/versions/v2022_11_28/types/group_0901.py +++ b/githubkit/versions/v2022_11_28/types/group_0901.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0902.py b/githubkit/versions/v2022_11_28/types/group_0902.py index 67221926f..45d01becb 100644 --- a/githubkit/versions/v2022_11_28/types/group_0902.py +++ b/githubkit/versions/v2022_11_28/types/group_0902.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0903.py b/githubkit/versions/v2022_11_28/types/group_0903.py index dc3997cd3..702b8dbac 100644 --- a/githubkit/versions/v2022_11_28/types/group_0903.py +++ b/githubkit/versions/v2022_11_28/types/group_0903.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0904.py b/githubkit/versions/v2022_11_28/types/group_0904.py index 419f9af6b..e14e38425 100644 --- a/githubkit/versions/v2022_11_28/types/group_0904.py +++ b/githubkit/versions/v2022_11_28/types/group_0904.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0905.py b/githubkit/versions/v2022_11_28/types/group_0905.py index 9d7055873..2bfa5cbd0 100644 --- a/githubkit/versions/v2022_11_28/types/group_0905.py +++ b/githubkit/versions/v2022_11_28/types/group_0905.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0906.py b/githubkit/versions/v2022_11_28/types/group_0906.py index 6b777f694..19f0b0ccd 100644 --- a/githubkit/versions/v2022_11_28/types/group_0906.py +++ b/githubkit/versions/v2022_11_28/types/group_0906.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0907.py b/githubkit/versions/v2022_11_28/types/group_0907.py index 097f7dfcb..81e2f4f67 100644 --- a/githubkit/versions/v2022_11_28/types/group_0907.py +++ b/githubkit/versions/v2022_11_28/types/group_0907.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_0908.py b/githubkit/versions/v2022_11_28/types/group_0908.py index 16c90dda0..555845d86 100644 --- a/githubkit/versions/v2022_11_28/types/group_0908.py +++ b/githubkit/versions/v2022_11_28/types/group_0908.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_0909.py b/githubkit/versions/v2022_11_28/types/group_0909.py index 1cab94140..a05290583 100644 --- a/githubkit/versions/v2022_11_28/types/group_0909.py +++ b/githubkit/versions/v2022_11_28/types/group_0909.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0910.py b/githubkit/versions/v2022_11_28/types/group_0910.py index ce8ca280f..a6b974137 100644 --- a/githubkit/versions/v2022_11_28/types/group_0910.py +++ b/githubkit/versions/v2022_11_28/types/group_0910.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0911.py b/githubkit/versions/v2022_11_28/types/group_0911.py index 0e4dd09e2..937b98f91 100644 --- a/githubkit/versions/v2022_11_28/types/group_0911.py +++ b/githubkit/versions/v2022_11_28/types/group_0911.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0912.py b/githubkit/versions/v2022_11_28/types/group_0912.py index 5d4d35390..c71526f64 100644 --- a/githubkit/versions/v2022_11_28/types/group_0912.py +++ b/githubkit/versions/v2022_11_28/types/group_0912.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0913.py b/githubkit/versions/v2022_11_28/types/group_0913.py index c491612dd..3551630af 100644 --- a/githubkit/versions/v2022_11_28/types/group_0913.py +++ b/githubkit/versions/v2022_11_28/types/group_0913.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0914.py b/githubkit/versions/v2022_11_28/types/group_0914.py index d80ae424e..4e75e8844 100644 --- a/githubkit/versions/v2022_11_28/types/group_0914.py +++ b/githubkit/versions/v2022_11_28/types/group_0914.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0915.py b/githubkit/versions/v2022_11_28/types/group_0915.py index 713c37d04..42d481609 100644 --- a/githubkit/versions/v2022_11_28/types/group_0915.py +++ b/githubkit/versions/v2022_11_28/types/group_0915.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_0916.py b/githubkit/versions/v2022_11_28/types/group_0916.py index 92851f188..0851e1500 100644 --- a/githubkit/versions/v2022_11_28/types/group_0916.py +++ b/githubkit/versions/v2022_11_28/types/group_0916.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_0917.py b/githubkit/versions/v2022_11_28/types/group_0917.py index 9fb26dff4..5ef349fe1 100644 --- a/githubkit/versions/v2022_11_28/types/group_0917.py +++ b/githubkit/versions/v2022_11_28/types/group_0917.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0918.py b/githubkit/versions/v2022_11_28/types/group_0918.py index 3dd4b096c..90b8767cf 100644 --- a/githubkit/versions/v2022_11_28/types/group_0918.py +++ b/githubkit/versions/v2022_11_28/types/group_0918.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0919.py b/githubkit/versions/v2022_11_28/types/group_0919.py index 7b3411c89..201f880aa 100644 --- a/githubkit/versions/v2022_11_28/types/group_0919.py +++ b/githubkit/versions/v2022_11_28/types/group_0919.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0920.py b/githubkit/versions/v2022_11_28/types/group_0920.py index aab72785e..6ae64aa6a 100644 --- a/githubkit/versions/v2022_11_28/types/group_0920.py +++ b/githubkit/versions/v2022_11_28/types/group_0920.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_0921.py b/githubkit/versions/v2022_11_28/types/group_0921.py index ec162004a..7c136f63a 100644 --- a/githubkit/versions/v2022_11_28/types/group_0921.py +++ b/githubkit/versions/v2022_11_28/types/group_0921.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0922.py b/githubkit/versions/v2022_11_28/types/group_0922.py index 8dccc2af0..dd0f1fcf5 100644 --- a/githubkit/versions/v2022_11_28/types/group_0922.py +++ b/githubkit/versions/v2022_11_28/types/group_0922.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0923.py b/githubkit/versions/v2022_11_28/types/group_0923.py index 308b5aec6..b4b6ae8c8 100644 --- a/githubkit/versions/v2022_11_28/types/group_0923.py +++ b/githubkit/versions/v2022_11_28/types/group_0923.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0924.py b/githubkit/versions/v2022_11_28/types/group_0924.py index 257f1c5f4..62ebaaaef 100644 --- a/githubkit/versions/v2022_11_28/types/group_0924.py +++ b/githubkit/versions/v2022_11_28/types/group_0924.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0925.py b/githubkit/versions/v2022_11_28/types/group_0925.py index 8a1184658..1fdc1bf2e 100644 --- a/githubkit/versions/v2022_11_28/types/group_0925.py +++ b/githubkit/versions/v2022_11_28/types/group_0925.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0926.py b/githubkit/versions/v2022_11_28/types/group_0926.py index 7c0d38880..93c271e2e 100644 --- a/githubkit/versions/v2022_11_28/types/group_0926.py +++ b/githubkit/versions/v2022_11_28/types/group_0926.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0927.py b/githubkit/versions/v2022_11_28/types/group_0927.py index 5561f2247..ff00e5f62 100644 --- a/githubkit/versions/v2022_11_28/types/group_0927.py +++ b/githubkit/versions/v2022_11_28/types/group_0927.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0928.py b/githubkit/versions/v2022_11_28/types/group_0928.py index bbef99611..1eee63273 100644 --- a/githubkit/versions/v2022_11_28/types/group_0928.py +++ b/githubkit/versions/v2022_11_28/types/group_0928.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0929.py b/githubkit/versions/v2022_11_28/types/group_0929.py index 8f49796e9..7df563c61 100644 --- a/githubkit/versions/v2022_11_28/types/group_0929.py +++ b/githubkit/versions/v2022_11_28/types/group_0929.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0930.py b/githubkit/versions/v2022_11_28/types/group_0930.py index a32a7a11e..9109dd1f5 100644 --- a/githubkit/versions/v2022_11_28/types/group_0930.py +++ b/githubkit/versions/v2022_11_28/types/group_0930.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0931.py b/githubkit/versions/v2022_11_28/types/group_0931.py index 1470b8065..c0a6113f3 100644 --- a/githubkit/versions/v2022_11_28/types/group_0931.py +++ b/githubkit/versions/v2022_11_28/types/group_0931.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0932.py b/githubkit/versions/v2022_11_28/types/group_0932.py index 704571160..86724eccf 100644 --- a/githubkit/versions/v2022_11_28/types/group_0932.py +++ b/githubkit/versions/v2022_11_28/types/group_0932.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0933.py b/githubkit/versions/v2022_11_28/types/group_0933.py index 84ba5f1f3..42de766b0 100644 --- a/githubkit/versions/v2022_11_28/types/group_0933.py +++ b/githubkit/versions/v2022_11_28/types/group_0933.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0934.py b/githubkit/versions/v2022_11_28/types/group_0934.py index 6f2af9bcc..8c02d8953 100644 --- a/githubkit/versions/v2022_11_28/types/group_0934.py +++ b/githubkit/versions/v2022_11_28/types/group_0934.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0935.py b/githubkit/versions/v2022_11_28/types/group_0935.py index c7a7e149a..f63d55222 100644 --- a/githubkit/versions/v2022_11_28/types/group_0935.py +++ b/githubkit/versions/v2022_11_28/types/group_0935.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_0936.py b/githubkit/versions/v2022_11_28/types/group_0936.py index 49e1ffd1e..6a46995fe 100644 --- a/githubkit/versions/v2022_11_28/types/group_0936.py +++ b/githubkit/versions/v2022_11_28/types/group_0936.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0937.py b/githubkit/versions/v2022_11_28/types/group_0937.py index 3be73d202..a4de5725b 100644 --- a/githubkit/versions/v2022_11_28/types/group_0937.py +++ b/githubkit/versions/v2022_11_28/types/group_0937.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0938.py b/githubkit/versions/v2022_11_28/types/group_0938.py index bf1cba7d4..2956c520b 100644 --- a/githubkit/versions/v2022_11_28/types/group_0938.py +++ b/githubkit/versions/v2022_11_28/types/group_0938.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_0939.py b/githubkit/versions/v2022_11_28/types/group_0939.py index 96fd7cd22..47a8c99be 100644 --- a/githubkit/versions/v2022_11_28/types/group_0939.py +++ b/githubkit/versions/v2022_11_28/types/group_0939.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0940.py b/githubkit/versions/v2022_11_28/types/group_0940.py index 605215822..f41540e06 100644 --- a/githubkit/versions/v2022_11_28/types/group_0940.py +++ b/githubkit/versions/v2022_11_28/types/group_0940.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0941.py b/githubkit/versions/v2022_11_28/types/group_0941.py index 11c1b91c1..ff20a477e 100644 --- a/githubkit/versions/v2022_11_28/types/group_0941.py +++ b/githubkit/versions/v2022_11_28/types/group_0941.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0942.py b/githubkit/versions/v2022_11_28/types/group_0942.py index cc559d5aa..a82dcbc99 100644 --- a/githubkit/versions/v2022_11_28/types/group_0942.py +++ b/githubkit/versions/v2022_11_28/types/group_0942.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0943.py b/githubkit/versions/v2022_11_28/types/group_0943.py index 57d59bae8..1702b9a02 100644 --- a/githubkit/versions/v2022_11_28/types/group_0943.py +++ b/githubkit/versions/v2022_11_28/types/group_0943.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0944.py b/githubkit/versions/v2022_11_28/types/group_0944.py index 2661ec116..97ef4a4a4 100644 --- a/githubkit/versions/v2022_11_28/types/group_0944.py +++ b/githubkit/versions/v2022_11_28/types/group_0944.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0945.py b/githubkit/versions/v2022_11_28/types/group_0945.py index ae9f503f0..cfeabe90a 100644 --- a/githubkit/versions/v2022_11_28/types/group_0945.py +++ b/githubkit/versions/v2022_11_28/types/group_0945.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0946.py b/githubkit/versions/v2022_11_28/types/group_0946.py index fdade5188..1162ab0c2 100644 --- a/githubkit/versions/v2022_11_28/types/group_0946.py +++ b/githubkit/versions/v2022_11_28/types/group_0946.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0947.py b/githubkit/versions/v2022_11_28/types/group_0947.py index 55f7a89de..e3758a2b4 100644 --- a/githubkit/versions/v2022_11_28/types/group_0947.py +++ b/githubkit/versions/v2022_11_28/types/group_0947.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0948.py b/githubkit/versions/v2022_11_28/types/group_0948.py index f7b600b50..30a682bc3 100644 --- a/githubkit/versions/v2022_11_28/types/group_0948.py +++ b/githubkit/versions/v2022_11_28/types/group_0948.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0949.py b/githubkit/versions/v2022_11_28/types/group_0949.py index a2afc7991..9631afd85 100644 --- a/githubkit/versions/v2022_11_28/types/group_0949.py +++ b/githubkit/versions/v2022_11_28/types/group_0949.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0950.py b/githubkit/versions/v2022_11_28/types/group_0950.py index a9725378c..7b88f6284 100644 --- a/githubkit/versions/v2022_11_28/types/group_0950.py +++ b/githubkit/versions/v2022_11_28/types/group_0950.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0951.py b/githubkit/versions/v2022_11_28/types/group_0951.py index 9b8fb6450..88fd8a6dd 100644 --- a/githubkit/versions/v2022_11_28/types/group_0951.py +++ b/githubkit/versions/v2022_11_28/types/group_0951.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0952.py b/githubkit/versions/v2022_11_28/types/group_0952.py index 90f8ca4f1..c33d4529b 100644 --- a/githubkit/versions/v2022_11_28/types/group_0952.py +++ b/githubkit/versions/v2022_11_28/types/group_0952.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_0953.py b/githubkit/versions/v2022_11_28/types/group_0953.py index c62f3b40c..1160daba0 100644 --- a/githubkit/versions/v2022_11_28/types/group_0953.py +++ b/githubkit/versions/v2022_11_28/types/group_0953.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_0954.py b/githubkit/versions/v2022_11_28/types/group_0954.py index ea4695662..a4cbba255 100644 --- a/githubkit/versions/v2022_11_28/types/group_0954.py +++ b/githubkit/versions/v2022_11_28/types/group_0954.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0955.py b/githubkit/versions/v2022_11_28/types/group_0955.py index 83497b42f..c1ad71389 100644 --- a/githubkit/versions/v2022_11_28/types/group_0955.py +++ b/githubkit/versions/v2022_11_28/types/group_0955.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_0956.py b/githubkit/versions/v2022_11_28/types/group_0956.py index d10136e03..337da1e1c 100644 --- a/githubkit/versions/v2022_11_28/types/group_0956.py +++ b/githubkit/versions/v2022_11_28/types/group_0956.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0957.py b/githubkit/versions/v2022_11_28/types/group_0957.py index bf792537b..a5b1bcda1 100644 --- a/githubkit/versions/v2022_11_28/types/group_0957.py +++ b/githubkit/versions/v2022_11_28/types/group_0957.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0958.py b/githubkit/versions/v2022_11_28/types/group_0958.py index cc51a021f..ad7d7d522 100644 --- a/githubkit/versions/v2022_11_28/types/group_0958.py +++ b/githubkit/versions/v2022_11_28/types/group_0958.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_0959.py b/githubkit/versions/v2022_11_28/types/group_0959.py index 7e664c1da..20e7c3509 100644 --- a/githubkit/versions/v2022_11_28/types/group_0959.py +++ b/githubkit/versions/v2022_11_28/types/group_0959.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0960.py b/githubkit/versions/v2022_11_28/types/group_0960.py index b51635d01..08a15748d 100644 --- a/githubkit/versions/v2022_11_28/types/group_0960.py +++ b/githubkit/versions/v2022_11_28/types/group_0960.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_0961.py b/githubkit/versions/v2022_11_28/types/group_0961.py index de23bfee3..c5cd2c674 100644 --- a/githubkit/versions/v2022_11_28/types/group_0961.py +++ b/githubkit/versions/v2022_11_28/types/group_0961.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0962.py b/githubkit/versions/v2022_11_28/types/group_0962.py index 6f654a714..a77eacf3e 100644 --- a/githubkit/versions/v2022_11_28/types/group_0962.py +++ b/githubkit/versions/v2022_11_28/types/group_0962.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_0963.py b/githubkit/versions/v2022_11_28/types/group_0963.py index b28da6a2b..5daf56489 100644 --- a/githubkit/versions/v2022_11_28/types/group_0963.py +++ b/githubkit/versions/v2022_11_28/types/group_0963.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/v2022_11_28/types/group_0964.py b/githubkit/versions/v2022_11_28/types/group_0964.py index d341d170d..d51a66b7c 100644 --- a/githubkit/versions/v2022_11_28/types/group_0964.py +++ b/githubkit/versions/v2022_11_28/types/group_0964.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0965.py b/githubkit/versions/v2022_11_28/types/group_0965.py index bafee8058..39cfa7c56 100644 --- a/githubkit/versions/v2022_11_28/types/group_0965.py +++ b/githubkit/versions/v2022_11_28/types/group_0965.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0966.py b/githubkit/versions/v2022_11_28/types/group_0966.py index 22547de71..f36c7fdb0 100644 --- a/githubkit/versions/v2022_11_28/types/group_0966.py +++ b/githubkit/versions/v2022_11_28/types/group_0966.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0967.py b/githubkit/versions/v2022_11_28/types/group_0967.py index 2670c88c3..b350535de 100644 --- a/githubkit/versions/v2022_11_28/types/group_0967.py +++ b/githubkit/versions/v2022_11_28/types/group_0967.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0968.py b/githubkit/versions/v2022_11_28/types/group_0968.py index a4f390cd8..2d802b1fa 100644 --- a/githubkit/versions/v2022_11_28/types/group_0968.py +++ b/githubkit/versions/v2022_11_28/types/group_0968.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0969.py b/githubkit/versions/v2022_11_28/types/group_0969.py index 871222bd1..ad870a329 100644 --- a/githubkit/versions/v2022_11_28/types/group_0969.py +++ b/githubkit/versions/v2022_11_28/types/group_0969.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0970.py b/githubkit/versions/v2022_11_28/types/group_0970.py index 816954158..633ffe55f 100644 --- a/githubkit/versions/v2022_11_28/types/group_0970.py +++ b/githubkit/versions/v2022_11_28/types/group_0970.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0971.py b/githubkit/versions/v2022_11_28/types/group_0971.py index 00898f425..0e54dbe56 100644 --- a/githubkit/versions/v2022_11_28/types/group_0971.py +++ b/githubkit/versions/v2022_11_28/types/group_0971.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0972.py b/githubkit/versions/v2022_11_28/types/group_0972.py index c43eae168..c8d87b3e2 100644 --- a/githubkit/versions/v2022_11_28/types/group_0972.py +++ b/githubkit/versions/v2022_11_28/types/group_0972.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0973.py b/githubkit/versions/v2022_11_28/types/group_0973.py index e05b82156..8ec4d5ff7 100644 --- a/githubkit/versions/v2022_11_28/types/group_0973.py +++ b/githubkit/versions/v2022_11_28/types/group_0973.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0974.py b/githubkit/versions/v2022_11_28/types/group_0974.py index c86799ecf..4c0d1741f 100644 --- a/githubkit/versions/v2022_11_28/types/group_0974.py +++ b/githubkit/versions/v2022_11_28/types/group_0974.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0975.py b/githubkit/versions/v2022_11_28/types/group_0975.py index 30e292d2e..d1f4b8ce2 100644 --- a/githubkit/versions/v2022_11_28/types/group_0975.py +++ b/githubkit/versions/v2022_11_28/types/group_0975.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0976.py b/githubkit/versions/v2022_11_28/types/group_0976.py index 1640137ff..26651df87 100644 --- a/githubkit/versions/v2022_11_28/types/group_0976.py +++ b/githubkit/versions/v2022_11_28/types/group_0976.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0977.py b/githubkit/versions/v2022_11_28/types/group_0977.py index ebeb7c22e..20edcde18 100644 --- a/githubkit/versions/v2022_11_28/types/group_0977.py +++ b/githubkit/versions/v2022_11_28/types/group_0977.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0978.py b/githubkit/versions/v2022_11_28/types/group_0978.py index a68df4c91..b46802659 100644 --- a/githubkit/versions/v2022_11_28/types/group_0978.py +++ b/githubkit/versions/v2022_11_28/types/group_0978.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0979.py b/githubkit/versions/v2022_11_28/types/group_0979.py index 0d7fcbfa6..78164b5f0 100644 --- a/githubkit/versions/v2022_11_28/types/group_0979.py +++ b/githubkit/versions/v2022_11_28/types/group_0979.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0980.py b/githubkit/versions/v2022_11_28/types/group_0980.py index a428eae49..6c7c09487 100644 --- a/githubkit/versions/v2022_11_28/types/group_0980.py +++ b/githubkit/versions/v2022_11_28/types/group_0980.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0981.py b/githubkit/versions/v2022_11_28/types/group_0981.py index a7a144762..7dcffc744 100644 --- a/githubkit/versions/v2022_11_28/types/group_0981.py +++ b/githubkit/versions/v2022_11_28/types/group_0981.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0982.py b/githubkit/versions/v2022_11_28/types/group_0982.py index 0d1464cde..f4f9ec07a 100644 --- a/githubkit/versions/v2022_11_28/types/group_0982.py +++ b/githubkit/versions/v2022_11_28/types/group_0982.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0983.py b/githubkit/versions/v2022_11_28/types/group_0983.py index c60b58bda..48241e69d 100644 --- a/githubkit/versions/v2022_11_28/types/group_0983.py +++ b/githubkit/versions/v2022_11_28/types/group_0983.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0984.py b/githubkit/versions/v2022_11_28/types/group_0984.py index 114484f1b..276d9dd61 100644 --- a/githubkit/versions/v2022_11_28/types/group_0984.py +++ b/githubkit/versions/v2022_11_28/types/group_0984.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0985.py b/githubkit/versions/v2022_11_28/types/group_0985.py index 287ec5525..5d8ac49c1 100644 --- a/githubkit/versions/v2022_11_28/types/group_0985.py +++ b/githubkit/versions/v2022_11_28/types/group_0985.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0986.py b/githubkit/versions/v2022_11_28/types/group_0986.py index 8acb9323d..ef98987e3 100644 --- a/githubkit/versions/v2022_11_28/types/group_0986.py +++ b/githubkit/versions/v2022_11_28/types/group_0986.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0987.py b/githubkit/versions/v2022_11_28/types/group_0987.py index d03884fb2..668c2e3e2 100644 --- a/githubkit/versions/v2022_11_28/types/group_0987.py +++ b/githubkit/versions/v2022_11_28/types/group_0987.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0988.py b/githubkit/versions/v2022_11_28/types/group_0988.py index abe858343..aa6436005 100644 --- a/githubkit/versions/v2022_11_28/types/group_0988.py +++ b/githubkit/versions/v2022_11_28/types/group_0988.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0989.py b/githubkit/versions/v2022_11_28/types/group_0989.py index 650041259..5cd0c722e 100644 --- a/githubkit/versions/v2022_11_28/types/group_0989.py +++ b/githubkit/versions/v2022_11_28/types/group_0989.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_0990.py b/githubkit/versions/v2022_11_28/types/group_0990.py index 124c77c89..7d7e39549 100644 --- a/githubkit/versions/v2022_11_28/types/group_0990.py +++ b/githubkit/versions/v2022_11_28/types/group_0990.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0991.py b/githubkit/versions/v2022_11_28/types/group_0991.py index 5acc6a507..ded7468cd 100644 --- a/githubkit/versions/v2022_11_28/types/group_0991.py +++ b/githubkit/versions/v2022_11_28/types/group_0991.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_0992.py b/githubkit/versions/v2022_11_28/types/group_0992.py index 8a2ace4eb..aae507935 100644 --- a/githubkit/versions/v2022_11_28/types/group_0992.py +++ b/githubkit/versions/v2022_11_28/types/group_0992.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0993.py b/githubkit/versions/v2022_11_28/types/group_0993.py index e0c555ff6..5f6987c2e 100644 --- a/githubkit/versions/v2022_11_28/types/group_0993.py +++ b/githubkit/versions/v2022_11_28/types/group_0993.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0994.py b/githubkit/versions/v2022_11_28/types/group_0994.py index 6c3a27959..a33cbd9bf 100644 --- a/githubkit/versions/v2022_11_28/types/group_0994.py +++ b/githubkit/versions/v2022_11_28/types/group_0994.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_0995.py b/githubkit/versions/v2022_11_28/types/group_0995.py index 58b81a8b5..4c82ea53d 100644 --- a/githubkit/versions/v2022_11_28/types/group_0995.py +++ b/githubkit/versions/v2022_11_28/types/group_0995.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_0996.py b/githubkit/versions/v2022_11_28/types/group_0996.py index 819ece5c0..127388d30 100644 --- a/githubkit/versions/v2022_11_28/types/group_0996.py +++ b/githubkit/versions/v2022_11_28/types/group_0996.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_0997.py b/githubkit/versions/v2022_11_28/types/group_0997.py index b9a939c07..3048a3c3a 100644 --- a/githubkit/versions/v2022_11_28/types/group_0997.py +++ b/githubkit/versions/v2022_11_28/types/group_0997.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_0998.py b/githubkit/versions/v2022_11_28/types/group_0998.py index 068a0537e..25f26d78b 100644 --- a/githubkit/versions/v2022_11_28/types/group_0998.py +++ b/githubkit/versions/v2022_11_28/types/group_0998.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_0999.py b/githubkit/versions/v2022_11_28/types/group_0999.py index 0ef8dcc37..ce91eec32 100644 --- a/githubkit/versions/v2022_11_28/types/group_0999.py +++ b/githubkit/versions/v2022_11_28/types/group_0999.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_1000.py b/githubkit/versions/v2022_11_28/types/group_1000.py index da7c88e84..64def9673 100644 --- a/githubkit/versions/v2022_11_28/types/group_1000.py +++ b/githubkit/versions/v2022_11_28/types/group_1000.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_1001.py b/githubkit/versions/v2022_11_28/types/group_1001.py index 324fbc728..2d2cccfc4 100644 --- a/githubkit/versions/v2022_11_28/types/group_1001.py +++ b/githubkit/versions/v2022_11_28/types/group_1001.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_1002.py b/githubkit/versions/v2022_11_28/types/group_1002.py index 7a0cfc0cb..2242ad973 100644 --- a/githubkit/versions/v2022_11_28/types/group_1002.py +++ b/githubkit/versions/v2022_11_28/types/group_1002.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_1003.py b/githubkit/versions/v2022_11_28/types/group_1003.py index 45d3357fe..952a58aa5 100644 --- a/githubkit/versions/v2022_11_28/types/group_1003.py +++ b/githubkit/versions/v2022_11_28/types/group_1003.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_1004.py b/githubkit/versions/v2022_11_28/types/group_1004.py index 69392919c..e6000744d 100644 --- a/githubkit/versions/v2022_11_28/types/group_1004.py +++ b/githubkit/versions/v2022_11_28/types/group_1004.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_1005.py b/githubkit/versions/v2022_11_28/types/group_1005.py index 74c7369f7..b01790e23 100644 --- a/githubkit/versions/v2022_11_28/types/group_1005.py +++ b/githubkit/versions/v2022_11_28/types/group_1005.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_1006.py b/githubkit/versions/v2022_11_28/types/group_1006.py index c0360a9e5..b77f06192 100644 --- a/githubkit/versions/v2022_11_28/types/group_1006.py +++ b/githubkit/versions/v2022_11_28/types/group_1006.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_1007.py b/githubkit/versions/v2022_11_28/types/group_1007.py index 133a1ff5d..6e9243ec2 100644 --- a/githubkit/versions/v2022_11_28/types/group_1007.py +++ b/githubkit/versions/v2022_11_28/types/group_1007.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_1008.py b/githubkit/versions/v2022_11_28/types/group_1008.py index 862d708ee..614766fa1 100644 --- a/githubkit/versions/v2022_11_28/types/group_1008.py +++ b/githubkit/versions/v2022_11_28/types/group_1008.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/v2022_11_28/types/group_1009.py b/githubkit/versions/v2022_11_28/types/group_1009.py index 5f52ed22b..31c81fc99 100644 --- a/githubkit/versions/v2022_11_28/types/group_1009.py +++ b/githubkit/versions/v2022_11_28/types/group_1009.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_1010.py b/githubkit/versions/v2022_11_28/types/group_1010.py index 58ad91dcc..bf2c3b692 100644 --- a/githubkit/versions/v2022_11_28/types/group_1010.py +++ b/githubkit/versions/v2022_11_28/types/group_1010.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_1011.py b/githubkit/versions/v2022_11_28/types/group_1011.py index 12d95cb76..28590d115 100644 --- a/githubkit/versions/v2022_11_28/types/group_1011.py +++ b/githubkit/versions/v2022_11_28/types/group_1011.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_1012.py b/githubkit/versions/v2022_11_28/types/group_1012.py index ca89933e9..1cdde915e 100644 --- a/githubkit/versions/v2022_11_28/types/group_1012.py +++ b/githubkit/versions/v2022_11_28/types/group_1012.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_1013.py b/githubkit/versions/v2022_11_28/types/group_1013.py index 85bc95fac..b65e8765b 100644 --- a/githubkit/versions/v2022_11_28/types/group_1013.py +++ b/githubkit/versions/v2022_11_28/types/group_1013.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_1014.py b/githubkit/versions/v2022_11_28/types/group_1014.py index 1681b6117..aa86463eb 100644 --- a/githubkit/versions/v2022_11_28/types/group_1014.py +++ b/githubkit/versions/v2022_11_28/types/group_1014.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_1015.py b/githubkit/versions/v2022_11_28/types/group_1015.py index f00011c17..76d949cdd 100644 --- a/githubkit/versions/v2022_11_28/types/group_1015.py +++ b/githubkit/versions/v2022_11_28/types/group_1015.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_1016.py b/githubkit/versions/v2022_11_28/types/group_1016.py index 371ce85ae..eff2e9a1d 100644 --- a/githubkit/versions/v2022_11_28/types/group_1016.py +++ b/githubkit/versions/v2022_11_28/types/group_1016.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_1017.py b/githubkit/versions/v2022_11_28/types/group_1017.py index 9e59147f1..3ec440fb1 100644 --- a/githubkit/versions/v2022_11_28/types/group_1017.py +++ b/githubkit/versions/v2022_11_28/types/group_1017.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_1018.py b/githubkit/versions/v2022_11_28/types/group_1018.py index 5261f5f3c..149646ec8 100644 --- a/githubkit/versions/v2022_11_28/types/group_1018.py +++ b/githubkit/versions/v2022_11_28/types/group_1018.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_1019.py b/githubkit/versions/v2022_11_28/types/group_1019.py index 3587bd05a..f3a29926f 100644 --- a/githubkit/versions/v2022_11_28/types/group_1019.py +++ b/githubkit/versions/v2022_11_28/types/group_1019.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_1020.py b/githubkit/versions/v2022_11_28/types/group_1020.py index 6288a8b33..c1fff1a36 100644 --- a/githubkit/versions/v2022_11_28/types/group_1020.py +++ b/githubkit/versions/v2022_11_28/types/group_1020.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_1021.py b/githubkit/versions/v2022_11_28/types/group_1021.py index dc218d370..8bba2acbd 100644 --- a/githubkit/versions/v2022_11_28/types/group_1021.py +++ b/githubkit/versions/v2022_11_28/types/group_1021.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_1022.py b/githubkit/versions/v2022_11_28/types/group_1022.py index 904b00e2f..dcd2ec0cb 100644 --- a/githubkit/versions/v2022_11_28/types/group_1022.py +++ b/githubkit/versions/v2022_11_28/types/group_1022.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_1023.py b/githubkit/versions/v2022_11_28/types/group_1023.py index fd22b529e..166b3b1b7 100644 --- a/githubkit/versions/v2022_11_28/types/group_1023.py +++ b/githubkit/versions/v2022_11_28/types/group_1023.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_1024.py b/githubkit/versions/v2022_11_28/types/group_1024.py index 48dcdb55b..aa4d83aff 100644 --- a/githubkit/versions/v2022_11_28/types/group_1024.py +++ b/githubkit/versions/v2022_11_28/types/group_1024.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_1025.py b/githubkit/versions/v2022_11_28/types/group_1025.py index d475e3e0b..c7aa1330c 100644 --- a/githubkit/versions/v2022_11_28/types/group_1025.py +++ b/githubkit/versions/v2022_11_28/types/group_1025.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_1026.py b/githubkit/versions/v2022_11_28/types/group_1026.py index 8b693e857..fe54aa32e 100644 --- a/githubkit/versions/v2022_11_28/types/group_1026.py +++ b/githubkit/versions/v2022_11_28/types/group_1026.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_1027.py b/githubkit/versions/v2022_11_28/types/group_1027.py index 6b0bfc1ff..a8fe4c648 100644 --- a/githubkit/versions/v2022_11_28/types/group_1027.py +++ b/githubkit/versions/v2022_11_28/types/group_1027.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_1028.py b/githubkit/versions/v2022_11_28/types/group_1028.py index 18d04b2f9..3f4bc96d4 100644 --- a/githubkit/versions/v2022_11_28/types/group_1028.py +++ b/githubkit/versions/v2022_11_28/types/group_1028.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/v2022_11_28/types/group_1029.py b/githubkit/versions/v2022_11_28/types/group_1029.py index cfdb170e0..a7b95ac0e 100644 --- a/githubkit/versions/v2022_11_28/types/group_1029.py +++ b/githubkit/versions/v2022_11_28/types/group_1029.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_1030.py b/githubkit/versions/v2022_11_28/types/group_1030.py index 108641b17..8c044b8a1 100644 --- a/githubkit/versions/v2022_11_28/types/group_1030.py +++ b/githubkit/versions/v2022_11_28/types/group_1030.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_1031.py b/githubkit/versions/v2022_11_28/types/group_1031.py index 9ce129566..40367efa2 100644 --- a/githubkit/versions/v2022_11_28/types/group_1031.py +++ b/githubkit/versions/v2022_11_28/types/group_1031.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_1032.py b/githubkit/versions/v2022_11_28/types/group_1032.py index 1df0dc5de..ea3f1020c 100644 --- a/githubkit/versions/v2022_11_28/types/group_1032.py +++ b/githubkit/versions/v2022_11_28/types/group_1032.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_1033.py b/githubkit/versions/v2022_11_28/types/group_1033.py index 711be0b0d..f3821d41d 100644 --- a/githubkit/versions/v2022_11_28/types/group_1033.py +++ b/githubkit/versions/v2022_11_28/types/group_1033.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_1034.py b/githubkit/versions/v2022_11_28/types/group_1034.py index 152ce6738..f8207f6ea 100644 --- a/githubkit/versions/v2022_11_28/types/group_1034.py +++ b/githubkit/versions/v2022_11_28/types/group_1034.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_1035.py b/githubkit/versions/v2022_11_28/types/group_1035.py index 2cfc09e6d..ca60a7364 100644 --- a/githubkit/versions/v2022_11_28/types/group_1035.py +++ b/githubkit/versions/v2022_11_28/types/group_1035.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_1036.py b/githubkit/versions/v2022_11_28/types/group_1036.py index 1dc0ba2a1..de920e175 100644 --- a/githubkit/versions/v2022_11_28/types/group_1036.py +++ b/githubkit/versions/v2022_11_28/types/group_1036.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_1037.py b/githubkit/versions/v2022_11_28/types/group_1037.py index 50e4c4bb6..5fcbc4ed3 100644 --- a/githubkit/versions/v2022_11_28/types/group_1037.py +++ b/githubkit/versions/v2022_11_28/types/group_1037.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/v2022_11_28/types/group_1038.py b/githubkit/versions/v2022_11_28/types/group_1038.py index 1c8956203..4b0c546c3 100644 --- a/githubkit/versions/v2022_11_28/types/group_1038.py +++ b/githubkit/versions/v2022_11_28/types/group_1038.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_1039.py b/githubkit/versions/v2022_11_28/types/group_1039.py index be84721fd..77f77960c 100644 --- a/githubkit/versions/v2022_11_28/types/group_1039.py +++ b/githubkit/versions/v2022_11_28/types/group_1039.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_1040.py b/githubkit/versions/v2022_11_28/types/group_1040.py index 4d1511245..38ef471b7 100644 --- a/githubkit/versions/v2022_11_28/types/group_1040.py +++ b/githubkit/versions/v2022_11_28/types/group_1040.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_1041.py b/githubkit/versions/v2022_11_28/types/group_1041.py index fbb2884f2..e318c7fed 100644 --- a/githubkit/versions/v2022_11_28/types/group_1041.py +++ b/githubkit/versions/v2022_11_28/types/group_1041.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_1042.py b/githubkit/versions/v2022_11_28/types/group_1042.py index 415609efa..ef1108543 100644 --- a/githubkit/versions/v2022_11_28/types/group_1042.py +++ b/githubkit/versions/v2022_11_28/types/group_1042.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_1043.py b/githubkit/versions/v2022_11_28/types/group_1043.py index 23d83158c..2585a1e0c 100644 --- a/githubkit/versions/v2022_11_28/types/group_1043.py +++ b/githubkit/versions/v2022_11_28/types/group_1043.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_1044.py b/githubkit/versions/v2022_11_28/types/group_1044.py index c1093ec22..79fa1e54c 100644 --- a/githubkit/versions/v2022_11_28/types/group_1044.py +++ b/githubkit/versions/v2022_11_28/types/group_1044.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_1045.py b/githubkit/versions/v2022_11_28/types/group_1045.py index cae2513ac..793244215 100644 --- a/githubkit/versions/v2022_11_28/types/group_1045.py +++ b/githubkit/versions/v2022_11_28/types/group_1045.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_1046.py b/githubkit/versions/v2022_11_28/types/group_1046.py index c627444fd..4b61c7722 100644 --- a/githubkit/versions/v2022_11_28/types/group_1046.py +++ b/githubkit/versions/v2022_11_28/types/group_1046.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_1047.py b/githubkit/versions/v2022_11_28/types/group_1047.py index b7cd67fa2..36bd0305e 100644 --- a/githubkit/versions/v2022_11_28/types/group_1047.py +++ b/githubkit/versions/v2022_11_28/types/group_1047.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_1048.py b/githubkit/versions/v2022_11_28/types/group_1048.py index 64e92660f..6e7f8a784 100644 --- a/githubkit/versions/v2022_11_28/types/group_1048.py +++ b/githubkit/versions/v2022_11_28/types/group_1048.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_1049.py b/githubkit/versions/v2022_11_28/types/group_1049.py index d8edb96e3..6872247a2 100644 --- a/githubkit/versions/v2022_11_28/types/group_1049.py +++ b/githubkit/versions/v2022_11_28/types/group_1049.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_1050.py b/githubkit/versions/v2022_11_28/types/group_1050.py index b294cc291..a190e2d44 100644 --- a/githubkit/versions/v2022_11_28/types/group_1050.py +++ b/githubkit/versions/v2022_11_28/types/group_1050.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_1051.py b/githubkit/versions/v2022_11_28/types/group_1051.py index 57dbbe3da..5d8ff2645 100644 --- a/githubkit/versions/v2022_11_28/types/group_1051.py +++ b/githubkit/versions/v2022_11_28/types/group_1051.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_1052.py b/githubkit/versions/v2022_11_28/types/group_1052.py index fe8169fa6..fa5cbfe49 100644 --- a/githubkit/versions/v2022_11_28/types/group_1052.py +++ b/githubkit/versions/v2022_11_28/types/group_1052.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_1053.py b/githubkit/versions/v2022_11_28/types/group_1053.py index dd73b1c02..2ae5bd4d6 100644 --- a/githubkit/versions/v2022_11_28/types/group_1053.py +++ b/githubkit/versions/v2022_11_28/types/group_1053.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_1054.py b/githubkit/versions/v2022_11_28/types/group_1054.py index 555e9ff27..fe512af8d 100644 --- a/githubkit/versions/v2022_11_28/types/group_1054.py +++ b/githubkit/versions/v2022_11_28/types/group_1054.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_1055.py b/githubkit/versions/v2022_11_28/types/group_1055.py index 690160417..ac724c353 100644 --- a/githubkit/versions/v2022_11_28/types/group_1055.py +++ b/githubkit/versions/v2022_11_28/types/group_1055.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_1056.py b/githubkit/versions/v2022_11_28/types/group_1056.py index d0cf2cee2..68b37cb55 100644 --- a/githubkit/versions/v2022_11_28/types/group_1056.py +++ b/githubkit/versions/v2022_11_28/types/group_1056.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_1057.py b/githubkit/versions/v2022_11_28/types/group_1057.py index d35437178..7dd5af8e7 100644 --- a/githubkit/versions/v2022_11_28/types/group_1057.py +++ b/githubkit/versions/v2022_11_28/types/group_1057.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_1058.py b/githubkit/versions/v2022_11_28/types/group_1058.py index 6b2f601b9..d926c03f7 100644 --- a/githubkit/versions/v2022_11_28/types/group_1058.py +++ b/githubkit/versions/v2022_11_28/types/group_1058.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_1059.py b/githubkit/versions/v2022_11_28/types/group_1059.py index f4843d139..7c0be85f3 100644 --- a/githubkit/versions/v2022_11_28/types/group_1059.py +++ b/githubkit/versions/v2022_11_28/types/group_1059.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_1060.py b/githubkit/versions/v2022_11_28/types/group_1060.py index c36267a8e..153effb7c 100644 --- a/githubkit/versions/v2022_11_28/types/group_1060.py +++ b/githubkit/versions/v2022_11_28/types/group_1060.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_1061.py b/githubkit/versions/v2022_11_28/types/group_1061.py index 5d505e5fa..cd3deab02 100644 --- a/githubkit/versions/v2022_11_28/types/group_1061.py +++ b/githubkit/versions/v2022_11_28/types/group_1061.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_1062.py b/githubkit/versions/v2022_11_28/types/group_1062.py index f297dc0b3..d2fc45756 100644 --- a/githubkit/versions/v2022_11_28/types/group_1062.py +++ b/githubkit/versions/v2022_11_28/types/group_1062.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_1063.py b/githubkit/versions/v2022_11_28/types/group_1063.py index 2076dcf65..930abffa2 100644 --- a/githubkit/versions/v2022_11_28/types/group_1063.py +++ b/githubkit/versions/v2022_11_28/types/group_1063.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_1064.py b/githubkit/versions/v2022_11_28/types/group_1064.py index e67668c8b..9867544f5 100644 --- a/githubkit/versions/v2022_11_28/types/group_1064.py +++ b/githubkit/versions/v2022_11_28/types/group_1064.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_1065.py b/githubkit/versions/v2022_11_28/types/group_1065.py index bf3e01dc1..e04ebf6aa 100644 --- a/githubkit/versions/v2022_11_28/types/group_1065.py +++ b/githubkit/versions/v2022_11_28/types/group_1065.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_1066.py b/githubkit/versions/v2022_11_28/types/group_1066.py index 87a3e054b..0a6666825 100644 --- a/githubkit/versions/v2022_11_28/types/group_1066.py +++ b/githubkit/versions/v2022_11_28/types/group_1066.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_1067.py b/githubkit/versions/v2022_11_28/types/group_1067.py index 556fbfc11..76dfbb4a7 100644 --- a/githubkit/versions/v2022_11_28/types/group_1067.py +++ b/githubkit/versions/v2022_11_28/types/group_1067.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_1068.py b/githubkit/versions/v2022_11_28/types/group_1068.py index f27fdfbd7..00b9d91cf 100644 --- a/githubkit/versions/v2022_11_28/types/group_1068.py +++ b/githubkit/versions/v2022_11_28/types/group_1068.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_1069.py b/githubkit/versions/v2022_11_28/types/group_1069.py index b6c704161..2083b1a63 100644 --- a/githubkit/versions/v2022_11_28/types/group_1069.py +++ b/githubkit/versions/v2022_11_28/types/group_1069.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_1070.py b/githubkit/versions/v2022_11_28/types/group_1070.py index 2349fbebf..93491698d 100644 --- a/githubkit/versions/v2022_11_28/types/group_1070.py +++ b/githubkit/versions/v2022_11_28/types/group_1070.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_1071.py b/githubkit/versions/v2022_11_28/types/group_1071.py index e29e00872..c22c267f3 100644 --- a/githubkit/versions/v2022_11_28/types/group_1071.py +++ b/githubkit/versions/v2022_11_28/types/group_1071.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_1072.py b/githubkit/versions/v2022_11_28/types/group_1072.py index c9e36fc3a..36b3e70e4 100644 --- a/githubkit/versions/v2022_11_28/types/group_1072.py +++ b/githubkit/versions/v2022_11_28/types/group_1072.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_1073.py b/githubkit/versions/v2022_11_28/types/group_1073.py index a431b22be..30e0c598b 100644 --- a/githubkit/versions/v2022_11_28/types/group_1073.py +++ b/githubkit/versions/v2022_11_28/types/group_1073.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_1074.py b/githubkit/versions/v2022_11_28/types/group_1074.py index 1cd13adcb..e4301f5c1 100644 --- a/githubkit/versions/v2022_11_28/types/group_1074.py +++ b/githubkit/versions/v2022_11_28/types/group_1074.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_1075.py b/githubkit/versions/v2022_11_28/types/group_1075.py index 3818d84ff..160987b13 100644 --- a/githubkit/versions/v2022_11_28/types/group_1075.py +++ b/githubkit/versions/v2022_11_28/types/group_1075.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_1076.py b/githubkit/versions/v2022_11_28/types/group_1076.py index c917f0c09..4dc9e5008 100644 --- a/githubkit/versions/v2022_11_28/types/group_1076.py +++ b/githubkit/versions/v2022_11_28/types/group_1076.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_1077.py b/githubkit/versions/v2022_11_28/types/group_1077.py index 30dea6fdb..a7f3437b1 100644 --- a/githubkit/versions/v2022_11_28/types/group_1077.py +++ b/githubkit/versions/v2022_11_28/types/group_1077.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_1078.py b/githubkit/versions/v2022_11_28/types/group_1078.py index 6e76a9eeb..2bc8bc97e 100644 --- a/githubkit/versions/v2022_11_28/types/group_1078.py +++ b/githubkit/versions/v2022_11_28/types/group_1078.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_1079.py b/githubkit/versions/v2022_11_28/types/group_1079.py index e3710d65f..3a373298b 100644 --- a/githubkit/versions/v2022_11_28/types/group_1079.py +++ b/githubkit/versions/v2022_11_28/types/group_1079.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_1080.py b/githubkit/versions/v2022_11_28/types/group_1080.py index 8f3238433..fdc9c5a0e 100644 --- a/githubkit/versions/v2022_11_28/types/group_1080.py +++ b/githubkit/versions/v2022_11_28/types/group_1080.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_1081.py b/githubkit/versions/v2022_11_28/types/group_1081.py index 477a5dec0..f027d8849 100644 --- a/githubkit/versions/v2022_11_28/types/group_1081.py +++ b/githubkit/versions/v2022_11_28/types/group_1081.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_1082.py b/githubkit/versions/v2022_11_28/types/group_1082.py index 92a258259..430b6639e 100644 --- a/githubkit/versions/v2022_11_28/types/group_1082.py +++ b/githubkit/versions/v2022_11_28/types/group_1082.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_1083.py b/githubkit/versions/v2022_11_28/types/group_1083.py index 7e1831086..12d07d173 100644 --- a/githubkit/versions/v2022_11_28/types/group_1083.py +++ b/githubkit/versions/v2022_11_28/types/group_1083.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_1084.py b/githubkit/versions/v2022_11_28/types/group_1084.py index 57f2d7b78..a84cf2d89 100644 --- a/githubkit/versions/v2022_11_28/types/group_1084.py +++ b/githubkit/versions/v2022_11_28/types/group_1084.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_1085.py b/githubkit/versions/v2022_11_28/types/group_1085.py index 2527b7e9a..1d45bd83c 100644 --- a/githubkit/versions/v2022_11_28/types/group_1085.py +++ b/githubkit/versions/v2022_11_28/types/group_1085.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_1086.py b/githubkit/versions/v2022_11_28/types/group_1086.py index fe6b8ffce..020f5596d 100644 --- a/githubkit/versions/v2022_11_28/types/group_1086.py +++ b/githubkit/versions/v2022_11_28/types/group_1086.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_1087.py b/githubkit/versions/v2022_11_28/types/group_1087.py index dedcae57e..1046c3f1e 100644 --- a/githubkit/versions/v2022_11_28/types/group_1087.py +++ b/githubkit/versions/v2022_11_28/types/group_1087.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_1088.py b/githubkit/versions/v2022_11_28/types/group_1088.py index dba3f9887..05cccf0c0 100644 --- a/githubkit/versions/v2022_11_28/types/group_1088.py +++ b/githubkit/versions/v2022_11_28/types/group_1088.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_1089.py b/githubkit/versions/v2022_11_28/types/group_1089.py index 5fb29f806..6b49304a1 100644 --- a/githubkit/versions/v2022_11_28/types/group_1089.py +++ b/githubkit/versions/v2022_11_28/types/group_1089.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_1090.py b/githubkit/versions/v2022_11_28/types/group_1090.py index c31bec6c5..db429f41c 100644 --- a/githubkit/versions/v2022_11_28/types/group_1090.py +++ b/githubkit/versions/v2022_11_28/types/group_1090.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_1091.py b/githubkit/versions/v2022_11_28/types/group_1091.py index 87560833c..20f8615d9 100644 --- a/githubkit/versions/v2022_11_28/types/group_1091.py +++ b/githubkit/versions/v2022_11_28/types/group_1091.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_1092.py b/githubkit/versions/v2022_11_28/types/group_1092.py index 145bf3fad..6be5b5e11 100644 --- a/githubkit/versions/v2022_11_28/types/group_1092.py +++ b/githubkit/versions/v2022_11_28/types/group_1092.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_1093.py b/githubkit/versions/v2022_11_28/types/group_1093.py index 654284edb..ad449b3dd 100644 --- a/githubkit/versions/v2022_11_28/types/group_1093.py +++ b/githubkit/versions/v2022_11_28/types/group_1093.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_1094.py b/githubkit/versions/v2022_11_28/types/group_1094.py index af92b1480..14ed366af 100644 --- a/githubkit/versions/v2022_11_28/types/group_1094.py +++ b/githubkit/versions/v2022_11_28/types/group_1094.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_1095.py b/githubkit/versions/v2022_11_28/types/group_1095.py index f43fe162b..951aca8ca 100644 --- a/githubkit/versions/v2022_11_28/types/group_1095.py +++ b/githubkit/versions/v2022_11_28/types/group_1095.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_1096.py b/githubkit/versions/v2022_11_28/types/group_1096.py index a146deba2..fc4fe244b 100644 --- a/githubkit/versions/v2022_11_28/types/group_1096.py +++ b/githubkit/versions/v2022_11_28/types/group_1096.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_1097.py b/githubkit/versions/v2022_11_28/types/group_1097.py index 9a7c95d97..d85bf8d37 100644 --- a/githubkit/versions/v2022_11_28/types/group_1097.py +++ b/githubkit/versions/v2022_11_28/types/group_1097.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_1098.py b/githubkit/versions/v2022_11_28/types/group_1098.py index 8eb3b8ce1..7d80e267e 100644 --- a/githubkit/versions/v2022_11_28/types/group_1098.py +++ b/githubkit/versions/v2022_11_28/types/group_1098.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_1099.py b/githubkit/versions/v2022_11_28/types/group_1099.py index e1ffd6ba3..388437358 100644 --- a/githubkit/versions/v2022_11_28/types/group_1099.py +++ b/githubkit/versions/v2022_11_28/types/group_1099.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_1100.py b/githubkit/versions/v2022_11_28/types/group_1100.py index e3537225d..6dd2f6735 100644 --- a/githubkit/versions/v2022_11_28/types/group_1100.py +++ b/githubkit/versions/v2022_11_28/types/group_1100.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_1101.py b/githubkit/versions/v2022_11_28/types/group_1101.py index f8a3375fb..48f7d82ce 100644 --- a/githubkit/versions/v2022_11_28/types/group_1101.py +++ b/githubkit/versions/v2022_11_28/types/group_1101.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_1102.py b/githubkit/versions/v2022_11_28/types/group_1102.py index 3378016b8..9e6d26d8a 100644 --- a/githubkit/versions/v2022_11_28/types/group_1102.py +++ b/githubkit/versions/v2022_11_28/types/group_1102.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_1103.py b/githubkit/versions/v2022_11_28/types/group_1103.py index 44a765f5f..492fdc91e 100644 --- a/githubkit/versions/v2022_11_28/types/group_1103.py +++ b/githubkit/versions/v2022_11_28/types/group_1103.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_1104.py b/githubkit/versions/v2022_11_28/types/group_1104.py index c0ccfadd0..681ccb3a7 100644 --- a/githubkit/versions/v2022_11_28/types/group_1104.py +++ b/githubkit/versions/v2022_11_28/types/group_1104.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_1105.py b/githubkit/versions/v2022_11_28/types/group_1105.py index 516626851..75339e545 100644 --- a/githubkit/versions/v2022_11_28/types/group_1105.py +++ b/githubkit/versions/v2022_11_28/types/group_1105.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_1106.py b/githubkit/versions/v2022_11_28/types/group_1106.py index 622cdcdcb..0b51fb534 100644 --- a/githubkit/versions/v2022_11_28/types/group_1106.py +++ b/githubkit/versions/v2022_11_28/types/group_1106.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_1107.py b/githubkit/versions/v2022_11_28/types/group_1107.py index c5d79eb08..b589c2a6a 100644 --- a/githubkit/versions/v2022_11_28/types/group_1107.py +++ b/githubkit/versions/v2022_11_28/types/group_1107.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_1108.py b/githubkit/versions/v2022_11_28/types/group_1108.py index 5cd13e5ce..46f00fe63 100644 --- a/githubkit/versions/v2022_11_28/types/group_1108.py +++ b/githubkit/versions/v2022_11_28/types/group_1108.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_1109.py b/githubkit/versions/v2022_11_28/types/group_1109.py index b7b0754a6..2797e0af9 100644 --- a/githubkit/versions/v2022_11_28/types/group_1109.py +++ b/githubkit/versions/v2022_11_28/types/group_1109.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_1110.py b/githubkit/versions/v2022_11_28/types/group_1110.py index de4b41533..49b6126e3 100644 --- a/githubkit/versions/v2022_11_28/types/group_1110.py +++ b/githubkit/versions/v2022_11_28/types/group_1110.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_1111.py b/githubkit/versions/v2022_11_28/types/group_1111.py index 85bb4522d..aba26488a 100644 --- a/githubkit/versions/v2022_11_28/types/group_1111.py +++ b/githubkit/versions/v2022_11_28/types/group_1111.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_1112.py b/githubkit/versions/v2022_11_28/types/group_1112.py index 8a17e3dc8..ea06c9bbf 100644 --- a/githubkit/versions/v2022_11_28/types/group_1112.py +++ b/githubkit/versions/v2022_11_28/types/group_1112.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_1113.py b/githubkit/versions/v2022_11_28/types/group_1113.py index f2c3784d8..02edb1cc8 100644 --- a/githubkit/versions/v2022_11_28/types/group_1113.py +++ b/githubkit/versions/v2022_11_28/types/group_1113.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_1114.py b/githubkit/versions/v2022_11_28/types/group_1114.py index 99968f904..8ac2e4896 100644 --- a/githubkit/versions/v2022_11_28/types/group_1114.py +++ b/githubkit/versions/v2022_11_28/types/group_1114.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_1115.py b/githubkit/versions/v2022_11_28/types/group_1115.py index 22c08e6b4..206f6e4e5 100644 --- a/githubkit/versions/v2022_11_28/types/group_1115.py +++ b/githubkit/versions/v2022_11_28/types/group_1115.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_1116.py b/githubkit/versions/v2022_11_28/types/group_1116.py index f395c451c..fd87b040e 100644 --- a/githubkit/versions/v2022_11_28/types/group_1116.py +++ b/githubkit/versions/v2022_11_28/types/group_1116.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_1117.py b/githubkit/versions/v2022_11_28/types/group_1117.py index 129410372..5f68e3fc2 100644 --- a/githubkit/versions/v2022_11_28/types/group_1117.py +++ b/githubkit/versions/v2022_11_28/types/group_1117.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_1118.py b/githubkit/versions/v2022_11_28/types/group_1118.py index 4bcf64f7a..a5b98bc3c 100644 --- a/githubkit/versions/v2022_11_28/types/group_1118.py +++ b/githubkit/versions/v2022_11_28/types/group_1118.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_1119.py b/githubkit/versions/v2022_11_28/types/group_1119.py index 34b6b91bc..0dfdc5335 100644 --- a/githubkit/versions/v2022_11_28/types/group_1119.py +++ b/githubkit/versions/v2022_11_28/types/group_1119.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_1120.py b/githubkit/versions/v2022_11_28/types/group_1120.py index 8263ef829..dc342bf35 100644 --- a/githubkit/versions/v2022_11_28/types/group_1120.py +++ b/githubkit/versions/v2022_11_28/types/group_1120.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_1121.py b/githubkit/versions/v2022_11_28/types/group_1121.py index 9dba2bf07..cf235f497 100644 --- a/githubkit/versions/v2022_11_28/types/group_1121.py +++ b/githubkit/versions/v2022_11_28/types/group_1121.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_1122.py b/githubkit/versions/v2022_11_28/types/group_1122.py index f30ce0a02..6c62a2d33 100644 --- a/githubkit/versions/v2022_11_28/types/group_1122.py +++ b/githubkit/versions/v2022_11_28/types/group_1122.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from datetime import datetime diff --git a/githubkit/versions/v2022_11_28/types/group_1123.py b/githubkit/versions/v2022_11_28/types/group_1123.py index 2ecb5405a..f7e1dab5d 100644 --- a/githubkit/versions/v2022_11_28/types/group_1123.py +++ b/githubkit/versions/v2022_11_28/types/group_1123.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Union diff --git a/githubkit/versions/v2022_11_28/types/group_1124.py b/githubkit/versions/v2022_11_28/types/group_1124.py index 30d69bcfb..3a3cac513 100644 --- a/githubkit/versions/v2022_11_28/types/group_1124.py +++ b/githubkit/versions/v2022_11_28/types/group_1124.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_1125.py b/githubkit/versions/v2022_11_28/types/group_1125.py index 0a3f1c490..623f6ef5e 100644 --- a/githubkit/versions/v2022_11_28/types/group_1125.py +++ b/githubkit/versions/v2022_11_28/types/group_1125.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_1126.py b/githubkit/versions/v2022_11_28/types/group_1126.py index 66ebfb278..b46628249 100644 --- a/githubkit/versions/v2022_11_28/types/group_1126.py +++ b/githubkit/versions/v2022_11_28/types/group_1126.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_1127.py b/githubkit/versions/v2022_11_28/types/group_1127.py index 198433b1f..b7373e72d 100644 --- a/githubkit/versions/v2022_11_28/types/group_1127.py +++ b/githubkit/versions/v2022_11_28/types/group_1127.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_1128.py b/githubkit/versions/v2022_11_28/types/group_1128.py index eddf8d23d..adf5558f2 100644 --- a/githubkit/versions/v2022_11_28/types/group_1128.py +++ b/githubkit/versions/v2022_11_28/types/group_1128.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_1129.py b/githubkit/versions/v2022_11_28/types/group_1129.py index 5985a14a4..741f85377 100644 --- a/githubkit/versions/v2022_11_28/types/group_1129.py +++ b/githubkit/versions/v2022_11_28/types/group_1129.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_1130.py b/githubkit/versions/v2022_11_28/types/group_1130.py index 5f45042d6..76706bdf0 100644 --- a/githubkit/versions/v2022_11_28/types/group_1130.py +++ b/githubkit/versions/v2022_11_28/types/group_1130.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_1131.py b/githubkit/versions/v2022_11_28/types/group_1131.py index fa6c83797..a7b448531 100644 --- a/githubkit/versions/v2022_11_28/types/group_1131.py +++ b/githubkit/versions/v2022_11_28/types/group_1131.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_1132.py b/githubkit/versions/v2022_11_28/types/group_1132.py index 83ac42250..c3eff10ec 100644 --- a/githubkit/versions/v2022_11_28/types/group_1132.py +++ b/githubkit/versions/v2022_11_28/types/group_1132.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_1133.py b/githubkit/versions/v2022_11_28/types/group_1133.py index 089774821..64abc4546 100644 --- a/githubkit/versions/v2022_11_28/types/group_1133.py +++ b/githubkit/versions/v2022_11_28/types/group_1133.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_1134.py b/githubkit/versions/v2022_11_28/types/group_1134.py index 061661d7b..a8c57fcc3 100644 --- a/githubkit/versions/v2022_11_28/types/group_1134.py +++ b/githubkit/versions/v2022_11_28/types/group_1134.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_1135.py b/githubkit/versions/v2022_11_28/types/group_1135.py index 764d8ef5d..9f9dd053b 100644 --- a/githubkit/versions/v2022_11_28/types/group_1135.py +++ b/githubkit/versions/v2022_11_28/types/group_1135.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict diff --git a/githubkit/versions/v2022_11_28/types/group_1136.py b/githubkit/versions/v2022_11_28/types/group_1136.py index ab2ff8c68..01b3a0e4d 100644 --- a/githubkit/versions/v2022_11_28/types/group_1136.py +++ b/githubkit/versions/v2022_11_28/types/group_1136.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/types/group_1137.py b/githubkit/versions/v2022_11_28/types/group_1137.py index db4b1ebca..718052573 100644 --- a/githubkit/versions/v2022_11_28/types/group_1137.py +++ b/githubkit/versions/v2022_11_28/types/group_1137.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_1138.py b/githubkit/versions/v2022_11_28/types/group_1138.py index 73e4a33df..4d601de18 100644 --- a/githubkit/versions/v2022_11_28/types/group_1138.py +++ b/githubkit/versions/v2022_11_28/types/group_1138.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List, Literal diff --git a/githubkit/versions/v2022_11_28/types/group_1139.py b/githubkit/versions/v2022_11_28/types/group_1139.py index 269f41c45..788630d15 100644 --- a/githubkit/versions/v2022_11_28/types/group_1139.py +++ b/githubkit/versions/v2022_11_28/types/group_1139.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Union diff --git a/githubkit/versions/v2022_11_28/types/group_1140.py b/githubkit/versions/v2022_11_28/types/group_1140.py index 6b7a948a0..7b85c56d3 100644 --- a/githubkit/versions/v2022_11_28/types/group_1140.py +++ b/githubkit/versions/v2022_11_28/types/group_1140.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import Literal diff --git a/githubkit/versions/v2022_11_28/types/group_1141.py b/githubkit/versions/v2022_11_28/types/group_1141.py index 7bbe9d87e..e15229eae 100644 --- a/githubkit/versions/v2022_11_28/types/group_1141.py +++ b/githubkit/versions/v2022_11_28/types/group_1141.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_1142.py b/githubkit/versions/v2022_11_28/types/group_1142.py index 756ea73c6..ee2d5aa51 100644 --- a/githubkit/versions/v2022_11_28/types/group_1142.py +++ b/githubkit/versions/v2022_11_28/types/group_1142.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing import List diff --git a/githubkit/versions/v2022_11_28/types/group_1143.py b/githubkit/versions/v2022_11_28/types/group_1143.py index ee7ed7d16..4e43f5e67 100644 --- a/githubkit/versions/v2022_11_28/types/group_1143.py +++ b/githubkit/versions/v2022_11_28/types/group_1143.py @@ -7,7 +7,6 @@ See https://github.com/github/rest-api-description for more information. """ - from __future__ import annotations from typing_extensions import TypedDict, NotRequired diff --git a/githubkit/versions/v2022_11_28/webhooks/_namespace.py b/githubkit/versions/v2022_11_28/webhooks/_namespace.py index c5da46b25..166aeb923 100644 --- a/githubkit/versions/v2022_11_28/webhooks/_namespace.py +++ b/githubkit/versions/v2022_11_28/webhooks/_namespace.py @@ -266,465 +266,401 @@ def parse_without_name(payload: Union[str, bytes]) -> "WebhookEvent": @staticmethod def parse( name: Literal["branch_protection_configuration"], payload: Union[str, bytes] - ) -> "BranchProtectionConfigurationEvent": - ... + ) -> "BranchProtectionConfigurationEvent": ... @overload @staticmethod def parse( name: Literal["branch_protection_rule"], payload: Union[str, bytes] - ) -> "BranchProtectionRuleEvent": - ... + ) -> "BranchProtectionRuleEvent": ... @overload @staticmethod def parse( name: Literal["check_run"], payload: Union[str, bytes] - ) -> "CheckRunEvent": - ... + ) -> "CheckRunEvent": ... @overload @staticmethod def parse( name: Literal["check_suite"], payload: Union[str, bytes] - ) -> "CheckSuiteEvent": - ... + ) -> "CheckSuiteEvent": ... @overload @staticmethod def parse( name: Literal["code_scanning_alert"], payload: Union[str, bytes] - ) -> "CodeScanningAlertEvent": - ... + ) -> "CodeScanningAlertEvent": ... @overload @staticmethod def parse( name: Literal["commit_comment"], payload: Union[str, bytes] - ) -> "CommitCommentEvent": - ... + ) -> "CommitCommentEvent": ... @overload @staticmethod - def parse(name: Literal["create"], payload: Union[str, bytes]) -> "CreateEvent": - ... + def parse(name: Literal["create"], payload: Union[str, bytes]) -> "CreateEvent": ... @overload @staticmethod def parse( name: Literal["custom_property"], payload: Union[str, bytes] - ) -> "CustomPropertyEvent": - ... + ) -> "CustomPropertyEvent": ... @overload @staticmethod def parse( name: Literal["custom_property_values"], payload: Union[str, bytes] - ) -> "CustomPropertyValuesEvent": - ... + ) -> "CustomPropertyValuesEvent": ... @overload @staticmethod - def parse(name: Literal["delete"], payload: Union[str, bytes]) -> "DeleteEvent": - ... + def parse(name: Literal["delete"], payload: Union[str, bytes]) -> "DeleteEvent": ... @overload @staticmethod def parse( name: Literal["dependabot_alert"], payload: Union[str, bytes] - ) -> "DependabotAlertEvent": - ... + ) -> "DependabotAlertEvent": ... @overload @staticmethod def parse( name: Literal["deploy_key"], payload: Union[str, bytes] - ) -> "DeployKeyEvent": - ... + ) -> "DeployKeyEvent": ... @overload @staticmethod def parse( name: Literal["deployment"], payload: Union[str, bytes] - ) -> "DeploymentEvent": - ... + ) -> "DeploymentEvent": ... @overload @staticmethod def parse( name: Literal["deployment_protection_rule"], payload: Union[str, bytes] - ) -> "DeploymentProtectionRuleEvent": - ... + ) -> "DeploymentProtectionRuleEvent": ... @overload @staticmethod def parse( name: Literal["deployment_review"], payload: Union[str, bytes] - ) -> "DeploymentReviewEvent": - ... + ) -> "DeploymentReviewEvent": ... @overload @staticmethod def parse( name: Literal["deployment_status"], payload: Union[str, bytes] - ) -> "DeploymentStatusEvent": - ... + ) -> "DeploymentStatusEvent": ... @overload @staticmethod def parse( name: Literal["discussion"], payload: Union[str, bytes] - ) -> "DiscussionEvent": - ... + ) -> "DiscussionEvent": ... @overload @staticmethod def parse( name: Literal["discussion_comment"], payload: Union[str, bytes] - ) -> "DiscussionCommentEvent": - ... + ) -> "DiscussionCommentEvent": ... @overload @staticmethod - def parse(name: Literal["fork"], payload: Union[str, bytes]) -> "ForkEvent": - ... + def parse(name: Literal["fork"], payload: Union[str, bytes]) -> "ForkEvent": ... @overload @staticmethod def parse( name: Literal["github_app_authorization"], payload: Union[str, bytes] - ) -> "GithubAppAuthorizationEvent": - ... + ) -> "GithubAppAuthorizationEvent": ... @overload @staticmethod - def parse(name: Literal["gollum"], payload: Union[str, bytes]) -> "GollumEvent": - ... + def parse(name: Literal["gollum"], payload: Union[str, bytes]) -> "GollumEvent": ... @overload @staticmethod def parse( name: Literal["installation"], payload: Union[str, bytes] - ) -> "InstallationEvent": - ... + ) -> "InstallationEvent": ... @overload @staticmethod def parse( name: Literal["installation_repositories"], payload: Union[str, bytes] - ) -> "InstallationRepositoriesEvent": - ... + ) -> "InstallationRepositoriesEvent": ... @overload @staticmethod def parse( name: Literal["installation_target"], payload: Union[str, bytes] - ) -> "InstallationTargetEvent": - ... + ) -> "InstallationTargetEvent": ... @overload @staticmethod def parse( name: Literal["issue_comment"], payload: Union[str, bytes] - ) -> "IssueCommentEvent": - ... + ) -> "IssueCommentEvent": ... @overload @staticmethod - def parse(name: Literal["issues"], payload: Union[str, bytes]) -> "IssuesEvent": - ... + def parse(name: Literal["issues"], payload: Union[str, bytes]) -> "IssuesEvent": ... @overload @staticmethod - def parse(name: Literal["label"], payload: Union[str, bytes]) -> "LabelEvent": - ... + def parse(name: Literal["label"], payload: Union[str, bytes]) -> "LabelEvent": ... @overload @staticmethod def parse( name: Literal["marketplace_purchase"], payload: Union[str, bytes] - ) -> "MarketplacePurchaseEvent": - ... + ) -> "MarketplacePurchaseEvent": ... @overload @staticmethod - def parse(name: Literal["member"], payload: Union[str, bytes]) -> "MemberEvent": - ... + def parse(name: Literal["member"], payload: Union[str, bytes]) -> "MemberEvent": ... @overload @staticmethod def parse( name: Literal["membership"], payload: Union[str, bytes] - ) -> "MembershipEvent": - ... + ) -> "MembershipEvent": ... @overload @staticmethod def parse( name: Literal["merge_group"], payload: Union[str, bytes] - ) -> "MergeGroupEvent": - ... + ) -> "MergeGroupEvent": ... @overload @staticmethod - def parse(name: Literal["meta"], payload: Union[str, bytes]) -> "MetaEvent": - ... + def parse(name: Literal["meta"], payload: Union[str, bytes]) -> "MetaEvent": ... @overload @staticmethod def parse( name: Literal["milestone"], payload: Union[str, bytes] - ) -> "MilestoneEvent": - ... + ) -> "MilestoneEvent": ... @overload @staticmethod def parse( name: Literal["org_block"], payload: Union[str, bytes] - ) -> "OrgBlockEvent": - ... + ) -> "OrgBlockEvent": ... @overload @staticmethod def parse( name: Literal["organization"], payload: Union[str, bytes] - ) -> "OrganizationEvent": - ... + ) -> "OrganizationEvent": ... @overload @staticmethod - def parse(name: Literal["package"], payload: Union[str, bytes]) -> "PackageEvent": - ... + def parse( + name: Literal["package"], payload: Union[str, bytes] + ) -> "PackageEvent": ... @overload @staticmethod def parse( name: Literal["page_build"], payload: Union[str, bytes] - ) -> "PageBuildEvent": - ... + ) -> "PageBuildEvent": ... @overload @staticmethod def parse( name: Literal["personal_access_token_request"], payload: Union[str, bytes] - ) -> "PersonalAccessTokenRequestEvent": - ... + ) -> "PersonalAccessTokenRequestEvent": ... @overload @staticmethod - def parse(name: Literal["ping"], payload: Union[str, bytes]) -> "PingEvent": - ... + def parse(name: Literal["ping"], payload: Union[str, bytes]) -> "PingEvent": ... @overload @staticmethod def parse( name: Literal["project_card"], payload: Union[str, bytes] - ) -> "ProjectCardEvent": - ... + ) -> "ProjectCardEvent": ... @overload @staticmethod - def parse(name: Literal["project"], payload: Union[str, bytes]) -> "ProjectEvent": - ... + def parse( + name: Literal["project"], payload: Union[str, bytes] + ) -> "ProjectEvent": ... @overload @staticmethod def parse( name: Literal["project_column"], payload: Union[str, bytes] - ) -> "ProjectColumnEvent": - ... + ) -> "ProjectColumnEvent": ... @overload @staticmethod def parse( name: Literal["projects_v2"], payload: Union[str, bytes] - ) -> "ProjectsV2Event": - ... + ) -> "ProjectsV2Event": ... @overload @staticmethod def parse( name: Literal["projects_v2_item"], payload: Union[str, bytes] - ) -> "ProjectsV2ItemEvent": - ... + ) -> "ProjectsV2ItemEvent": ... @overload @staticmethod - def parse(name: Literal["public"], payload: Union[str, bytes]) -> "PublicEvent": - ... + def parse(name: Literal["public"], payload: Union[str, bytes]) -> "PublicEvent": ... @overload @staticmethod def parse( name: Literal["pull_request"], payload: Union[str, bytes] - ) -> "PullRequestEvent": - ... + ) -> "PullRequestEvent": ... @overload @staticmethod def parse( name: Literal["pull_request_review_comment"], payload: Union[str, bytes] - ) -> "PullRequestReviewCommentEvent": - ... + ) -> "PullRequestReviewCommentEvent": ... @overload @staticmethod def parse( name: Literal["pull_request_review"], payload: Union[str, bytes] - ) -> "PullRequestReviewEvent": - ... + ) -> "PullRequestReviewEvent": ... @overload @staticmethod def parse( name: Literal["pull_request_review_thread"], payload: Union[str, bytes] - ) -> "PullRequestReviewThreadEvent": - ... + ) -> "PullRequestReviewThreadEvent": ... @overload @staticmethod - def parse(name: Literal["push"], payload: Union[str, bytes]) -> "PushEvent": - ... + def parse(name: Literal["push"], payload: Union[str, bytes]) -> "PushEvent": ... @overload @staticmethod def parse( name: Literal["registry_package"], payload: Union[str, bytes] - ) -> "RegistryPackageEvent": - ... + ) -> "RegistryPackageEvent": ... @overload @staticmethod - def parse(name: Literal["release"], payload: Union[str, bytes]) -> "ReleaseEvent": - ... + def parse( + name: Literal["release"], payload: Union[str, bytes] + ) -> "ReleaseEvent": ... @overload @staticmethod def parse( name: Literal["repository_advisory"], payload: Union[str, bytes] - ) -> "RepositoryAdvisoryEvent": - ... + ) -> "RepositoryAdvisoryEvent": ... @overload @staticmethod def parse( name: Literal["repository"], payload: Union[str, bytes] - ) -> "RepositoryEvent": - ... + ) -> "RepositoryEvent": ... @overload @staticmethod def parse( name: Literal["repository_dispatch"], payload: Union[str, bytes] - ) -> "RepositoryDispatchEvent": - ... + ) -> "RepositoryDispatchEvent": ... @overload @staticmethod def parse( name: Literal["repository_import"], payload: Union[str, bytes] - ) -> "RepositoryImportEvent": - ... + ) -> "RepositoryImportEvent": ... @overload @staticmethod def parse( name: Literal["repository_ruleset"], payload: Union[str, bytes] - ) -> "RepositoryRulesetEvent": - ... + ) -> "RepositoryRulesetEvent": ... @overload @staticmethod def parse( name: Literal["repository_vulnerability_alert"], payload: Union[str, bytes] - ) -> "RepositoryVulnerabilityAlertEvent": - ... + ) -> "RepositoryVulnerabilityAlertEvent": ... @overload @staticmethod def parse( name: Literal["secret_scanning_alert"], payload: Union[str, bytes] - ) -> "SecretScanningAlertEvent": - ... + ) -> "SecretScanningAlertEvent": ... @overload @staticmethod def parse( name: Literal["secret_scanning_alert_location"], payload: Union[str, bytes] - ) -> "SecretScanningAlertLocationEvent": - ... + ) -> "SecretScanningAlertLocationEvent": ... @overload @staticmethod def parse( name: Literal["security_advisory"], payload: Union[str, bytes] - ) -> "SecurityAdvisoryEvent": - ... + ) -> "SecurityAdvisoryEvent": ... @overload @staticmethod def parse( name: Literal["security_and_analysis"], payload: Union[str, bytes] - ) -> "SecurityAndAnalysisEvent": - ... + ) -> "SecurityAndAnalysisEvent": ... @overload @staticmethod def parse( name: Literal["sponsorship"], payload: Union[str, bytes] - ) -> "SponsorshipEvent": - ... + ) -> "SponsorshipEvent": ... @overload @staticmethod - def parse(name: Literal["star"], payload: Union[str, bytes]) -> "StarEvent": - ... + def parse(name: Literal["star"], payload: Union[str, bytes]) -> "StarEvent": ... @overload @staticmethod - def parse(name: Literal["status"], payload: Union[str, bytes]) -> "StatusEvent": - ... + def parse(name: Literal["status"], payload: Union[str, bytes]) -> "StatusEvent": ... @overload @staticmethod - def parse(name: Literal["team_add"], payload: Union[str, bytes]) -> "TeamAddEvent": - ... + def parse( + name: Literal["team_add"], payload: Union[str, bytes] + ) -> "TeamAddEvent": ... @overload @staticmethod - def parse(name: Literal["team"], payload: Union[str, bytes]) -> "TeamEvent": - ... + def parse(name: Literal["team"], payload: Union[str, bytes]) -> "TeamEvent": ... @overload @staticmethod - def parse(name: Literal["watch"], payload: Union[str, bytes]) -> "WatchEvent": - ... + def parse(name: Literal["watch"], payload: Union[str, bytes]) -> "WatchEvent": ... @overload @staticmethod def parse( name: Literal["workflow_dispatch"], payload: Union[str, bytes] - ) -> "WorkflowDispatchEvent": - ... + ) -> "WorkflowDispatchEvent": ... @overload @staticmethod def parse( name: Literal["workflow_job"], payload: Union[str, bytes] - ) -> "WorkflowJobEvent": - ... + ) -> "WorkflowJobEvent": ... @overload @staticmethod def parse( name: Literal["workflow_run"], payload: Union[str, bytes] - ) -> "WorkflowRunEvent": - ... + ) -> "WorkflowRunEvent": ... @overload @staticmethod - def parse(name: EventNameType, payload: Union[str, bytes]) -> "WebhookEvent": - ... + def parse(name: EventNameType, payload: Union[str, bytes]) -> "WebhookEvent": ... @staticmethod def parse(name: EventNameType, payload: Union[str, bytes]) -> "WebhookEvent": @@ -762,465 +698,415 @@ def parse_obj_without_name(payload: Dict[str, Any]) -> "WebhookEvent": @staticmethod def parse_obj( name: Literal["branch_protection_configuration"], payload: Dict[str, Any] - ) -> "BranchProtectionConfigurationEvent": - ... + ) -> "BranchProtectionConfigurationEvent": ... @overload @staticmethod def parse_obj( name: Literal["branch_protection_rule"], payload: Dict[str, Any] - ) -> "BranchProtectionRuleEvent": - ... + ) -> "BranchProtectionRuleEvent": ... @overload @staticmethod def parse_obj( name: Literal["check_run"], payload: Dict[str, Any] - ) -> "CheckRunEvent": - ... + ) -> "CheckRunEvent": ... @overload @staticmethod def parse_obj( name: Literal["check_suite"], payload: Dict[str, Any] - ) -> "CheckSuiteEvent": - ... + ) -> "CheckSuiteEvent": ... @overload @staticmethod def parse_obj( name: Literal["code_scanning_alert"], payload: Dict[str, Any] - ) -> "CodeScanningAlertEvent": - ... + ) -> "CodeScanningAlertEvent": ... @overload @staticmethod def parse_obj( name: Literal["commit_comment"], payload: Dict[str, Any] - ) -> "CommitCommentEvent": - ... + ) -> "CommitCommentEvent": ... @overload @staticmethod - def parse_obj(name: Literal["create"], payload: Dict[str, Any]) -> "CreateEvent": - ... + def parse_obj( + name: Literal["create"], payload: Dict[str, Any] + ) -> "CreateEvent": ... @overload @staticmethod def parse_obj( name: Literal["custom_property"], payload: Dict[str, Any] - ) -> "CustomPropertyEvent": - ... + ) -> "CustomPropertyEvent": ... @overload @staticmethod def parse_obj( name: Literal["custom_property_values"], payload: Dict[str, Any] - ) -> "CustomPropertyValuesEvent": - ... + ) -> "CustomPropertyValuesEvent": ... @overload @staticmethod - def parse_obj(name: Literal["delete"], payload: Dict[str, Any]) -> "DeleteEvent": - ... + def parse_obj( + name: Literal["delete"], payload: Dict[str, Any] + ) -> "DeleteEvent": ... @overload @staticmethod def parse_obj( name: Literal["dependabot_alert"], payload: Dict[str, Any] - ) -> "DependabotAlertEvent": - ... + ) -> "DependabotAlertEvent": ... @overload @staticmethod def parse_obj( name: Literal["deploy_key"], payload: Dict[str, Any] - ) -> "DeployKeyEvent": - ... + ) -> "DeployKeyEvent": ... @overload @staticmethod def parse_obj( name: Literal["deployment"], payload: Dict[str, Any] - ) -> "DeploymentEvent": - ... + ) -> "DeploymentEvent": ... @overload @staticmethod def parse_obj( name: Literal["deployment_protection_rule"], payload: Dict[str, Any] - ) -> "DeploymentProtectionRuleEvent": - ... + ) -> "DeploymentProtectionRuleEvent": ... @overload @staticmethod def parse_obj( name: Literal["deployment_review"], payload: Dict[str, Any] - ) -> "DeploymentReviewEvent": - ... + ) -> "DeploymentReviewEvent": ... @overload @staticmethod def parse_obj( name: Literal["deployment_status"], payload: Dict[str, Any] - ) -> "DeploymentStatusEvent": - ... + ) -> "DeploymentStatusEvent": ... @overload @staticmethod def parse_obj( name: Literal["discussion"], payload: Dict[str, Any] - ) -> "DiscussionEvent": - ... + ) -> "DiscussionEvent": ... @overload @staticmethod def parse_obj( name: Literal["discussion_comment"], payload: Dict[str, Any] - ) -> "DiscussionCommentEvent": - ... + ) -> "DiscussionCommentEvent": ... @overload @staticmethod - def parse_obj(name: Literal["fork"], payload: Dict[str, Any]) -> "ForkEvent": - ... + def parse_obj(name: Literal["fork"], payload: Dict[str, Any]) -> "ForkEvent": ... @overload @staticmethod def parse_obj( name: Literal["github_app_authorization"], payload: Dict[str, Any] - ) -> "GithubAppAuthorizationEvent": - ... + ) -> "GithubAppAuthorizationEvent": ... @overload @staticmethod - def parse_obj(name: Literal["gollum"], payload: Dict[str, Any]) -> "GollumEvent": - ... + def parse_obj( + name: Literal["gollum"], payload: Dict[str, Any] + ) -> "GollumEvent": ... @overload @staticmethod def parse_obj( name: Literal["installation"], payload: Dict[str, Any] - ) -> "InstallationEvent": - ... + ) -> "InstallationEvent": ... @overload @staticmethod def parse_obj( name: Literal["installation_repositories"], payload: Dict[str, Any] - ) -> "InstallationRepositoriesEvent": - ... + ) -> "InstallationRepositoriesEvent": ... @overload @staticmethod def parse_obj( name: Literal["installation_target"], payload: Dict[str, Any] - ) -> "InstallationTargetEvent": - ... + ) -> "InstallationTargetEvent": ... @overload @staticmethod def parse_obj( name: Literal["issue_comment"], payload: Dict[str, Any] - ) -> "IssueCommentEvent": - ... + ) -> "IssueCommentEvent": ... @overload @staticmethod - def parse_obj(name: Literal["issues"], payload: Dict[str, Any]) -> "IssuesEvent": - ... + def parse_obj( + name: Literal["issues"], payload: Dict[str, Any] + ) -> "IssuesEvent": ... @overload @staticmethod - def parse_obj(name: Literal["label"], payload: Dict[str, Any]) -> "LabelEvent": - ... + def parse_obj(name: Literal["label"], payload: Dict[str, Any]) -> "LabelEvent": ... @overload @staticmethod def parse_obj( name: Literal["marketplace_purchase"], payload: Dict[str, Any] - ) -> "MarketplacePurchaseEvent": - ... + ) -> "MarketplacePurchaseEvent": ... @overload @staticmethod - def parse_obj(name: Literal["member"], payload: Dict[str, Any]) -> "MemberEvent": - ... + def parse_obj( + name: Literal["member"], payload: Dict[str, Any] + ) -> "MemberEvent": ... @overload @staticmethod def parse_obj( name: Literal["membership"], payload: Dict[str, Any] - ) -> "MembershipEvent": - ... + ) -> "MembershipEvent": ... @overload @staticmethod def parse_obj( name: Literal["merge_group"], payload: Dict[str, Any] - ) -> "MergeGroupEvent": - ... + ) -> "MergeGroupEvent": ... @overload @staticmethod - def parse_obj(name: Literal["meta"], payload: Dict[str, Any]) -> "MetaEvent": - ... + def parse_obj(name: Literal["meta"], payload: Dict[str, Any]) -> "MetaEvent": ... @overload @staticmethod def parse_obj( name: Literal["milestone"], payload: Dict[str, Any] - ) -> "MilestoneEvent": - ... + ) -> "MilestoneEvent": ... @overload @staticmethod def parse_obj( name: Literal["org_block"], payload: Dict[str, Any] - ) -> "OrgBlockEvent": - ... + ) -> "OrgBlockEvent": ... @overload @staticmethod def parse_obj( name: Literal["organization"], payload: Dict[str, Any] - ) -> "OrganizationEvent": - ... + ) -> "OrganizationEvent": ... @overload @staticmethod - def parse_obj(name: Literal["package"], payload: Dict[str, Any]) -> "PackageEvent": - ... + def parse_obj( + name: Literal["package"], payload: Dict[str, Any] + ) -> "PackageEvent": ... @overload @staticmethod def parse_obj( name: Literal["page_build"], payload: Dict[str, Any] - ) -> "PageBuildEvent": - ... + ) -> "PageBuildEvent": ... @overload @staticmethod def parse_obj( name: Literal["personal_access_token_request"], payload: Dict[str, Any] - ) -> "PersonalAccessTokenRequestEvent": - ... + ) -> "PersonalAccessTokenRequestEvent": ... @overload @staticmethod - def parse_obj(name: Literal["ping"], payload: Dict[str, Any]) -> "PingEvent": - ... + def parse_obj(name: Literal["ping"], payload: Dict[str, Any]) -> "PingEvent": ... @overload @staticmethod def parse_obj( name: Literal["project_card"], payload: Dict[str, Any] - ) -> "ProjectCardEvent": - ... + ) -> "ProjectCardEvent": ... @overload @staticmethod - def parse_obj(name: Literal["project"], payload: Dict[str, Any]) -> "ProjectEvent": - ... + def parse_obj( + name: Literal["project"], payload: Dict[str, Any] + ) -> "ProjectEvent": ... @overload @staticmethod def parse_obj( name: Literal["project_column"], payload: Dict[str, Any] - ) -> "ProjectColumnEvent": - ... + ) -> "ProjectColumnEvent": ... @overload @staticmethod def parse_obj( name: Literal["projects_v2"], payload: Dict[str, Any] - ) -> "ProjectsV2Event": - ... + ) -> "ProjectsV2Event": ... @overload @staticmethod def parse_obj( name: Literal["projects_v2_item"], payload: Dict[str, Any] - ) -> "ProjectsV2ItemEvent": - ... + ) -> "ProjectsV2ItemEvent": ... @overload @staticmethod - def parse_obj(name: Literal["public"], payload: Dict[str, Any]) -> "PublicEvent": - ... + def parse_obj( + name: Literal["public"], payload: Dict[str, Any] + ) -> "PublicEvent": ... @overload @staticmethod def parse_obj( name: Literal["pull_request"], payload: Dict[str, Any] - ) -> "PullRequestEvent": - ... + ) -> "PullRequestEvent": ... @overload @staticmethod def parse_obj( name: Literal["pull_request_review_comment"], payload: Dict[str, Any] - ) -> "PullRequestReviewCommentEvent": - ... + ) -> "PullRequestReviewCommentEvent": ... @overload @staticmethod def parse_obj( name: Literal["pull_request_review"], payload: Dict[str, Any] - ) -> "PullRequestReviewEvent": - ... + ) -> "PullRequestReviewEvent": ... @overload @staticmethod def parse_obj( name: Literal["pull_request_review_thread"], payload: Dict[str, Any] - ) -> "PullRequestReviewThreadEvent": - ... + ) -> "PullRequestReviewThreadEvent": ... @overload @staticmethod - def parse_obj(name: Literal["push"], payload: Dict[str, Any]) -> "PushEvent": - ... + def parse_obj(name: Literal["push"], payload: Dict[str, Any]) -> "PushEvent": ... @overload @staticmethod def parse_obj( name: Literal["registry_package"], payload: Dict[str, Any] - ) -> "RegistryPackageEvent": - ... + ) -> "RegistryPackageEvent": ... @overload @staticmethod - def parse_obj(name: Literal["release"], payload: Dict[str, Any]) -> "ReleaseEvent": - ... + def parse_obj( + name: Literal["release"], payload: Dict[str, Any] + ) -> "ReleaseEvent": ... @overload @staticmethod def parse_obj( name: Literal["repository_advisory"], payload: Dict[str, Any] - ) -> "RepositoryAdvisoryEvent": - ... + ) -> "RepositoryAdvisoryEvent": ... @overload @staticmethod def parse_obj( name: Literal["repository"], payload: Dict[str, Any] - ) -> "RepositoryEvent": - ... + ) -> "RepositoryEvent": ... @overload @staticmethod def parse_obj( name: Literal["repository_dispatch"], payload: Dict[str, Any] - ) -> "RepositoryDispatchEvent": - ... + ) -> "RepositoryDispatchEvent": ... @overload @staticmethod def parse_obj( name: Literal["repository_import"], payload: Dict[str, Any] - ) -> "RepositoryImportEvent": - ... + ) -> "RepositoryImportEvent": ... @overload @staticmethod def parse_obj( name: Literal["repository_ruleset"], payload: Dict[str, Any] - ) -> "RepositoryRulesetEvent": - ... + ) -> "RepositoryRulesetEvent": ... @overload @staticmethod def parse_obj( name: Literal["repository_vulnerability_alert"], payload: Dict[str, Any] - ) -> "RepositoryVulnerabilityAlertEvent": - ... + ) -> "RepositoryVulnerabilityAlertEvent": ... @overload @staticmethod def parse_obj( name: Literal["secret_scanning_alert"], payload: Dict[str, Any] - ) -> "SecretScanningAlertEvent": - ... + ) -> "SecretScanningAlertEvent": ... @overload @staticmethod def parse_obj( name: Literal["secret_scanning_alert_location"], payload: Dict[str, Any] - ) -> "SecretScanningAlertLocationEvent": - ... + ) -> "SecretScanningAlertLocationEvent": ... @overload @staticmethod def parse_obj( name: Literal["security_advisory"], payload: Dict[str, Any] - ) -> "SecurityAdvisoryEvent": - ... + ) -> "SecurityAdvisoryEvent": ... @overload @staticmethod def parse_obj( name: Literal["security_and_analysis"], payload: Dict[str, Any] - ) -> "SecurityAndAnalysisEvent": - ... + ) -> "SecurityAndAnalysisEvent": ... @overload @staticmethod def parse_obj( name: Literal["sponsorship"], payload: Dict[str, Any] - ) -> "SponsorshipEvent": - ... + ) -> "SponsorshipEvent": ... @overload @staticmethod - def parse_obj(name: Literal["star"], payload: Dict[str, Any]) -> "StarEvent": - ... + def parse_obj(name: Literal["star"], payload: Dict[str, Any]) -> "StarEvent": ... @overload @staticmethod - def parse_obj(name: Literal["status"], payload: Dict[str, Any]) -> "StatusEvent": - ... + def parse_obj( + name: Literal["status"], payload: Dict[str, Any] + ) -> "StatusEvent": ... @overload @staticmethod - def parse_obj(name: Literal["team_add"], payload: Dict[str, Any]) -> "TeamAddEvent": - ... + def parse_obj( + name: Literal["team_add"], payload: Dict[str, Any] + ) -> "TeamAddEvent": ... @overload @staticmethod - def parse_obj(name: Literal["team"], payload: Dict[str, Any]) -> "TeamEvent": - ... + def parse_obj(name: Literal["team"], payload: Dict[str, Any]) -> "TeamEvent": ... @overload @staticmethod - def parse_obj(name: Literal["watch"], payload: Dict[str, Any]) -> "WatchEvent": - ... + def parse_obj(name: Literal["watch"], payload: Dict[str, Any]) -> "WatchEvent": ... @overload @staticmethod def parse_obj( name: Literal["workflow_dispatch"], payload: Dict[str, Any] - ) -> "WorkflowDispatchEvent": - ... + ) -> "WorkflowDispatchEvent": ... @overload @staticmethod def parse_obj( name: Literal["workflow_job"], payload: Dict[str, Any] - ) -> "WorkflowJobEvent": - ... + ) -> "WorkflowJobEvent": ... @overload @staticmethod def parse_obj( name: Literal["workflow_run"], payload: Dict[str, Any] - ) -> "WorkflowRunEvent": - ... + ) -> "WorkflowRunEvent": ... @overload @staticmethod - def parse_obj(name: EventNameType, payload: Dict[str, Any]) -> "WebhookEvent": - ... + def parse_obj(name: EventNameType, payload: Dict[str, Any]) -> "WebhookEvent": ... @staticmethod def parse_obj(name: EventNameType, payload: Dict[str, Any]) -> "WebhookEvent": diff --git a/githubkit/versions/webhooks.py b/githubkit/versions/webhooks.py index 25932ba64..731c8d701 100644 --- a/githubkit/versions/webhooks.py +++ b/githubkit/versions/webhooks.py @@ -20,8 +20,7 @@ if TYPE_CHECKING: - class _VersionProxy(V20221128WebhookNamespace): - ... + class _VersionProxy(V20221128WebhookNamespace): ... else: _VersionProxy = object @@ -41,18 +40,17 @@ def __getattr__(self, name: str) -> Any: return getattr(namespace, name) @overload - def __call__(self, version: Literal["2022-11-28"]) -> "V20221128WebhookNamespace": - ... + def __call__( + self, version: Literal["2022-11-28"] + ) -> "V20221128WebhookNamespace": ... @overload def __call__( self, version: Literal["ghec-2022-11-28"] - ) -> "GhecV20221128WebhookNamespace": - ... + ) -> "GhecV20221128WebhookNamespace": ... @overload - def __call__(self) -> "V20221128WebhookNamespace": - ... + def __call__(self) -> "V20221128WebhookNamespace": ... def __call__(self, version: VERSION_TYPE = LATEST_VERSION) -> Any: if version in self._cached_namespaces: diff --git a/poetry.lock b/poetry.lock index 262736dff..a1ed7f480 100644 --- a/poetry.lock +++ b/poetry.lock @@ -980,28 +980,28 @@ files = [ [[package]] name = "ruff" -version = "0.2.2" +version = "0.3.3" description = "An extremely fast Python linter and code formatter, written in Rust." optional = false python-versions = ">=3.7" files = [ - {file = "ruff-0.2.2-py3-none-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:0a9efb032855ffb3c21f6405751d5e147b0c6b631e3ca3f6b20f917572b97eb6"}, - {file = "ruff-0.2.2-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:d450b7fbff85913f866a5384d8912710936e2b96da74541c82c1b458472ddb39"}, - {file = "ruff-0.2.2-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ecd46e3106850a5c26aee114e562c329f9a1fbe9e4821b008c4404f64ff9ce73"}, - {file = "ruff-0.2.2-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:5e22676a5b875bd72acd3d11d5fa9075d3a5f53b877fe7b4793e4673499318ba"}, - {file = "ruff-0.2.2-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1695700d1e25a99d28f7a1636d85bafcc5030bba9d0578c0781ba1790dbcf51c"}, - {file = "ruff-0.2.2-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:b0c232af3d0bd8f521806223723456ffebf8e323bd1e4e82b0befb20ba18388e"}, - {file = "ruff-0.2.2-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f63d96494eeec2fc70d909393bcd76c69f35334cdbd9e20d089fb3f0640216ca"}, - {file = "ruff-0.2.2-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6a61ea0ff048e06de273b2e45bd72629f470f5da8f71daf09fe481278b175001"}, - {file = "ruff-0.2.2-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5e1439c8f407e4f356470e54cdecdca1bd5439a0673792dbe34a2b0a551a2fe3"}, - {file = "ruff-0.2.2-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:940de32dc8853eba0f67f7198b3e79bc6ba95c2edbfdfac2144c8235114d6726"}, - {file = "ruff-0.2.2-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:0c126da55c38dd917621552ab430213bdb3273bb10ddb67bc4b761989210eb6e"}, - {file = "ruff-0.2.2-py3-none-musllinux_1_2_i686.whl", hash = "sha256:3b65494f7e4bed2e74110dac1f0d17dc8e1f42faaa784e7c58a98e335ec83d7e"}, - {file = "ruff-0.2.2-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:1ec49be4fe6ddac0503833f3ed8930528e26d1e60ad35c2446da372d16651ce9"}, - {file = "ruff-0.2.2-py3-none-win32.whl", hash = "sha256:d920499b576f6c68295bc04e7b17b6544d9d05f196bb3aac4358792ef6f34325"}, - {file = "ruff-0.2.2-py3-none-win_amd64.whl", hash = "sha256:cc9a91ae137d687f43a44c900e5d95e9617cb37d4c989e462980ba27039d239d"}, - {file = "ruff-0.2.2-py3-none-win_arm64.whl", hash = "sha256:c9d15fc41e6054bfc7200478720570078f0b41c9ae4f010bcc16bd6f4d1aacdd"}, - {file = "ruff-0.2.2.tar.gz", hash = "sha256:e62ed7f36b3068a30ba39193a14274cd706bc486fad521276458022f7bccb31d"}, + {file = "ruff-0.3.3-py3-none-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:973a0e388b7bc2e9148c7f9be8b8c6ae7471b9be37e1cc732f8f44a6f6d7720d"}, + {file = "ruff-0.3.3-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:cfa60d23269d6e2031129b053fdb4e5a7b0637fc6c9c0586737b962b2f834493"}, + {file = "ruff-0.3.3-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1eca7ff7a47043cf6ce5c7f45f603b09121a7cc047447744b029d1b719278eb5"}, + {file = "ruff-0.3.3-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:e7d3f6762217c1da954de24b4a1a70515630d29f71e268ec5000afe81377642d"}, + {file = "ruff-0.3.3-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b24c19e8598916d9c6f5a5437671f55ee93c212a2c4c569605dc3842b6820386"}, + {file = "ruff-0.3.3-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:5a6cbf216b69c7090f0fe4669501a27326c34e119068c1494f35aaf4cc683778"}, + {file = "ruff-0.3.3-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:352e95ead6964974b234e16ba8a66dad102ec7bf8ac064a23f95371d8b198aab"}, + {file = "ruff-0.3.3-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8d6ab88c81c4040a817aa432484e838aaddf8bfd7ca70e4e615482757acb64f8"}, + {file = "ruff-0.3.3-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:79bca3a03a759cc773fca69e0bdeac8abd1c13c31b798d5bb3c9da4a03144a9f"}, + {file = "ruff-0.3.3-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:2700a804d5336bcffe063fd789ca2c7b02b552d2e323a336700abb8ae9e6a3f8"}, + {file = "ruff-0.3.3-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:fd66469f1a18fdb9d32e22b79f486223052ddf057dc56dea0caaf1a47bdfaf4e"}, + {file = "ruff-0.3.3-py3-none-musllinux_1_2_i686.whl", hash = "sha256:45817af234605525cdf6317005923bf532514e1ea3d9270acf61ca2440691376"}, + {file = "ruff-0.3.3-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:0da458989ce0159555ef224d5b7c24d3d2e4bf4c300b85467b08c3261c6bc6a8"}, + {file = "ruff-0.3.3-py3-none-win32.whl", hash = "sha256:f2831ec6a580a97f1ea82ea1eda0401c3cdf512cf2045fa3c85e8ef109e87de0"}, + {file = "ruff-0.3.3-py3-none-win_amd64.whl", hash = "sha256:be90bcae57c24d9f9d023b12d627e958eb55f595428bafcb7fec0791ad25ddfc"}, + {file = "ruff-0.3.3-py3-none-win_arm64.whl", hash = "sha256:0171aab5fecdc54383993389710a3d1227f2da124d76a2784a7098e818f92d61"}, + {file = "ruff-0.3.3.tar.gz", hash = "sha256:38671be06f57a2f8aba957d9f701ea889aa5736be806f18c0cd03d6ff0cbca8d"}, ] [[package]] @@ -1109,4 +1109,4 @@ jwt = ["PyJWT"] [metadata] lock-version = "2.0" python-versions = "^3.8" -content-hash = "76c1443858f9db8ab8dcbf7be3f7900d34b96706c2f5a2170d5937e33967d0d6" +content-hash = "f29c83244bfb1f72ab00ce5ad94c79cf64d099331f5ec62434f0ac9e6141a6e1" diff --git a/scripts/run-codegen.sh b/scripts/run-codegen.sh index c785a1d0d..cb507b0e6 100755 --- a/scripts/run-codegen.sh +++ b/scripts/run-codegen.sh @@ -3,4 +3,4 @@ # cd to the root of the project cd "$(dirname "$0")/.." -python -m codegen && ruff check --fix --exit-zero . && isort . && ruff format . +python -m codegen && ruff check --fix --exit-zero . && ruff format . && isort .