@@ -77,9 +77,6 @@ def report_timestamp_date_format(use_utc: bool = True) -> str:
7777 Based on the value of `use_utc`, it chooses the appropriate timezone.
7878 """
7979
80- """Gets the current datetime in the timestamp format used on the report pages.
81- Based on the value of `USE_UTC`, it chooses the appropriate timezone.
82- """
8380 if use_utc :
8481 return DateTimeUtils .format_date (
8582 datetime .now (ZoneInfo (DateTimeUtils .UTC_TIMEZONE )),
@@ -99,9 +96,6 @@ def fobt_kits_logged_but_not_read_report_timestamp_date_format(
9996 Based on the value of `use_utc`, it chooses the appropriate timezone.
10097 """
10198
102- """Gets the current datetime in the format used for FOBT Kits Logged but Not Read report.
103- Based on the value of `USE_UTC`, it chooses the appropriate timezone.
104- """
10599 if use_utc :
106100 return DateTimeUtils .format_date (
107101 datetime .now (ZoneInfo (DateTimeUtils .UTC_TIMEZONE )), "%d %b %Y %H:%M:%S"
@@ -119,9 +113,6 @@ def screening_practitioner_appointments_report_timestamp_date_format(
119113 Based on the value of `use_utc`, it chooses the appropriate timezone.
120114 """
121115
122- """Gets the current datetime in the format used for Screening Practitioner Appointments report.
123- Based on the value of `USE_UTC`, it chooses the appropriate timezone.
124- """
125116 if use_utc :
126117 return DateTimeUtils .format_date (
127118 datetime .now (ZoneInfo (DateTimeUtils .UTC_TIMEZONE )),
0 commit comments