Skip to content

Commit

Permalink
[GSK-2565] Fixing imports in prod (#24)
Browse files Browse the repository at this point in the history
* fixing imports

* pdm format
  • Loading branch information
rabah-khalek authored Jan 16, 2024
1 parent 7b139bc commit 2cab0a7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
5 changes: 5 additions & 0 deletions giskard_vision/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
from . import landmark_detection

__all__ = [
"landmark_detection",
]
3 changes: 0 additions & 3 deletions giskard_vision/landmark_detection/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +0,0 @@
from .logger import logger

__all__ = ["logger"]
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"

[tool.setuptools.packages.find]
include = ["giskard_vision"]
include = ["giskard_vision*"]
exclude = ["docs*", "tests*"]


Expand Down

0 comments on commit 2cab0a7

Please sign in to comment.