From ff841f82f0548c277ad7284e541c2385d1013ff5 Mon Sep 17 00:00:00 2001 From: Lyz Date: Sat, 20 Jul 2024 11:41:15 +0200 Subject: [PATCH] feat: Set the default Timestamp active to True That way you don't need to specify it if you don't want --- org_rw/org_rw.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/org_rw/org_rw.py b/org_rw/org_rw.py index 39fbef7..4bd7e04 100644 --- a/org_rw/org_rw.py +++ b/org_rw/org_rw.py @@ -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,