Skip to content

Commit

Permalink
Fix missing quotes in sample python snippet (#7487)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmolinski authored and msullivan committed Sep 9, 2019
1 parent 37e5be1 commit 9f1b8e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/source/type_inference_and_annotations.rst
Expand Up @@ -160,7 +160,7 @@ in the following statement:
.. code-block:: python
def foo(arg: List[int]) -> None:
print(Items: ', '.join(arg))
print('Items:', ', '.join(arg))
a = [] # Error: Need type annotation for 'a'
foo(a)
Expand Down

0 comments on commit 9f1b8e9

Please sign in to comment.