[pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci
This commit is contained in:
pre-commit-ci[bot] 2025-01-25 20:57:12 +00:00
parent 0edb3041d0
commit 5373c5ca5e

View File

@ -49,10 +49,31 @@ class SupportsRead(Protocol[_T_co]):
StrOrBytesPath = Union[str, bytes, os.PathLike[str], os.PathLike[bytes]] StrOrBytesPath = Union[str, bytes, os.PathLike[str], os.PathLike[bytes]]
Anchor = Literal["la", "lt", "lm", "ls", "lb", "ld", Anchor = Literal[
"ma", "mt", "mm", "ms", "mb", "md", "la",
"ra", "rt", "rm", "rs", "rb", "rd", "lt",
"sa", "st", "ms", "ss", "sb", "sd"] "lm",
"ls",
"lb",
"ld",
"ma",
"mt",
"mm",
"ms",
"mb",
"md",
"ra",
"rt",
"rm",
"rs",
"rb",
"rd",
"sa",
"st",
"ss",
"sb",
"sd",
]
Align = Literal["left", "center", "right"] Align = Literal["left", "center", "right"]