Simon

Results 6 comments of Simon

For users that might want to use the plugin in the future, it's quite easy to fix it. You just need to replace the `plantuml.jar` provided in the repo by...

Hello everyone. I stumbled upon this issue myself, and found the following workaround (snippet from my codebase): ```python db = SQLAlchemy() db.Model.registry.update_type_annotation_map( { datetime: sa.DateTime(timezone=True), dict[str, Any]: JSONB().with_variant(sa.JSON, "sqlite"), uuid.UUID:...

If I understand correctly - We have 2 new variants `Type::Truthy` and `Type::Falsy` - They only make sense in intersections (?) - `A & Truthy` -> subset of instances of...

So, I started working on this. I have the following question: when expressing `X` is `Truthy`, do we go through the `positive` or the `negative` part of intersection? Let's take...

I have addressed the comments and ensured that `nox` runs successfully locally!

> I think, we should pass `typer.Context` to **dishka** context as well to provide users with an ability use CLI options and flags in factories. > > Just smth like...