Skip to content

Commit

Permalink
Add new source folder and fix import paths in YouTrack client.
Browse files Browse the repository at this point in the history
A new source folder for YouTrack was added to the module configuration. Additionally, import paths in `client.py` were updated to ensure proper resolution within the updated project structure.
  • Loading branch information
meanmail committed Jan 15, 2025
1 parent 066b0bb commit 2ed9876
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions .idea/hyperskill-sdk.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions youtrack/youtrack/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
import structlog
from httpx import Response

from youtrack.youtrack.models.activity import YouTrackActivityItem
from youtrack.youtrack.models.comment import YouTrackComment
from youtrack.youtrack.models.issue import YouTrackIssue
from youtrack.youtrack.models.user import YouTrackUser
from youtrack.models.activity import YouTrackActivityItem
from youtrack.models.comment import YouTrackComment
from youtrack.models.issue import YouTrackIssue
from youtrack.models.user import YouTrackUser

if TYPE_CHECKING:
from collections.abc import Iterable
Expand Down

0 comments on commit 2ed9876

Please sign in to comment.