John Vandenberg has uploaded a new change for review. https://gerrit.wikimedia.org/r/244751
Change subject: Ignore pep257 D105 ...................................................................... Ignore pep257 D105 D105 reports missing docstrings in 'magic' methods, such as __str__ and __repr__. These methods have a well defined interface that is documented by Python itself. At times it is useful to augment the standard documentation with a custom docstring, but often it is not necessary. Change-Id: I5a5f5f5dafff3b175da28023f8ec4b03d901fff6 --- M tox.ini 1 file changed, 1 insertion(+), 1 deletion(-) git pull ssh://gerrit.wikimedia.org:29418/pywikibot/core refs/changes/51/244751/1 diff --git a/tox.ini b/tox.ini index 59ef274..08ac184 100644 --- a/tox.ini +++ b/tox.ini @@ -251,4 +251,4 @@ max_line_length = 130 [pep257] -ignore = D211 +ignore = D105,D211 -- To view, visit https://gerrit.wikimedia.org/r/244751 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I5a5f5f5dafff3b175da28023f8ec4b03d901fff6 Gerrit-PatchSet: 1 Gerrit-Project: pywikibot/core Gerrit-Branch: master Gerrit-Owner: John Vandenberg <[email protected]> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
