Skip to content

Commit

Permalink
Fixup the imports (#15)
Browse files Browse the repository at this point in the history
Relative imports were not working as expected - likely due to the lack of base module definition. Safter path is absolute imports.
  • Loading branch information
jensenbox committed Apr 16, 2024
1 parent b759a9e commit 66805c3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions release_helper/main.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import logging
from typing import TYPE_CHECKING

from .exceptions import ReleaseHelperError
from .github import SourceControlGithub
from .linear import IssueManagementLinear
from .slack import MessagingSlack
from release_helper.exceptions import ReleaseHelperError
from release_helper.github import SourceControlGithub
from release_helper.linear import IssueManagementLinear
from release_helper.slack import MessagingSlack


if TYPE_CHECKING:
Expand Down

0 comments on commit 66805c3

Please sign in to comment.