Skip to content

Commit

Permalink
fix: Change import sugar to 'sugar.core'
Browse files Browse the repository at this point in the history
  • Loading branch information
esloch authored and xmnlab committed Dec 22, 2023
1 parent a3e37d2 commit 9067533
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
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 core import Sugar
from sugar.core import Sugar


def _get_args():
Expand Down
2 changes: 1 addition & 1 deletion src/sugar/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

from jinja2 import Template

from core import __version__
from sugar import __version__
from sugar.logs import KxgrErrorType, KxgrLogs


Expand Down
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 core import Sugar
from sugar.core import Sugar

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

0 comments on commit 9067533

Please sign in to comment.