Skip to content

Commit 695f8f6

Browse files
authored
fix ast indentions to match, so that diff is more clear (#239)
1 parent d2f9fcf commit 695f8f6

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

docs/contributing/ast/python3_10.ast

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ module Python version "3.10"
1010
| FunctionType(expr* argtypes, expr returns)
1111

1212
stmt = FunctionDef(identifier name,
13-
arguments args,
14-
stmt* body,
15-
expr* decorator_list,
16-
expr? returns,
17-
string? type_comment)
13+
arguments args,
14+
stmt* body,
15+
expr* decorator_list,
16+
expr? returns,
17+
string? type_comment)
1818
| AsyncFunctionDef(identifier name,
1919
arguments args,
2020
stmt* body,

docs/contributing/ast/python3_11.ast

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ module Python version "3.11"
1010
| FunctionType(expr* argtypes, expr returns)
1111

1212
stmt = FunctionDef(identifier name,
13-
arguments args,
14-
stmt* body,
15-
expr* decorator_list,
16-
expr? returns,
17-
string? type_comment)
13+
arguments args,
14+
stmt* body,
15+
expr* decorator_list,
16+
expr? returns,
17+
string? type_comment)
1818
| AsyncFunctionDef(identifier name,
1919
arguments args,
2020
stmt* body,

docs/contributing/ast/python3_9.ast

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ module Python version "3.9"
1010
| FunctionType(expr* argtypes, expr returns)
1111

1212
stmt = FunctionDef(identifier name,
13-
arguments args,
14-
stmt* body,
15-
expr* decorator_list,
16-
expr? returns,
17-
string? type_comment)
13+
arguments args,
14+
stmt* body,
15+
expr* decorator_list,
16+
expr? returns,
17+
string? type_comment)
1818
| AsyncFunctionDef(identifier name,
1919
arguments args,
2020
stmt* body,

0 commit comments

Comments
 (0)