Joe Mann

Results 2 issues of Joe Mann

It appears that functions (and by extension, lambdas) don't have access to things outside their scope, example: ``` def foobar(): pass foobar() (lambda: foobar())() ``` Fails with: ``` 2021-09-17 19:05:11...

The Django CharField (for better or worse) supports numbers, which it will then coerce into a string before saving. If you switch from CharField to PhonenumberField on a given model,...