Ryan Morshead
Ryan Morshead
Correct.
Pushing docs issues.
As per [this comment](https://github.com/idom-team/idom/discussions/927#discussioncomment-4967746) we should report a more proximal error when in debug mode (for the sake of performance)? If we do this, then it probably makes sense to...
Maybe related to #527
@acivitillo or @tony-maynard, this would greatly reduce the burden of regular maintenance across IDOM's repos.
I'm not quite sure what the best way to go about doing this would be, but my guess is that, each repo should have it's own action for synchronizing with...
I'm not sure exactly how I want to handle it. The repo is set up for it, but maybe we limit it to just things that we want to include...
The challenge here is in figuring out when to warn. Not all usages of `*args` in a component are invalid. For example, ```python @idom.component def Example(): do_something(*args) # ok return...
I get a syntax error: ```python >>> div[*(args)] File "", line 1 div[*(args)] ^ SyntaxError: invalid syntax ```
The following seems to work: ```python >>> class X: ... def __getitem__(self, item): ... return item ... >>> x = X() >>> x[1, 2, 3, 4, 5, 6, 7, 8,...