Tomas R.
Tomas R.
For your second point, we have `session_language` which seems to work nicely with `get_template_module`. I'm curious what we should do when there are multiple recipients, each with a potentially different...
If the function invocation is delayed (for whatever reason) you'd get an unexpected behaviour. For example: ```python foo = 0 fns = [] for _ in range(10): foo = foo...
Hi, the difference is that in the first example you reference the loop variable inside a lambda which could in theory lead to issues (not in your case though since...
Yes it should ideally not be raised in this case, but distinguishing the false positives from true positives is not that straightforward (see the linked issue for more details)
Just to give an update, I started working on converting the timeteable generation to weasyprint a while ago and I have a working POC. I'm hoping to get it PR-ready...
I ran into the same issue and just wanted to give an example using the [official docs](https://dexie.org/docs/Typescript): ```ts class MyAppDatabase extends Dexie { contacts!: Dexie.Table; // number = type of...
Thanks for the explanation, the `EntityTable` looks like exactly what I'm after! Any idea when we can expect a (non-alpha) release of v4?
I'm getting this error in my console:  Most likely because of the `_.uniq` which only does shallow comparison
I wonder if there's a way to avoid the logic around `loadedFilters` and just initialize the state (`filters`, `searchText`) directly without the extra `useEffect` but I suppose not since we'll...
> Looks promising, if ready I can also try to review it in detail. Hi! Yes, definitely feel free to give it a try :) It should be more or...