Moritz Marseu
Moritz Marseu
I believe this might be the issue I'm seeing, too, though I'm following a slightly different path. My content model is the same, only I'm not adding a second copy...
@gu-stav The restaurant example was only for illustration. My real use case is a different one. I was evaluating strapi to use as a backend for a product information site...
> Hi @mmarseu, thanks for the suggestion. We think it makes sense to include full license text or license snippets where available, as an opt-in configuration. We've got some more...
> In the event a minor modification to an existing BOM needs to be made. This use case was documented in section 3.2 of the [NTIA SBOM Framing Document](https://www.ntia.gov/sites/default/files/publications/ntia_sbom_framing_2nd_edition_20211021_0.pdf), which...
It's always great to see progress but unfortunately no. In my case, I really need to set custom headers for the image request.
> Diff from [mypy_primer](https://github.com/hauntsaninja/mypy_primer), showing the effect of this PR on open source code: > > ```diff > schemathesis (https://github.com/schemathesis/schemathesis) > + src/schemathesis/specs/openapi/schemas.py: note: In member "validator_cls" of class "BaseOpenAPISchema":...
To add some context, the `License-File` field as well as the similar `License-Expression` field are part of [PEP-639](https://peps.python.org/pep-0639) which is currently still in draft status.
@Joerki I believe that problem is beyond the scope of my issue but very much in scope of #656. Is has been suggested there to use https://github.com/google/licenseclassifier which attempts to...
I'm having the same issue. From examination of the requests being sent, I believe it might be linked to this issue: https://github.com/SharePoint/sp-dev-docs/issues/4831#issuecomment-547339578 Using `execute_query()`, the request assigns the correct list...
Here's a workaround I found which seems to work fine: ```python # Fetch the ListItemEntityTypeFullName from SharePoint my_list = client.lists.get_by_id("xxx").select(["ListItemEntityTypeFullName"]).get().execute_query() item = my_list.add_item(...) # Override the entity type name of...