Charel Felten RQ

Results 6 comments of Charel Felten RQ

somewhat related: https://github.com/pydantic/pydantic-settings/issues/104 At this point, to my understanding, it seems its intended to add the slash. Is it? In that case, I am interested in whats the optimal way...

This problem also becomes apparent in the url builder: ```python from pydantic import AnyHttpUrl as AnyHttpUrl AnyHttpUrl.build( scheme="https", host="google.com", path="/search", ) ``` produces: `Url('https://google.com//search')` Is that the desired outcome? If...

Another weird situation ```python from pydantic import AnyHttpUrl as AnyHttpUrl AnyHttpUrl.build( scheme="https", host="google.com/", path="search", ) ``` `Url('https://google.com//search')`

Thank you for posting this workaround, I am not 100% sure whats going on there, but to my understanding it seems that it creates a type `MyAnyUrl` which is a...

Ok I got it working the way I want with the help of this other issue: https://github.com/json-editor/json-editor/issues/1179 ```json { "type": "array", "items": { "type": "string", "enum": [ "1", "2", "3",...

> This works only with "uniqueItems": true Is `uniqueItems` true one of these options? Cant find it in the list ![image](https://user-images.githubusercontent.com/116723764/214040710-85e52e12-3dbb-474a-a35c-59c4098bf177.png)