We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28b3a78 commit 89692c8Copy full SHA for 89692c8
pyghthouse/ph.py
@@ -94,9 +94,9 @@ class Pyghthouse:
94
The following example creates a Pyghthouse and sets the 10th window of the 11th floor to orange.
95
>>> from pyghthouse import Pyghthouse
96
>>> p = Pyghthouse("YourUsername", "YourToken")
97
- >>> p.start() # npt necessary to set image, but necessary for sending.
+ >>> p.start() # not necessary to set image, but necessary for sending.
98
>>> img = Pyghthouse.empty_image()
99
- >>> img[3, 9] = [255, 127, 0]
+ >>> img[3][9] = [255, 127, 0]
100
>>> p.set_image(img)
101
102
Full Example
0 commit comments