Skip to content

Commit

Permalink
fix: more import fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
nishaq503 committed Feb 14, 2024
1 parent 6e4f678 commit 86618b1
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 20 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""File Renaming."""
__version__ = "0.2.4-dev0"

from .file_renaming import file_renaming
from . import file_renaming
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from bfio import BioReader
from filepattern import FilePattern

from polus.plugins.transforms.images.montage.utils import (
from .utils import (
DictWriter,
VectorWriter,
subpattern,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,9 @@
import numpy as np
import vaex

from polus.plugins.transforms.tabular.tabular_thresholding.thresholding import ( # noqa
custom_fpr as custom_fpr,
)
from polus.plugins.transforms.tabular.tabular_thresholding.thresholding import ( # noqa
n_sigma as n_sigma,
)
from polus.plugins.transforms.tabular.tabular_thresholding.thresholding import ( # noqa
otsu as otsu,
)
from .thresholding import custom_fpr
from.thresholding import n_sigma
from .thresholding import otsu

logger = logging.getLogger(__name__)

Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,6 @@
"""Tabular Thresholding."""
__version__ = "0.1.3"

from polus.plugins.transforms.tabular.tabular_thresholding.thresholding import ( # noqa
custom_fpr as custom_fpr,
)
from polus.plugins.transforms.tabular.tabular_thresholding.thresholding import ( # noqa
n_sigma as n_sigma,
)
from polus.plugins.transforms.tabular.tabular_thresholding.thresholding import ( # noqa
otsu as otsu,
)
from . import custom_fpr
from . import n_sigma
from . import otsu

0 comments on commit 86618b1

Please sign in to comment.