Skip to content

Commit 1547ba4

Browse files
committed
Fix return type annotation
1 parent 49dc424 commit 1547ba4

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

keynote.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -846,8 +846,10 @@ Including a `/` in the function definition requires that the arguments preceding
846846
</div>
847847

848848
<pre>
849-
<code data-trim class="language-python hide-line-numbers" data-line-numbers="1-16|14-15|3-12|13" data-fragment-index="0">
850-
def _extract_star_args(arguments: ast.arguments) -> list[dict]:
849+
<code data-trim class="language-python hide-line-numbers" data-line-numbers="1-18|16-17|5-14|15" data-fragment-index="0">
850+
def _extract_star_args(
851+
arguments: ast.arguments
852+
) -> list[dict | None]:
851853
return [
852854
{
853855
'name': (

0 commit comments

Comments
 (0)