diff options
author | arcadia-devtools <arcadia-devtools@yandex-team.ru> | 2022-02-12 14:35:15 +0300 |
---|---|---|
committer | arcadia-devtools <arcadia-devtools@yandex-team.ru> | 2022-02-12 14:35:15 +0300 |
commit | 46a8b83899dd321edf511c0483f9c479ce2c1bc4 (patch) | |
tree | e5debc03beecbd10e7d1bf78c889c8d54e8c4523 /contrib/python/prompt-toolkit/py3/prompt_toolkit/data_structures.py | |
parent | b56bbcc9f63bf31991a8aa118555ce0c12875a74 (diff) | |
download | ydb-46a8b83899dd321edf511c0483f9c479ce2c1bc4.tar.gz |
intermediate changes
ref:7c971b97c72bbbcbf889118d39017bd14f99365a
Diffstat (limited to 'contrib/python/prompt-toolkit/py3/prompt_toolkit/data_structures.py')
-rw-r--r-- | contrib/python/prompt-toolkit/py3/prompt_toolkit/data_structures.py | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/contrib/python/prompt-toolkit/py3/prompt_toolkit/data_structures.py b/contrib/python/prompt-toolkit/py3/prompt_toolkit/data_structures.py index 454bb964ec..d031acffd2 100644 --- a/contrib/python/prompt-toolkit/py3/prompt_toolkit/data_structures.py +++ b/contrib/python/prompt-toolkit/py3/prompt_toolkit/data_structures.py @@ -6,5 +6,11 @@ __all__ = [ ] -Point = NamedTuple("Point", [("x", int), ("y", int)]) -Size = NamedTuple("Size", [("rows", int), ("columns", int)]) +class Point(NamedTuple): + x: int + y: int + + +class Size(NamedTuple): + rows: int + columns: int |