We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8598962 + 51b8f02 commit 5d2d02aCopy full SHA for 5d2d02a
MANIFEST.in
@@ -1,2 +1,8 @@
1
include README.rst LICENSE CHANGELOG.md pytest.ini requirements.txt .flake8 .style.yapf
2
+include Makefile
3
+include run-tests.py
4
recursive-include test *.py
5
+include test/i3.config
6
+recursive-include examples *.md
7
+recursive-include examples *.py
8
+recursive-include docs *.rst
examples/i3-cycle-focus.py
@@ -43,7 +43,7 @@ def get_valid_windows(self):
43
ws_list = []
44
w_set = set()
45
for item in self.i3.get_outputs():
46
- ws_list.append(item["current_workspace"])
+ ws_list.append(item.current_workspace)
47
for ws in tree.workspaces():
48
if str(ws.num) in ws_list:
49
for w in ws.leaves():
0 commit comments