Skip to content

Commit 4de0849

Browse files
stainless-app[bot]stainless-bot
authored andcommitted
chore(internal): use TypeAlias marker for type assignments (#71)
1 parent b0ffcf0 commit 4de0849

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22

3-
from typing_extensions import Literal
3+
from typing_extensions import Literal, TypeAlias
44

55
__all__ = ["ResourceSize"]
66

7-
ResourceSize = Literal["MINI", "SMALL", "MEDIUM", "LARGE"]
7+
ResourceSize: TypeAlias = Literal["MINI", "SMALL", "MEDIUM", "LARGE"]

0 commit comments

Comments
 (0)