Skip to content

Commit

Permalink
Fix root directory for hatch_build.py
Browse files Browse the repository at this point in the history
  • Loading branch information
hoxbro committed May 13, 2024
1 parent a4faf34 commit 1398221
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion hatch_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

from hatchling.builders.hooks.plugin.interface import BuildHookInterface

BASE_DIR = Path(__file__).parents[1]
BASE_DIR = Path(__file__).parent
GREEN, RED, RESET = "\033[92m", "\033[91m", "\033[0m"


Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,7 @@ unfixable = [
"panel/io/convert.py" = ["T201"]
"panel/pane/vtk/synchronizable_*.py" = ["T201"]
"scripts/*.py" = ["T201"]
"hatch_build.py" = ["T201"]

[tool.isort]
force_grid_wrap = 4
Expand Down

0 comments on commit 1398221

Please sign in to comment.