feat: Set the default Timestamp active to True

That way you don't need to specify it if you don't want
This commit is contained in:
Lyz 2024-07-20 11:41:15 +02:00
parent be68d10d7a
commit ff841f82f0
No known key found for this signature in database
GPG Key ID: 6C7D7C1612CDE02F

View File

@ -1032,7 +1032,7 @@ TableRow = collections.namedtuple(
class Timestamp:
def __init__(
self,
active: bool,
active: bool = True,
year: Optional[int] = None,
month: Optional[int] = None,
day: Optional[int] = None,