Skip to content

Commit

Permalink
feat(app): Remove day from date formatting
Browse files Browse the repository at this point in the history
Exact day info is irrelevant for CVs, month precision is enough
  • Loading branch information
alexpovel committed Sep 3, 2022
1 parent 70ce1ea commit 08218b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ancv/visualization/themes.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def date_range(
headlines=[Style(), Style(), Style(), Style()],
bullet="*",
rulechar="─",
datefmt="%Y-%m-%d",
datefmt="%Y-%m",
),
"basic": Theme(
emphasis=[
Expand All @@ -57,6 +57,6 @@ def date_range(
],
bullet="*",
rulechar="─",
datefmt="%B %d, %Y",
datefmt="%B %Y",
),
}

0 comments on commit 08218b0

Please sign in to comment.