Skip to content

Commit 2b322ab

Browse files
Update supra_notice.py
1 parent a6c0bce commit 2b322ab

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

ted_sws/core/model/supra_notice.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
""" This module implements aggregates over groups of notices and the appropriate business needs, on those groups """
99
import abc
10-
from datetime import datetime, time
10+
from datetime import datetime, date
1111
from typing import List, Optional
1212

1313
from ted_sws.core.model import PropertyBaseModel
@@ -45,5 +45,7 @@ class DailySupraNotice(SupraNotice):
4545
"""
4646
This is an aggregate over the notices published in TED in a specific day.
4747
"""
48-
notice_publication_day: datetime = datetime.combine(datetime.today(), time())
48+
notice_publication_date: date
4949
validation_report: Optional[SupraNoticeValidationReport]
50+
51+

0 commit comments

Comments
 (0)