How to remove the Abstract Registration Deadline

Last updated
Was this helpful?

Last updated
Was this helpful?
Was this helpful?
request_form_id = ''
references = client.get_all_references(referent=request_form_id)
for ref in references:
if 'abstract_registration_deadline' in ref.content:
print("deadline removed from: ",ref.id)
del ref.content['abstract_registration_deadline']
client.post_note(ref)