refactor: Update import statements to include 'src' prefix for module paths
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
+2 -2
View File
@@ -11,7 +11,7 @@ import sys
# Add the src directory to the path so we can import our modules
sys.path.insert(0, os.path.join(os.path.dirname(__file__), "src"))
from data_manager import DataManager
from src.data_manager import DataManager
def test_dose_editing_functionality():
@@ -100,7 +100,7 @@ def test_dose_editing_functionality():
try:
import tkinter as tk
from ui_manager import UIManager
from src.ui_manager import UIManager
# Create a temporary UI manager to test the parsing
root = tk.Tk()