Skip to content

Commit abd7673

Browse files
committed
chore: update slight comments to reference basedpyright instead of pyright
1 parent fcb23e6 commit abd7673

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
- "pyproject.toml"
1313
- ".github/workflows/build-docs.yml"
1414
- ".ruff.toml" # Affects docstrings via linting
15-
- "pyrightconfig.json" # Affects type hints in docs
15+
- "pyrightconfig.json" # Basedpyright config - affects type hints in docs
1616

1717
push:
1818
branches:

{{cookiecutter.project_name}}/noxfile.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,11 +118,11 @@ def lint_rust(session: Session) -> None:
118118
{% endif -%}
119119
@nox.session(python=PYTHON_VERSIONS, name="typecheck")
120120
def typecheck(session: Session) -> None:
121-
"""Run static type checking (Pyright) on Python code."""
121+
"""Run static type checking (Basedpyright) on Python code."""
122122
session.log("Installing type checking dependencies...")
123123
session.install("-e", ".", "--group", "dev")
124124

125-
session.log(f"Running Pyright check with py{session.python}.")
125+
session.log(f"Running Basedpyright check with py{session.python}.")
126126
session.run("pyright", "--pythonversion", session.python)
127127

128128

0 commit comments

Comments
 (0)