Skip to content

Commit 662f6c0

Browse files
authored
Merge pull request #34 from Cito/fix_parens
Add missing right parenthesis
2 parents 7055fdd + 77a2ccd commit 662f6c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

en/tutorials/1.0/plotter.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ import random
5656
while True:
5757
# Just keep emitting three random numbers in a Python tuple.
5858
time.sleep(0.05)
59-
print((random.randint(0, 100), random.randint(-100, 0), random.randint(-50, 50))
59+
print((random.randint(0, 100), random.randint(-100, 0), random.randint(-50, 50)))
6060
```
6161

6262
To be clear, the following is **good data**:

0 commit comments

Comments
 (0)