Skip to content

Commit 965c6c9

Browse files
authored
README.md: avoid horizontal scrollbar in code snippet (python#12551)
1 parent 588545f commit 965c6c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Here is a small example to whet your appetite:
6565

6666
```python
6767
number = input("What is your favourite number?")
68-
print("Well, my favourite number is: ", number + 1) # error: Unsupported operand types for + ("str" and "int")
68+
print("It is", number + 1) # error: Unsupported operand types for + ("str" and "int")
6969
```
7070

7171
See [the documentation](https://mypy.readthedocs.io/en/stable/introduction.html) for more examples.

0 commit comments

Comments
 (0)