This is my code and i want to put this all in one line:
def GetKey(self, key):
    if key == "externalCode":
        return "ExternalCode"
    elif key == "name":
        return "Name"
    elif key == "description":
        return "Description"
    elif key == "remind-indays":
        return "RemindInDays"
    elif key == "is-delegate-supported":
        return "IsDelegateSupported"
    elif key == "escalation":
        return "Escalation"
 
     
     
     
    