DK

Results 6 issues of DK

If I use the Neon color scheme (version 3.2.2) and Sublime Text's official Python syntax definition (build 4126), I get dictionary literals highlighted like this: ![Screenshot from 2022-03-23 22-52-24](https://user-images.githubusercontent.com/4944562/159809298-65ddf690-7612-417d-b834-6f963bc5322f.png) This...

bug
enhancement
feedback
status-in-progress

![screenshot from 2014-07-08 21 58 15](https://cloud.githubusercontent.com/assets/4944562/3520020/d6d2a1de-0725-11e4-8113-fcf0abb87916.png) The above expression is valid and working, but, I believe, PI highlights it incorrectly.

This will allow to do things like ``` class BaseModel(model.RedisModel, metaclass=abc.ABCMeta): ``` Without such inheritance or other hacks the above line gives ``` TypeError: metaclass conflict: the metaclass of a...

### Initial Checks - [X] I confirm that I'm using Pydantic V2 ### Description If two separate models with different `use_enum_values` settings both have fields with the same enum, pydantic...

bug V2

`resourceGroupId` in `/presto/selector/read/{resourceGroupId}` is wrongly annotated with `@QueryParam`, when it's actually a path parameter: ``` @GET @Path("/selector/read/{resourceGroupId}") public Response readSelector(@QueryParam("resourceGroupId") String resourceGroupIdStr, ... ``` As a result, `/presto/selector/read/X` returns all...