Tom Thorogood
Tom Thorogood
@python-poetry/triage I have created a PR (#4291) that appears to resolve this issue. Please let me know if you would like me to iterate on this. cheers.
This happens to me also. I generally use everything in full-screen (zoomed) mode on OSX, and use the three-finger swipe to move between applications. Whenever I swipe past Strongbox, the...
Also suffering from this. It wasn't a problem until i started using `begin_nested()` in my codebase.
So, in `teardown_transaction`, the call to `session.remove()` is leading to SQLAlchemy to call `expunge_all()`, which detaches objects from the session. That's great. Except, `reyhydrate_object` is listening for those detachments, and...
Yes, I was able to fix this issue by updating `teardown_transaction` to look like: ```python @request.addfinalizer def teardown_transaction(): # Delete the session sa.event.remove(session, 'persistent_to_detached', rehydrate_object) sa.event.remove(session, 'deleted_to_detached', rehydrate_object) session.remove() #...
Could this be solved by allowing `from_orm` to accept an `exclude` in the same format as with the `BaseModel.json()` and `BaseModel.dict()` methods? Example, using sqlalchemy orm: ```python class Foo(BaseModel): bar:...
The more I think about it, the less I like myo wn proposal, and agree with @dmontagu that the feature really seems out of scope for pydantic. My intent on...
@mishaDova Thanks so much for creating this pull request. I'm not sure if you're aware that tests are failing because some of the links aren't translated yet. Are you planning...
@BlueButterflies Thank you for the added context. It would be helpful if you could please ensure that this PR has only `it` translations, and #3452 has only `bg` translations. As...
@atymri Thank you for your contribution! It looks like [there is a linter failure](https://github.com/github/opensource.guide/actions/runs/18879721151/job/53879128275?pr=3539#step:6:114). Once you are able to clear that up, we'll be happy to merge this!