altdesktop / i3ipc-python

🐍 An improved Python library to control i3wm and sway.
http://i3ipc-python.readthedocs.io
BSD 3-Clause "New" or "Revised" License
851 stars 109 forks source link

TypeError on the `workspace_renumber.py` example script. #138

Closed beniTrainor closed 4 years ago

beniTrainor commented 4 years ago

I tried running the workspace_renumber.py script and got the following error:

TypeError: 'WorkspaceReply' object is not subscriptable

I fixed it by changing the references to the WorkspaceReply object: x['num'] => x.num and i['num'] => i.num