• @[email protected]
      link
      fedilink
      1023 hours ago
      class MyClass:
          def __init__(self, x: int):
              self.whatever: int = x
      
      def foo(x: MyClass) -> int:
          return x.whatevr
      

      Any decent IDE would give you an error for unresolved attribute. Likewise it would warn you of type error if the type of x.whatever didn’t match the return type of foo()

      • @[email protected]
        link
        fedilink
        315 hours ago

        Yes because you used static type annotations. This thread was about code that doesn’t use static types (or static type annotations/hints).

      • @calcopiritus
        link
        116 hours ago

        Python doesn’t check the types of function headers though. They’re only hints for the programmer.

        • @[email protected]
          link
          fedilink
          115 hours ago

          OP suggested that linters for python won’t catch attribute errors, which they 100% will if you use type hints, as you should.

          What happens at runtime is really relevant in this case.

            • @[email protected]
              link
              fedilink
              1
              edit-2
              22 minutes ago

              I don’t want to get into an Internet argument over pedantry. Linter is often used as a catch-all term for static analysis tools.

              Wikipedia defines it as

              Lint is the computer science term for a static code analysis tool used to flag programming errors, bugs, stylistic errors and suspicious constructs.

              Catching type errors and attribute errors would fit under this description, if you use a different, more precise definition at your workplace, cool, then we just have different definitions for it. The point is that your IDE should automatically detect the errors regardless of what you call it.

      • @[email protected]
        link
        fedilink
        English
        523 hours ago

        You’re both right. It’s possible to write code that gets linted well in Python, yes, but you’re often not working with just your code. If a library doesn’t use typing properly, not a lot to be done without a ton more effort.

    • @[email protected]
      link
      fedilink
      71 day ago

      It’s python, just use type hinting already and your linter will catch that.

      Also some winters can look at the use of food and see the type being passed in.

      • Ephera
        link
        fedilink
        141 day ago

        Autocorrect got you pretty bad, there.

        I was very confused, why we’re suddenly talking about rationing food during winter. 🙃

      • @[email protected]
        link
        fedilink
        61 day ago

        Yes you can use static type hinting and the static type checker (Mypy or Pyright) will catch that. Linters (Pylint) won’t.

    • @ripcord
      link
      01 day ago

      Not with an example that simple and poor, no.

      If you have done the minimum and at least set a type hint, or if your ide is smart enough to check what calls the function and what it passes, then it’ll be flagged.

    • @BrianTheeBiscuiteer
      link
      -31 day ago

      Always love seeing the trope:

      *writes awful code*

      See! This is why this language sucks!

      • @calcopiritus
        link
        3
        edit-2
        2 hours ago

        This is literally a getter function. How is a getter awful code? It’s the simplest function there is. The only function simpler than that is returning the input itself.

        • @BrianTheeBiscuiteer
          link
          06 hours ago

          How does “foo” mean “get”? Half the battle of writing correct code is writing code that’s easy to interpret. Do you always look at the guts of every function you’re about to use?

          • @calcopiritus
            link
            22 hours ago

            It’s a one line function in an example. It’s a getter.

      • Ephera
        link
        fedilink
        41 day ago

        How would you make it non-awful, without specifying static types?

        I guess, a unit test would catch it, but needing 100% test coverage to catch typos isn’t exactly great…

      • @[email protected]
        link
        fedilink
        31 day ago

        What’s awful about this example? The only thing I do is access an object member. Does your code not do that??

        • @BrianTheeBiscuiteer
          link
          0
          edit-2
          1 day ago

          What’s the purpose of foo? Why an ambiguous single character variable? What if the property was there but the value was null? Why not use (assuming JS) optional chaining?

          I’d approach it more like this:

          function getWhatevrProp(userData) (
            const default = { whatevr: "n/a" };
          
            return { ...default, ...userData }.whatevr;
          }
          

          Sorry, read too fast the first time. It’s more likely Python. I also don’t know Python well enough to give recommendations on that.

          • @calcopiritus
            link
            316 hours ago

            Lmao, and they say dynamic typing is supposed to speed up the developer.

          • @[email protected]
            link
            fedilink
            31 day ago

            It’s an example to demonstrate that linters cannot reliably detect variable name typos - you need static types. None of the stuff you mentioned is relevant.

            The typo in your example is also undetectable by linters. I think you’re missing the point.