Masen Furer

Results 234 comments of Masen Furer

Have you tried changing `--cov=src` to `--cov=backy`? In my experiements, I found that subprocess coverage reporting works better when specifying _source packages_ instead of filesystem paths. In my case, this...

Also, if you're using an `rx.form`, you can pass `reset_on_submit=True`; although this doesn't work for some of the more exotic elements, like a pininput

@psiKb pass `is_default = True` in the Component subclass definition ```python class ReactECharts(pc.Component): library = "echarts-for-react" tag = "ReactECharts" is_default = True option: pc.Var[dict] ```

I created `reflex-echarts`: https://github.com/masenf/reflex-echarts It's a thin wrapper than basically takes the `option` param from echarts and plumbs it through into a reflex component. So you still need to know...

I'm currently working around this issue by overriding `get_custom_code` and emitting the import myself. For example, to wrap `Script`, the default export from `next/script`: ```python class Script(pc.Component): tag = "Script"...

@dapomeranz thanks for helping us clean up some issues ✅

Reflex now has examples such as https://github.com/reflex-dev/reflex-examples/tree/main/local_auth and https://github.com/reflex-dev/reflex-examples/tree/main/google_auth ----------------- There is also an updated guide to wrapping react components that should allow most existing auth components for react to...

a workaround is prefixing each line with the specific factor ```ini [tox] envlist = foo,bar minversion = 4.4.4 [testenv] commands: foo: python -c "\ foo: print('foo')" python -c "print('bar')" ```

Yes thanks for the nudge. I've had a workaround in place at work so we weren't hitting this anymore, but since I have a test case, a true fix in...