A lot of work on event related modules. Also a lot of clean up.

This commit is contained in:
Scott Idem
2021-06-08 15:56:00 -04:00
parent b7f6a5ee2a
commit d37234d7d8
10 changed files with 66 additions and 34 deletions

View File

@@ -11,7 +11,7 @@ from .common_field_schema import base_fields, default_num_bytes
#from .event_models import Event_Base
from .event_location_models import Event_Location_Base
#from .event_person_models import Event_Person_Base # NOTE: Using thi will probably create an import loop
from .event_person_models import Event_Person_Base # NOTE: Using thi will probably create an import loop
from .event_track_models import Event_Track_Base
from .person_models import Person_Base
@@ -98,7 +98,7 @@ class Event_Session_Base(BaseModel):
event_presentation_list: Optional[list] # Optional[Event_Presentation_Base]
event_presenter_list: Optional[list] # Optional[Event_Presenter_Base]
event_track: Optional[Event_Track_Base]
#poc_event_person: Optional[Event_Person_Base] # NOTE: Using thi will probably create an import loop
poc_event_person: Optional[Event_Person_Base] # NOTE: Using thi will probably create an import loop
_processed_at: datetime.datetime = PrivateAttr(default_factory=datetime.datetime.now)