Uncommented Classes increase costs
bad :
class CustomException
(Exception)
:
def __init__
(self, msg, code)
:
self.msg = msg
self.code = code
good:
class CustomException
(Exception)
:
"""Raise when some custom event did not occur."""
def __init__
(self, msg, code)
:
self.msg = msg
self.code = code
Why you should care
Docstrings help you remember the intention of a class. This is especially important as your codebase grows and it becomes harder to remember the implementation details of each object. Other developers will also have it easier to understand your code.
Business Impacts
It is recommended to avoid these in order to ensure the code is more readable and cost effective.
CAST recommendations
References
https://www.quantifiedcode.com/knowledge-base/maintainability/Consider%20documenting%20your%20class%28es%29/5ZdRTEsh
About CAST and Highlight’s Code Insights
Over the last 25 years, CAST has leveraged unique knowledge on software quality measurement by analyzing thousands of applications and billions of lines of code. Based on this experience and community standards on programming best practices, Highlight implements hundreds of code insights across 15+ technologies to calculate health factors of a software.