Steven DeMartini

Results 24 comments of Steven DeMartini

Ah, I see you have [this note](https://github.com/dfunckt/django-rules#skipping-predicates) in the README, which I apparently missed: > You may skip evaluation by returning None from your predicate So I guess this is...

It may be worth at least moving "Skipping predicates" up to the ["Combining predicates"](https://github.com/dfunckt/django-rules#combining-predicates) portion of the doc so it's more discoverable, since it's important in that context (rather than...

Yeah, that could be useful. I also noticed in the "Upgrading from 1.x" section of the docs, it mentions that skipping used to be done with raising a `SkipPredicate` exception....

I'm finding that `extend-select` still does not work when used as in the example https://github.com/PyCQA/flake8-bugbear#how-to-enable-opinionated-warnings ``` [flake8] max-line-length = 80 max-complexity = 12 extend-ignore = E501 extend-select = B950 ```...

Thanks for getting back to me @sco1 (and re-opening cooperlees), and promising that there's an update in flake8 that may fix this! I tried the latest flake8 main with `extend-select`...

@wisefool769 I found this suggested workaround solves the problem for me https://github.com/prc5/react-zoom-pan-pinch/issues/135#issuecomment-683463453

I have this same problem, and I figured out a way to reproduce it vs not. I'm not using Django Channels either, but I noticed that the problem only occurs...

Thanks @tim-schilling! Setting `RENDER_PANELS` to `False` gets the History Panel to render! However, there's a new issue. I'm now seeing that after initial load, if more AJAX requests are made,...

On the latest version of DjDT, I'm seeing that `"RENDER_PANELS": False` now allows the `History` panel to function without errors on an ASGI server, such that I can see AJAX...

@tim-schilling I was using `fetch` for the above AJAX requests.