Skip to content

Commit

Permalink
fix: Format and hatch format check
Browse files Browse the repository at this point in the history
  • Loading branch information
edeustua committed Jun 9, 2024
1 parent da29e72 commit 8049706
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion hatch.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ dependencies = [

[envs.default.scripts]
format = "black src tests"
format_check = "black --check src tests test_data"
format_check = "black --check src tests"
lint = "ruff check src tests"
typecheck = "mypy src"
test = "pytest tests"
Expand Down
7 changes: 5 additions & 2 deletions tests/test_pointer.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
import pytest

from pytest_checklist.pointer import (Pointer, resolve_pointer_mark_target,
resolve_target_pointer)
from pytest_checklist.pointer import (
Pointer,
resolve_pointer_mark_target,
resolve_target_pointer,
)

pointer = pytest.mark.pointer

Expand Down

0 comments on commit 8049706

Please sign in to comment.