How to remove the Abstract Registration Deadline

Son güncelleme
Bu yararlı oldu mu?
Bu yararlı oldu mu?
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)