From 832fd604b310b4b2e43cc1e56d62a9a9f5210e6e Mon Sep 17 00:00:00 2001 From: Thijs <13253091+Thijss@users.noreply.github.com> Date: Fri, 1 Dec 2023 18:45:40 +0100 Subject: [PATCH 1/2] update add_day.sh --- adventofcode/day1/__init__.py | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 adventofcode/day1/__init__.py diff --git a/adventofcode/day1/__init__.py b/adventofcode/day1/__init__.py new file mode 100644 index 0000000..e69de29 From 2703642e8de477cbd48bd70d8d6abdfdd9aa3c79 Mon Sep 17 00:00:00 2001 From: Thijs <13253091+Thijss@users.noreply.github.com> Date: Fri, 1 Dec 2023 18:46:14 +0100 Subject: [PATCH 2/2] update add_day.sh --- add_day.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/add_day.sh b/add_day.sh index a2dfb5c..7cc2f31 100755 --- a/add_day.sh +++ b/add_day.sh @@ -14,6 +14,7 @@ if ! [[ $day =~ ^[0-9]+$ ]]; then fi mkdir adventofcode/day$day +touch adventofcode/day$day/__init__.py touch adventofcode/day$day/data.txt touch adventofcode/day$day/solution.py touch adventofcode/day$day/test_day$day.py