From 47ee425f09a33610123520eed99f1750f7fe2517 Mon Sep 17 00:00:00 2001 From: Aleksandra <aleks.dimitrova.21@gmail.com> Date: Thu, 13 Jul 2023 18:28:34 +0200 Subject: [PATCH] path for backend corrected --- Frontend/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Frontend/main.py b/Frontend/main.py index 9ce0e2c..09c1c38 100644 --- a/Frontend/main.py +++ b/Frontend/main.py @@ -12,7 +12,7 @@ import os, time, sys The following are the import for the backend. Just write the name of the script without .py. Then you can immediately use the function from the script directly in the app. """ -sys.path.append(os.path.join(os.path.dirname(sys.path[0]),'Backend')) +sys.path.append(os.path.join(os.path.dirname(sys.path[0]),'backend')) import dqn, petrinet import eventlog as elog -- GitLab