Manuel Martinez
Manuel Martinez
Gotcha. Edit: I see @hauntsaninja submitted a PR to set `n 4` But beyond that, how can we get away from running the CLI as a sub process and still...
Ran into the same issue.
How about ruff?
Guessing there is not built-in way of doing this?
Maybe unrelated, but I'm having trouble decorating an instance method, for example: ```python class MyClass: @event_source(MyDataClass) def handle(self, event: MyDataClass, context: LambdaContext) -> None: return self._handle_inner(event, context) def _handle_inner(self, event:...
> oh hey @manmartgarc that's because the decorator doesn't support class methods, only functions. > > The error **but 3 were given** is because the `self` argument of the class...
hey @heitorlessa, was there a conscious decision to not support class methods? I think we can make the typing work to support both; can I work on this feature?
> We had the same issue. I contacted AWS support, and they were able to tell us that we had an existing event notification in the bucket for which the...
bump, need this!