Skip to content

Commit

Permalink
BUG: Packages should import from features as src is not a package
Browse files Browse the repository at this point in the history
Remove src from import path as it is not a package
  • Loading branch information
khalford committed Feb 3, 2025
1 parent acb4d42 commit 72b5b5d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

import os
from pathlib import Path
from src.features.compose_version import CompareComposeVersion
from src.features.app_version import CompareAppVersion
from features.compose_version import CompareComposeVersion
from features.app_version import CompareAppVersion


def main() -> bool:
Expand Down

0 comments on commit 72b5b5d

Please sign in to comment.