diff options
author | Filipp Lepalaan <filipp@mac.com> | 2015-09-03 15:57:10 +0300 |
---|---|---|
committer | Filipp Lepalaan <filipp@mac.com> | 2015-09-03 15:57:10 +0300 |
commit | 5d911ba781b5515b461a2536590409a7120d7940 (patch) | |
tree | 734649d0f6462ebade39c2e415a214b57e4d04e2 | |
parent | b37b548ff21dc78eb8fff2a736f4acddeff0bda3 (diff) | |
download | py-gsxws-5d911ba781b5515b461a2536590409a7120d7940.tar.gz py-gsxws-5d911ba781b5515b461a2536590409a7120d7940.tar.bz2 py-gsxws-5d911ba781b5515b461a2536590409a7120d7940.zip |
Make statuses a two-tuple
-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'), ) |