jenkins-bot has submitted this change and it was merged.

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, 2 insertions(+), 2 deletions(-)

Approvals:
  Mpaa: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/tox.ini b/tox.ini
index 59ef274..339afde 100644
--- a/tox.ini
+++ b/tox.ini
@@ -239,7 +239,7 @@
     -rdocs/requirements-py3.txt
 
 [flake8]
-ignore = 
E241,E402,E731,D211,FI10,FI12,FI13,FI15,FI5,H101,H201,H202,H236,H237,H301,H306,H404,H405,H501,P102,P103
+ignore = 
E241,E402,E731,D105,D211,FI10,FI12,FI13,FI15,FI5,H101,H201,H202,H236,H237,H301,H306,H404,H405,H501,P102,P103
 exclude = 
.tox,.git,./*.egg,ez_setup.py,build,externals,user-config.py,./scripts/i18n/*
 max_line_length = 130
 accept-encodings = utf-8
@@ -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: merged
Gerrit-Change-Id: I5a5f5f5dafff3b175da28023f8ec4b03d901fff6
Gerrit-PatchSet: 2
Gerrit-Project: pywikibot/core
Gerrit-Branch: master
Gerrit-Owner: John Vandenberg <[email protected]>
Gerrit-Reviewer: John Vandenberg <[email protected]>
Gerrit-Reviewer: Ladsgroup <[email protected]>
Gerrit-Reviewer: Mpaa <[email protected]>
Gerrit-Reviewer: jenkins-bot <>

_______________________________________________
MediaWiki-commits mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits

Reply via email to