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 4cd849b commit e7d0753Copy full SHA for e7d0753
sphinxcontrib/jsonschema.py
@@ -164,12 +164,12 @@ def table(self, schema):
164
for prop in schema:
165
path = prop.name.split('/')
166
if self.include:
167
- if any(map(lambda x: x == path[:len(x)], self.include)):
+ if any(map(lambda x: x == path[:len(x)], self.include)):
168
if path in self.include:
169
self.include_used.add(tuple(path))
170
else:
171
continue
172
- if any(map(lambda x: x == path[:len(x)], self.collapse)):
+ if any(map(lambda x: x == path[:len(x)], self.collapse)):
173
if path in self.collapse:
174
self.collapse_used.add(tuple(path))
175
0 commit comments