ees_microsoft_outlook/microsoft_outlook_calendar.py [41:49]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            attachment_created = ""
            if attachment.last_modified_time:
                attachment_created = change_datetime_format(
                    attachment.last_modified_time, self.time_zone
                )

            # Logic to fetch calendar events attachments
            if attachment.last_modified_time >= start_time and attachment.last_modified_time < end_time:
                attachments = {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



ees_microsoft_outlook/microsoft_outlook_mails.py [49:57]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            attachment_created = ""
            if attachment.last_modified_time:
                attachment_created = change_datetime_format(
                    attachment.last_modified_time, self.time_zone
                )

            # Logic to fetch mail attachments
            if attachment.last_modified_time >= start_time and attachment.last_modified_time < end_time:
                attachments = {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



