BadPython.com
Submit Bad Python
Suggestion for
"Class that can just be a module"
Classes are designed to encapsulate and modify state. This is a collection of functions.
def combine(x, y): pass def swap(x, y): pass def my_op(value): return value + 1
Next Suggestion:
Replace class with module