Skip to content

Commit

Permalink
fix package imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Natooz committed Mar 9, 2024
1 parent 07368a3 commit 49fd84a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lcspy/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""Main LCSPy module."""

from .lcspy_ext import lccs_length, lcs_length, lcs_table
from .lcspy_ext import lccs_length, lcs, lcs_length, lcs_table

__version__ = "0.0.1"

__all__ = ["lccs_length", "lcs_length", "lcs_table", "lccs"]
__all__ = ["lccs_length", "lcs", "lcs_length", "lcs_table"]

0 comments on commit 49fd84a

Please sign in to comment.