Changeset - 031b660cc6f2
[Not reviewed]
0 1 0
Brett Smith - 4 years ago 2020-05-11 13:53:14
brettcsmith@brettcsmith.org
plugin: Move up default start validation date.
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
conservancy_beancount/plugin/core.py
Show inline comments
...
 
@@ -48,7 +48,7 @@ from ..beancount_types import (
 

	
 
# I expect these will become configurable in the future, which is why I'm
 
# keeping them outside of a class, but for now constants will do.
 
DEFAULT_START_DATE: datetime.date = datetime.date(2020, 3, 1)
 
DEFAULT_START_DATE: datetime.date = datetime.date(2019, 3, 1)
 
# The default stop date leaves a little room after so it's easy to test
 
# dates past the far end of the range.
 
DEFAULT_STOP_DATE: datetime.date = datetime.date(datetime.MAXYEAR, 1, 1)
0 comments (0 inline, 0 general)