Skip to content

Commit

Permalink
fix: order of class inheritance for Client
Browse files Browse the repository at this point in the history
  • Loading branch information
angela-tran committed Feb 6, 2024
1 parent 0088fe1 commit c71ccf0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion littlepay/api/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def _json_post_credentials(client, method, uri, headers, body) -> tuple:
return uri, headers, json_data


class Client(CardTokenizationMixin, ProductsMixin, GroupsMixin, FundingSourcesMixin, ClientProtocol):
class Client(FundingSourcesMixin, CardTokenizationMixin, ProductsMixin, GroupsMixin, ClientProtocol):
"""Represents an API connection to an environment."""

from_active_config = staticmethod(_client_from_active_config)
Expand Down

0 comments on commit c71ccf0

Please sign in to comment.