mirror of
https://github.com/Hopiu/djLint.git
synced 2026-05-20 02:41:51 +00:00
settings.py: Fix docstring spelling
This commit is contained in:
parent
0111614913
commit
5392565580
1 changed files with 3 additions and 3 deletions
|
|
@ -37,7 +37,7 @@ def find_project_root(src: Path) -> Path:
|
|||
|
||||
|
||||
def load_gitignore(root: Path) -> PathSpec:
|
||||
"""Search upstream for a pyprojec.toml file."""
|
||||
"""Search upstream for a .gitignore file."""
|
||||
|
||||
gitignore = root / ".gitignore"
|
||||
git_lines: List[str] = []
|
||||
|
|
@ -54,7 +54,7 @@ def load_gitignore(root: Path) -> PathSpec:
|
|||
|
||||
|
||||
def find_pyproject(root: Path) -> Optional[Path]:
|
||||
"""Search upstream for a pyprojec.toml file."""
|
||||
"""Search upstream for a pyproject.toml file."""
|
||||
|
||||
pyproject = root / "pyproject.toml"
|
||||
|
||||
|
|
@ -138,7 +138,7 @@ def build_custom_blocks(custom_blocks: Union[str, None]) -> Optional[str]:
|
|||
|
||||
|
||||
class Config:
|
||||
"""Djling Config."""
|
||||
"""Djlint Config."""
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
|
|
|
|||
Loading…
Reference in a new issue