-
Notifications
You must be signed in to change notification settings - Fork 0
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
Issue Description
As identified in the code review for PR #2, there are import issues that need to be fixed for proper package structure.
Problem
- vitals/biomarkers/helpers.py:3 - Uses
import schemasinstead of relative import - vitals/score2/compute.py:9 - Should use relative imports within the package
Current Code
# In helpers.py
import schemas
# In compute.py
from biomarkers import helpers, schemasExpected Fix
# In helpers.py
from . import schemas
# In compute.py
from ..biomarkers import helpers, schemasImpact
This is a critical issue that affects module imports and package structure consistency.
Related
- PR feat: Implement SCORE2 cardiovascular risk assessment algorithm #2: feat: Implement SCORE2 cardiovascular risk assessment algorithm
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working