Jonas Drotleff
Jonas Drotleff
I assume you only implemented a getter for your property as defined in your example. Personally, I just use a simple Marshmallow field with `dump_only=True`: ```python from marshmallow_sqlalchemy.fields import Nested...
Hi @luuktimmermans! Does the issue only occur with this application (the menu bar app) or also with the official clients? Note that this application is not associated with the Bitwarden...
I guess you are talking about the corners in particular? I noticed this as well. But to be honest, I have no idea how to solve this. I just use...
Sure! I will try to port the newest version of the browser extension soon. Currently working on my Bachelor's thesis so won't have much time to work on this. But...
I worked on this for a few days now and I am afraid I have to conclude that this will not be possible. Starting from version 1.49.0 with commit [bitwarden/browser...
I don't have any problems accessing `https://api.github.com/repos/chipsalliance/verible/releases/latest` without an authorization header specified. You can check yourself by just pasting the URL in your browser, or running ```shell curl -fsSL https://api.github.com/repos/chipsalliance/verible/releases/latest...
If I'm not mistaken, by merging chipsalliance/verible-actions-common#7 this issue (and chipsalliance/verible-formatter-action#17) should now be resolved. I checked other places where the GitHub token is used and - to my understanding...
I think the Stack Overflow thread that you linked sums it up perfectly: When using `partial(pdf, data_x=x_axis, data_y=ref_hist)`, you turn `data_x` and `data_y` into keyword arguments. This means that the...