refactor: Update import statements to include 'src' prefix for module paths
Some checks failed
Build and Push Docker Image / build-and-push (push) Has been cancelled

This commit is contained in:
William Valentin
2025-07-29 16:52:46 -07:00
parent 5243352867
commit 21dd1fc9c8
22 changed files with 68 additions and 68 deletions

View File

@@ -10,7 +10,7 @@ import pandas as pd
import sys
sys.path.insert(0, os.path.join(os.path.dirname(__file__), '..', 'src'))
from main import MedTrackerApp
from src.main import MedTrackerApp
class TestMedTrackerApp: