Daniel Fainberg
Daniel Fainberg
@nuno-andre I appreciate your suggestion, but I don't think this is a good idea for two reasons: ### 1) [PEP 20](https://peps.python.org/pep-0020/) The only reason I didn't remove the `foreign_key` parameter...
This makes sense. It may need to be rebased with PR #425. If PR #436 is merged, you'll be able to specify the SQL type explicitly whenever you want. Then...
@AlexWaygood I realize that I can define any custom protocol myself. I did not ask for workarounds or usage suggestions here. My contention is that this should not be necessary,...
This is a false dichotomy. "Better" and "more robust" are consequences of correctness first and foremost, among other things of course. Writing less correct code makes it worse and less...
For what it's worth, I just rebased this branch once more on top of the most recent `main` commits, so as to get rid of the merge conflicts. I also...
What you can already do is set up relationships back-and-forth between the `Node` and `Edge` tables, such that 1) every `Node` has a list of all outgoing edges and a...
@juftin Thank you for the quick response. It seems to me (though this is just an educated guess) that it does not even get to the virtual environment. The error...
Those are some interesting insights. I appreciate both of you taking the time to think about this. @ofek I am not familiar enough with the Hatch source yet, but if...
Here is a minimal reproducible example: ```python from pydantic import BaseModel from typing import Generic, TypeVar T = TypeVar("T") class Model(BaseModel, Generic[T]): data: T GenericAlias = Model[T] | None def...
### TL;DR The locale I set in my Nexcloud profile is **the only one** that should be considered **everywhere** in the UI. _Not_ any browser or system locale. --- Maybe...