Skip to content

Commit f46d0e9

Browse files
committed
refactor: give in to prettier for the moment just to see if this can start working
1 parent e1fd259 commit f46d0e9

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

{{cookiecutter.project_name}}/.github/workflows/build-docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ on:
1111
- "noxfile.py"
1212
- "pyproject.toml"
1313
- ".github/workflows/build-docs.yml"
14-
- ".ruff.toml" # Affects docstrings via linting
15-
- "pyrightconfig.json" # Affects type hints in docs
14+
- ".ruff.toml" # Affects docstrings via linting
15+
- "pyrightconfig.json" # Affects type hints in docs
1616

1717
push:
1818
branches:

{{cookiecutter.project_name}}/noxfile.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,13 @@ def setup_venv(session: Session) -> None:
6464
def setup_remote(session: Session) -> None:
6565
"""Set up the remote repository for the current project."""
6666
command: list[str] = [
67-
"python", SCRIPTS_FOLDER / "setup-remote.py", REPO_ROOT, "--host", REPOSITORY_HOST, "--path", REPOSITORY_PATH
67+
"python",
68+
SCRIPTS_FOLDER / "setup-remote.py",
69+
REPO_ROOT,
70+
"--host",
71+
REPOSITORY_HOST,
72+
"--path",
73+
REPOSITORY_PATH,
6874
]
6975
session.run(*command, external=True)
7076

0 commit comments

Comments
 (0)