Maksim Kurnikov

Results 26 comments of Maksim Kurnikov

+1 from me, intellij-move too constantly hits this issue with names of tests present as substring for another test.

Does this fix https://github.com/diem/move/issues/141 ?

@bobozar In our project we didn't want to create serializer-per-response either, so we've created a decorator on top of `@swagger_auto_schema` decorator, with usage like ``` class SomeAPIView(APIView): @schema( responses={ status.HTTP_200_OK:...

Yes, I understand. But we also validate outcoming response bodies against specified serializers, to make sure docs for responses is correct.

And you also can nest serializers inside those dictionaries ``` responses={ status.HTTP_200_OK: {'dashboard': DashboardModelSerializer()} } ``` I don't think I can mix `openapi.Schema` objects and serializers, can I? UPD. Though...

@simonpercivall Is any progress planned on this issue?

I'm implementing a parser for the configuration file, which will preserve ordering after circle read-write. I need a datastructure to store nodes in order in which they have been parsed....

Yes, it's fine, `fetch` command would be similar to the `cargo fetch` with the same purpose, but it could be separate too, not much of a difference.

Sounds great to me. I had an idea of code preprocessing at the time, some kind of #ifdef from C, transforming pyi files for different versions of Django. But I...

Please, try explicitly annotating settings with a type ``` import environ # set default values and casting env = environ.Env( META_APP_TITLE=(str, 'Password Reset Service'), ) META_APP_TITLE: str = env('META_APP_TITLE') ```...