From 3ba26f9b88bf9c661d643b2630f14658ee2e3d70 Mon Sep 17 00:00:00 2001 From: Stefano Serafin <serafin@jet01.img.univie.ac.at> Date: Wed, 12 Mar 2025 15:07:00 +0100 Subject: [PATCH] renamed files for clarity --- PE_CBL.py | 4 ++-- graphics.py => PE_CBL_graphics.py | 0 models.py => PE_CBL_models.py | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename graphics.py => PE_CBL_graphics.py (100%) rename models.py => PE_CBL_models.py (100%) diff --git a/PE_CBL.py b/PE_CBL.py index 3f18509..7b7ccee 100644 --- a/PE_CBL.py +++ b/PE_CBL.py @@ -8,9 +8,9 @@ import os import json # Own modules -from models import CBL from ENDA import experiment -from graphics import * +from PE_CBL_models import CBL +from PE_CBL_graphics import * def load_or_run(settings): diff --git a/graphics.py b/PE_CBL_graphics.py similarity index 100% rename from graphics.py rename to PE_CBL_graphics.py diff --git a/models.py b/PE_CBL_models.py similarity index 100% rename from models.py rename to PE_CBL_models.py -- GitLab