Skip to content

Commit 7a835bc

Browse files
author
Yuki Kobayashi
committed
fixup
1 parent d208c58 commit 7a835bc

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

Doc/library/ast.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1775,13 +1775,13 @@ Type annotations
17751775

17761776
>>> print(ast.dump(ast.parse('x = 1 # type: ignore', type_comments=True), indent=4))
17771777
Module(
1778-
body=[
1779-
Assign(
1780-
targets=[
1781-
Name(id='x', ctx=Store())],
1782-
value=Constant(value=1))],
1783-
type_ignores=[
1784-
TypeIgnore(lineno=1, tag='')])
1778+
body=[
1779+
Assign(
1780+
targets=[
1781+
Name(id='x', ctx=Store())],
1782+
value=Constant(value=1))],
1783+
type_ignores=[
1784+
TypeIgnore(lineno=1, tag='')])
17851785

17861786
.. versionadded:: 3.8
17871787

0 commit comments

Comments
 (0)