About 50 results
Open links in new tab
  1. python - How to set extra index with credentials for uv like pip ...

    Nov 4, 2025 · Similar to this question, we want to specify an extra package index to be used by uv. However, our package index url contains private information, i.e., user name and token. Up to now, …

  2. Pydantic validations for extra fields that not defined in schema

    Apr 12, 2022 · Pydantic v2 You can use the extra field in the model_config class attribute to forbid extra attributes during model initialisation (by default, additional attributes will be ignored). For example:

  3. VSCode adds unwanted extra spaces on enter - Stack Overflow

    Feb 25, 2025 · This causes the extra spaces you observed. Personally, I think the current behavior makes sense: the editor is configured to keep the indentation level of the previous line, and the …

  4. python - FastAPI and Pydantic - ignore but warn when extra elements …

    Feb 29, 2024 · Accept States that have extra elements but ignoring the extra elements (this means using State to remove extra args) Log a warning when extra elements are detected so that I can …

  5. Why does my image inside a div have extra space below it?

    Why in the following code the height of the div is bigger than the height of the img ? There is a gap below the image, but it doesn't seems to be a padding/margin. What is the gap or extra space ...

  6. Why does a pull request show extra commits after a rebase?

    Jan 31, 2020 · So I started with a pull request that was a few commits ahead of develop, let's call this branch feature. feature had 1 merge conflict with develop. So I decided to rebase it and resolve the …

  7. How can I avoid an extra blank page at the end while printing?

    0 The extra page problem in my case was caused by table element on the page. I tried many of the solutions offered here, but to solve the problem I had to change the table CSS content to:

  8. Faster way to remove 'extra' spaces (more than 1) from a large range of ...

    May 2, 2017 · How do I remove extra spaces faster, from a large range of cells containing text strings? Let's say 5000+ cells. Some ways I have tried include: For Each c In range c.Value = Trim(c.Value) N...

  9. Python json.loads shows ValueError: Extra data - Stack Overflow

    Jan 11, 2014 · raise ValueError(errmsg("Extra data", s, end, len(s))) ValueError: Extra data: line 2 column 1 - line 10 column 1 (char 261900 - 6964758) PS. I use the word record, but that's not the …

  10. Using --add-host or extra_hosts with docker-compose

    Mar 16, 2015 · I am using docker-compose to run a test environment, that consists of about 5 different containers. The inter-container links and the shared volumes (volumes-from) works wonderfully. I …