You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
deffoo():
""" a nice docstring """blub=blub()
@implementer(ISomePublicInterface)classBar(object):
defbaz(self):
returnblubreturnBar()
I should not need to write a docstring for Bar.baz; it's just tedious makework. Our coding standard definitely doesn't require docstrings for callbacks, and methods on inner classes are in the same category of thing.
The text was updated successfully, but these errors were encountered:
If I do this:
I should not need to write a docstring for
Bar.baz; it's just tedious makework. Our coding standard definitely doesn't require docstrings for callbacks, and methods on inner classes are in the same category of thing.The text was updated successfully, but these errors were encountered: