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 150d8ab commit ba82c1dCopy full SHA for ba82c1d
docs/make-api-docs.py
@@ -95,6 +95,8 @@ def endpoint_sort_key(rule):
95
96
for rule in sorted(app.url_map.iter_rules(), key=endpoint_sort_key):
97
ep = rule.endpoint
98
+ if ep == 'static':
99
+ continue
100
methods = [m for m in rule.methods if m not in ('OPTIONS', 'HEAD')]
101
if not methods:
102
app.logger.warning(f"Endpoint {ep} has no useful method, skipping!")
0 commit comments