forked from kenkeiras/org-rw
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:
parent
be68d10d7a
commit
ff841f82f0
1 changed files with 1 additions and 1 deletions
|
@ -1032,7 +1032,7 @@ TableRow = collections.namedtuple(
|
||||||
class Timestamp:
|
class Timestamp:
|
||||||
def __init__(
|
def __init__(
|
||||||
self,
|
self,
|
||||||
active: bool,
|
active: bool = True,
|
||||||
year: Optional[int] = None,
|
year: Optional[int] = None,
|
||||||
month: Optional[int] = None,
|
month: Optional[int] = None,
|
||||||
day: Optional[int] = None,
|
day: Optional[int] = None,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue