• Johanno@feddit.de
    link
    fedilink
    arrow-up
    7
    ·
    4 months ago

    Python was typeless. And it was common to reuse variables with different types of content.

    So you at some point never knew what actually is within the variable you are using.

    Using typing in python solve 95% of your problems of having runtime errors instead of compile errors

    • Whelks_chance@lemmy.world
      link
      fedilink
      arrow-up
      2
      ·
      4 months ago

      Agreed. Mypy pre-commit hooks are very useful if you’re starting a fresh project. Adding typing to an existing project which reuses variables with different types… We lost weeks to it.