Working on event person, registration, badge, session, presentation, and presenter create and update. _v3 things

This commit is contained in:
Scott Idem
2021-08-24 20:31:00 -04:00
parent 25ebdb6e76
commit 7859d1d2b2
12 changed files with 513 additions and 71 deletions

View File

@@ -146,7 +146,7 @@ def load_event_presentation_obj(
# Updated 2021-08-23
def get_event_id_w_event_session_id(
event_session_id: int|str,
) -> bool|None:
) -> bool|int|None:
log.setLevel(logging.WARNING) # DEBUG, INFO, WARNING, ERROR, EXCEPTION, CRITICAL
log.debug(locals())
@@ -259,7 +259,7 @@ def create_event_presentation_obj(
log.info('Event Presenter List not found')
pass
log.info(f'The event presentation has been created. Event Presentation ID: {event_presentation_id}')
log.info(f'The Event Presentation has been created. Event Presentation ID: {event_presentation_id}')
return event_presentation_id
# ### END ### API Event Presentation Methods ### create_event_presentation_obj() ###