Unable to print out the optimizer: ```py optimizer = Ranger21(model.parameters(), 1000) print(optimizer) ``` ```sh print(optimizer) TypeError: 'str' object is not callable ``` I believe it is due to the `@property` decorator at https://github.com/kozistr/pytorch_optimizer/blob/edee3720fd7e5f396dd1ab74952762802b8f47ec/pytorch_optimizer/optimizer/ranger21.py#L132. The `__str__` dunder is supposed to be a function rather than a property.