## The problem

Calling get_next() on a subscription list raised TypeError: __init__() missing 1 required positional argument: customer. A maintainer explained the root cause: subscriptions are nested CustomerSubscription objects, and the generic ObjectList pagination path rebuilt the next page without the parent Customer context needed to construct the resource. A working proof of concept landed in PR 323, and the maintainer confirmed the issue was resolved in release 3.6.0.

## The fix

If subscriptions.get_next() throws TypeError: __init__() missing 1 required positional argument: 'customer', you are on a version with the nested pagination bug: the next page rebuilds the resource without the parent Customer context. Upgrade mollie-api-python to 3.6.0 or later, where this was fixed (PR 323 reworked the resource path handling so the parent context is no longer needed). The maintainer confirmed the fix in the 3.6.0 release. Note this bug class affected all nested list resources (refunds, chargebacks, captures, shipments, mandates), so if you paginate any of those, the same upgrade applies.