summaryrefslogtreecommitdiffstats
path: root/yt/python
diff options
context:
space:
mode:
authorrobot-piglet <[email protected]>2024-07-12 12:25:51 +0300
committerrobot-piglet <[email protected]>2024-07-12 12:36:25 +0300
commite2cd55ed29090e1b5eb657dd0ea39166329ad5ea (patch)
tree2faa7a162bb6ac7f5407587bf34807f439951acd /yt/python
parentcb140f96a0af418170e6ad7e60cb6752cf209ea8 (diff)
Intermediate changes
Diffstat (limited to 'yt/python')
-rw-r--r--yt/python/yt/yson/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/yt/python/yt/yson/__init__.py b/yt/python/yt/yson/__init__.py
index c20ae5ea52b..e9a303b4f89 100644
--- a/yt/python/yt/yson/__init__.py
+++ b/yt/python/yt/yson/__init__.py
@@ -22,7 +22,7 @@ Examples:
>>> yson.dumps(True)
'"true"'
->>> number = yson.YsonInteger(10)
+>>> number = yson.YsonInt64(10)
>>> number.attributes["my_attr"] = "hello"
>>> yson.dumps(number)
'<"attr"="hello">10'