Skip to content

Commit

Permalink
feat: Rename from sugar to core module name (#101)
Browse files Browse the repository at this point in the history
  • Loading branch information
esloch authored Jan 15, 2024
1 parent 9dafb45 commit 40dace1
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/sugar/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
__version__ = '1.9.3' # semantic-release


from sugar.sugar import Sugar # noqa: F401
from sugar.core import Sugar # noqa: F401
2 changes: 1 addition & 1 deletion src/sugar/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from pathlib import Path
from typing import Tuple

from sugar import Sugar
from sugar.core import Sugar


def _get_args():
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion tests/test_containers_sugar.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import pytest

from sugar import Sugar
from sugar.core import Sugar

CONFIG_PATH = Path(__file__).parent.parent / '.sugar.yaml'
DEFAULT_ARGS = {
Expand Down

0 comments on commit 40dace1

Please sign in to comment.