We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 095d432 commit b992c9fCopy full SHA for b992c9f
setup.py
@@ -191,13 +191,13 @@ def run(self):
191
192
193
graph_objs_packages = [
194
- d for d, *_ in os.walk('plotly/graph_objs')
195
- if not d.endswith('__pycache__')]
+ d[0] for d in os.walk('plotly/graph_objs')
+ if not d[0].endswith('__pycache__')]
196
197
198
validator_packages = [
199
- d for d, *_ in os.walk('plotly/validators')
200
+ d[0] for d in os.walk('plotly/validators')
201
202
203
setup(name='plotly',
0 commit comments