1
0
mirror of https://github.com/fspc/workstand.git synced 2025-02-23 09:13:23 -05:00

Redundant parens.

This commit is contained in:
Drew Larson 2016-07-04 19:05:38 -06:00
parent 57c82745a4
commit 9b25293898

View File

@ -28,7 +28,7 @@ def payment_type(pt):
try:
return [type for type in types if type[1].lower() == pt.lower()][0]
except IndexError:
return ('UNKNOWN', 'Unknown')
return 'UNKNOWN', 'Unknown'
def member_import():