diff options
-rw-r--r-- | gsxws/repairs.py | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/gsxws/repairs.py b/gsxws/repairs.py index 0ad2d56..0d877a1 100644 --- a/gsxws/repairs.py +++ b/gsxws/repairs.py @@ -24,23 +24,23 @@ REPAIR_STATUSES = ( ) COVERAGE_STATUSES = ( - 'CC', 'Custom Bid Contracts', - 'CS', 'Customer Satisfaction', - 'DO', 'DOA Coverage', - 'LI', 'Apple Limited Warranty', - 'MU', 'Missing Upon First Use', - 'OO', 'Out of Warranty (no coverage)', - 'PA', 'AppleCare Parts Agreement', - 'PP', 'AppleCare Protection Plan', - 'QP', 'Quality Program', - 'RA', 'AppleCare Repair Agreement', - 'RE', 'Repeat Service', - 'G9', 'Pending Coverage Check', - 'TC', 'Edu/Govt Warranty (Australia)', - 'PT', 'Additional Part Coverage', - 'EC', 'Additional Service Coverage', - 'C1', 'NEW - AppleCare Protection Plan', - 'VW', 'Consumer Law Coverage', + ('CC', 'Custom Bid Contracts'), + ('CS', 'Customer Satisfaction'), + ('DO', 'DOA Coverage'), + ('LI', 'Apple Limited Warranty'), + ('MU', 'Missing Upon First Use'), + ('OO', 'Out of Warranty (no coverage)'), + ('PA', 'AppleCare Parts Agreement'), + ('PP', 'AppleCare Protection Plan'), + ('QP', 'Quality Program'), + ('RA', 'AppleCare Repair Agreement'), + ('RE', 'Repeat Service'), + ('G9', 'Pending Coverage Check'), + ('TC', 'Edu/Govt Warranty (Australia)'), + ('PT', 'Additional Part Coverage'), + ('EC', 'Additional Service Coverage'), + ('C1', 'NEW - AppleCare Protection Plan'), + ('VW', 'Consumer Law Coverage'), ) |