79595760

Date: 2025-04-28 03:41:40
Score: 0.5
Natty:
Report link

Since you use classname on initialization, you can just change __init__ into a classmethod like this:

class base:
    @classmethod
    def __init__(cls, *args):
        print("initializing")

But I don't think it a reasonable usage.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: vassiliev