We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a6c0bce commit 2b322abCopy full SHA for 2b322ab
1 file changed
ted_sws/core/model/supra_notice.py
@@ -7,7 +7,7 @@
7
8
""" This module implements aggregates over groups of notices and the appropriate business needs, on those groups """
9
import abc
10
-from datetime import datetime, time
+from datetime import datetime, date
11
from typing import List, Optional
12
13
from ted_sws.core.model import PropertyBaseModel
@@ -45,5 +45,7 @@ class DailySupraNotice(SupraNotice):
45
"""
46
This is an aggregate over the notices published in TED in a specific day.
47
48
- notice_publication_day: datetime = datetime.combine(datetime.today(), time())
+ notice_publication_date: date
49
validation_report: Optional[SupraNoticeValidationReport]
50
+
51
0 commit comments