From 330f2040b1f57ff4b2dff9f9aa6d0b3c5ea809d7 Mon Sep 17 00:00:00 2001 From: Lou Bernabeu <lou.bernabeu@student-cs.fr> Date: Wed, 6 Jan 2021 10:03:01 +0100 Subject: [PATCH] restructured for simpplicity (didn't need isolated packages) --- __init__.py | 2 ++ elements/main.py => elements.py | 0 elements/__init__.py | 4 ---- graphics/__init__.py => graphics.py | 0 4 files changed, 2 insertions(+), 4 deletions(-) rename elements/main.py => elements.py (100%) delete mode 100644 elements/__init__.py rename graphics/__init__.py => graphics.py (100%) diff --git a/__init__.py b/__init__.py index e69de29..9664db0 100644 --- a/__init__.py +++ b/__init__.py @@ -0,0 +1,2 @@ +import numpy as np +import cmath diff --git a/elements/main.py b/elements.py similarity index 100% rename from elements/main.py rename to elements.py diff --git a/elements/__init__.py b/elements/__init__.py deleted file mode 100644 index fa0c9bc..0000000 --- a/elements/__init__.py +++ /dev/null @@ -1,4 +0,0 @@ -import numpy as np -import cmath - -from .main import * diff --git a/graphics/__init__.py b/graphics.py similarity index 100% rename from graphics/__init__.py rename to graphics.py -- GitLab