Remove unused method

We use `.get_free_sms_fragment_limit_for_year()` instead, which
functionally is the same thing (has a default argument of `year=None`).
This commit is contained in:
Chris Hill-Scott
2019-04-24 12:13:28 +01:00
parent 4ba1015c64
commit f726551714
2 changed files with 0 additions and 13 deletions

View File

@@ -22,10 +22,6 @@ class BillingAPIClient(NotifyAdminAPIClient):
)
return result['free_sms_fragment_limit']
def get_free_sms_fragment_limit_for_all_years(self, service_id, year=None):
return self.get(
'/service/{0}/billing/free-sms-fragment-limit'.format(service_id))
def create_or_update_free_sms_fragment_limit(self, service_id, free_sms_fragment_limit, year=None):
# year = None will update current and future year in the API
data = {