Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
0x00b1 committed May 13, 2024
1 parent 4ef55de commit 1f1d283
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 9 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ exclude = [
"./src/beignet/constants/_substitution_matrices.py",
]

[tool.ruff]
[tool.ruff.lint]
select = [
"B", # FLAKE8-BUGBEAR
"E", # PYCODESTYLE ERRORS
Expand Down
6 changes: 5 additions & 1 deletion src/beignet/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
from ._invert_quaternion import invert_quaternion
from ._invert_rotation_matrix import invert_rotation_matrix
from ._invert_rotation_vector import invert_rotation_vector
from ._needleman_wunsch import needleman_wunsch
from ._quaternion_identity import quaternion_identity
from ._quaternion_magnitude import quaternion_magnitude
from ._quaternion_mean import quaternion_mean
Expand Down Expand Up @@ -65,6 +66,7 @@
from ._rotation_vector_to_rotation_matrix import (
rotation_vector_to_rotation_matrix,
)
from ._smith_waterman import smith_waterman
from ._translation_identity import translation_identity

__all__ = [
Expand All @@ -86,9 +88,11 @@
"invert_quaternion",
"invert_rotation_matrix",
"invert_rotation_vector",
"needleman_wunsch",
"quaternion_identity",
"quaternion_magnitude",
"quaternion_mean",
"quaternion_slerp",
"quaternion_to_euler_angle",
"quaternion_to_rotation_matrix",
"quaternion_to_rotation_vector",
Expand All @@ -108,6 +112,6 @@
"rotation_vector_to_euler_angle",
"rotation_vector_to_quaternion",
"rotation_vector_to_rotation_matrix",
"quaternion_slerp",
"smith_waterman",
"translation_identity",
]
File renamed without changes.
File renamed without changes.
7 changes: 0 additions & 7 deletions src/beignet/operators/__init__.py

This file was deleted.

File renamed without changes.
File renamed without changes.

0 comments on commit 1f1d283

Please sign in to comment.