Merge pull request #35 from UncleLLD/fix-some-detail

Fix some detail
This commit is contained in:
Logan Zou
2023-06-28 15:14:36 +08:00
committed by GitHub
2 changed files with 5 additions and 4 deletions

View File

@ -0,0 +1 @@
{"Billing": ["Unsubscribe or upgrade", "Add a payment method", "Explanation for charge", "Dispute a charge"], "Technical Support": ["General troubleshooting", "Device compatibility", "Software updates"], "Account Management": ["Password reset", "Update personal information", "Close account", "Account security"], "General Inquiry": ["Product information", "Pricing", "Feedback", "Speak to a human"]}

View File

@ -113,21 +113,21 @@ def create_categories():
'Explanation for charge', 'Explanation for charge',
'Dispute a charge'], 'Dispute a charge'],
'Technical Support':[ 'Technical Support':[
'General troubleshooting' 'General troubleshooting',
'Device compatibility', 'Device compatibility',
'Software updates'], 'Software updates'],
'Account Management':[ 'Account Management':[
'Password reset' 'Password reset',
'Update personal information', 'Update personal information',
'Close account', 'Close account',
'Account security'], 'Account security'],
'General Inquiry':[ 'General Inquiry':[
'Product information' 'Product information',
'Pricing', 'Pricing',
'Feedback', 'Feedback',
'Speak to a human'] 'Speak to a human']
} }
with open(categories_file, 'w') as file: with open(categories_file, 'w') as file:
json.dump(categories_dict, file) json.dump(categories_dict, file)