Skip to content

Commit

Permalink
~
Browse files Browse the repository at this point in the history
  • Loading branch information
mohamed-chs committed Oct 20, 2023
1 parent 3dd67fd commit 806f014
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
6 changes: 4 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
[tool.ruff]
select = ["ALL"]

ignore = ["ANN101"]
ignore = ["ANN101"] # missing-type-self

[tool.ruff.per-file-ignores]
"{cli.py, setup.py}" = ["T201"]
"cli.py" = ["T201"] # print statement
"setup.py" = ["T201"] # print statement
"tests/*" = ["S101"] # assert
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from pathlib import Path

BASE_DIR: Path = Path(__file__).parent.resolve()
VENV_DIR = BASE_DIR / ".venv"
VENV_DIR: Path = BASE_DIR / ".venv"


def create_virtual_environment() -> None:
Expand Down
1 change: 1 addition & 0 deletions utils/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
"""Utility functions for the project."""

0 comments on commit 806f014

Please sign in to comment.