Skip to content

Commit

Permalink
Merge pull request #150 from GriceTurrble/chore/move-templates-to-dir
Browse files Browse the repository at this point in the history
chore: move templates to their own directory
  • Loading branch information
GriceTurrble authored Dec 1, 2024
2 parents b5a39b9 + 23985f8 commit 864765b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions 2024/python/src/grice_py_aoc_2024/cli.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
from pathlib import Path
import toml

import click
import toml

DIR = Path(__file__).parent
MAIN_PY_TEMPLATE = DIR / "main.py-tpl"
TEST_PY_TEMPLATE = DIR / "test_day.py-tpl"
MAIN_PY_TEMPLATE = DIR / "templates/main.py-tpl"
TEST_PY_TEMPLATE = DIR / "templates/test_day.py-tpl"


@click.group()
Expand Down

0 comments on commit 864765b

Please sign in to comment.