Ilya Priven
Ilya Priven
I tried to create a type-annotating autofixer which adds `-> None` to all `__init__`s: ```yaml - id: __init__-return-none message: type __init__ methods to return None languages: [ python ] severity:...
In https://semgrep.dev/s/0qqj, you can see that applying the auto-fix will cause line 2 to have 5-space indentation where it previously had 4-space indentation, therefore making it have different indentation that...
Are you suggesting that mypy can handle any cyclic import situation? (I can't find docs on that, but plenty of issues that are still open.) My hunch is to establish...
Cyclic dependency between types can occur even if you don't execute. Looking at mypy issues, there seem to be issues having to do with cyclic imports. Does mypy fare just...
This all makes sense to me. I'll happily review any PRs for the above.
6.0.0: pytest fails in `tests/test_attributes.py::TestMapAttribute::test_complex_map_accessors` unit
Eek, any idea why?
This makes sense to me. I'll also call out (docs should probably mention this too) that pynamodb's create_table etc. are useful for local stacks but any production use should probably...
The semantics of `Model.update` are to update the model in-place and return `None`, which is why we pass `ALL_NEW`. We can think up changes or amendments to the PynamoDB API...
Oh, again...
> Once an activity or workflow task is scheduled its task queue name is fixed. @robzienert's post was about routing when scheduling, not after scheduling (i.e, "moving" queues). Did you...