From 944d34e3a52b32329f4c5c060a0237774bed666e Mon Sep 17 00:00:00 2001 From: "Fredrick W. Warren" Date: Sun, 29 Dec 2024 10:41:28 -0700 Subject: [PATCH] changed main docstring --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 6e843e4..c75a7b6 100755 --- a/main.py +++ b/main.py @@ -182,7 +182,7 @@ def process_months(months, monthly_events, year): @click.option('--year', "-y", type=int, default=date.today().year, help='Specify the year.') @click.argument('filename', default="calendar.csv", required=False) def main(debug, year, filename): - """create csv file""" + """Create a .csv file of church events for the year. Modify events.py to change events""" global DEBUG DEBUG = debug months = initalize_year(year)