From f1770136fc712a4dec3e5275839d9615fa618f90 Mon Sep 17 00:00:00 2001
From: Nicolas Barthes <nicolas.barthes@cnrs.fr>
Date: Tue, 6 Aug 2024 17:29:36 +0200
Subject: [PATCH] change general.jpg path to relative

---
 src/app.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/app.py b/src/app.py
index f7ae082..63a0c66 100644
--- a/src/app.py
+++ b/src/app.py
@@ -59,7 +59,7 @@ with st.container():
 
 for i in range(5):
     mm1s, mmd2=st.columns([2,2])
-image = Image.open("C:/Users/diane/Desktop/nirs_workflow/src/images/general.jpg")
+image = Image.open("images/general.JPG")
 new_image = image.resize((700, 400))
 mmd2.image(new_image)
 
-- 
GitLab