James Priebe

Results 6 issues of James Priebe

**Is your feature request related to a problem? Please describe.** It should be possible to write tests for skills with persistent state (in particular, a database) in a dedicated test...

enhancement

Python Version: 3.7.2 Stripe Lib Version: 2.41.0 Calling `auto_paging_iter()` reverses the order of the list resource: ```python In [1]: import stripe In [2]: params = { ...: 'ending_before': 'evt_xxxx', ...:...

Hello, I have a few large `SerializerMethodFields` on my serializer, which return iterables that are not a FK to my model. Something like this: ``` Class FooSerializer(FlexFieldsModelSerializer): things = SerializerMethodField()...

Small additional check to separate 403s from generic `FCMServerError`. Also updates the `notify` docstring in line with the changes to `parse_response` in 2.x

Hello, `FCMNotification(BaseAPI)` allows you to supply either a `service_account_file` to load credentials from, or an already-loaded `credentials` argument. However because `service_account_file` is positional, you must supply a falsey value to...

See [related issue](https://github.com/olucurious/PyFCM/issues/357) Tighten up the interface by accepting `Credentials` directly without the need to pass in falsey values for `project_id` and `service_account_file`. Additionally some minor cleanup to BaseAPI: -...