Skip to content

Static Methods

Vinicius Reif Biavatti edited this page Jul 25, 2022 · 1 revision
  • Use the @staticmethod decorator

✅ Do

class Person:
    @staticmethod
    def version(type_: int) -> int:
        ...
Clone this wiki locally