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 bc94ab3 commit 89f97ccCopy full SHA for 89f97cc
typed_python/types_test.py
@@ -3269,6 +3269,8 @@ def test_docstrings_all_types(self):
3269
max_line_len = 80
3270
if a in ['__index__']: # Ignore some builtin docstrings with overlong lines.
3271
continue
3272
+ if not hasattr(m, '__typed_python_category__'):
3273
+ continue
3274
for l in docstring.splitlines():
3275
if len(l) > max_line_len:
3276
print(f"docstring line too long {len(l)} > {max_line_len} for '{T}.{a}':\n{l}")
0 commit comments