Skip to content

Commit

Permalink
refactor(utils): move pipe module to utils package
Browse files Browse the repository at this point in the history
  • Loading branch information
entelecheia committed May 4, 2023
1 parent 7ae60c3 commit 74be1dc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/hyfi/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
)
from .io.cached_path import cached_path
from .io.file import exists, is_dir, is_file, join_path, mkdir
from .pipe import _apply, _pipe
from .utils.pipe import _apply, _pipe
from .utils.env import get_osenv, load_dotenv, set_osenv
from .utils.func import (
dict_product,
Expand Down
6 changes: 3 additions & 3 deletions src/hyfi/pipe.py → src/hyfi/utils/pipe.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
from tqdm.auto import tqdm

from .hydra import SpecialKeys, _partial
from .utils.batch import batcher, decorator_apply
from .utils.logging import getLogger
from ..hydra import SpecialKeys, _partial
from .batch import batcher, decorator_apply
from .logging import getLogger

logger = getLogger(__name__)

Expand Down

0 comments on commit 74be1dc

Please sign in to comment.