We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f244c1 commit 61c919dCopy full SHA for 61c919d
PyFunceble/dataset/inactive/csv.py
@@ -92,6 +92,10 @@ def get_to_retest(
92
else:
93
date_of_inclusion = dataset["tested_at"]
94
95
+ if date_of_inclusion.tzinfo is None: # pragma: no cover
96
+ # Ensure that timezone is set.
97
+ date_of_inclusion = date_of_inclusion.replace(tzinfo=timezone.utc)
98
+
99
if date_of_inclusion > days_ago:
100
continue
101
0 commit comments