Alexey Levchuk
Alexey Levchuk
``` class SomeViewSet(mixins.ListModelMixin, GenericViewSet): queryset = SomeModel.objects.all() filter_backends = (filters.OrderingFilter,) ordering_fields = ("field1", "field2") @extend_schema( parameters=[ OpenApiParameter( name="ordering", description=f'Supports sorting by {" ".join(str(x) for x in ordering_fields)}. Use - to...
Very similar to this https://github.com/pytest-dev/pytest-django/issues/824 Here is project example https://github.com/Headmaster11/celery_pytest When try to launch pytest with celery_worker fixture, got such error ``` self = name = None def _cursor(self, name=None):...
https://github.com/nameko/nameko/blob/master/nameko/rpc.py#L201 https://github.com/nameko/nameko/blob/master/nameko/rpc.py#L219 Don't you think, that here should be check for the key? It doesn't look good, when getting **key error** instead of some valid exception
* django-cookies-samesite version: 0.5.1 * Django version: 1.11 * Python version: 3.6 * Operating System: macos ### Description Trying to install django-cookies-samesite==0.5.1 ### What I Did ``` pip install django-cookies-samesite==0.5.1...