Python - use all uppercase for constants


Python Clean Code Tip:

Use upper case names for constants

👇

from typing import Final

MAX_NUMBER_OF_RETRIES: Final = 666


class Driver:
    MAX_HEIGHT: Final = 190