From b9371afd8058da6c402979f1d0bf20215ea8fbc7 Mon Sep 17 00:00:00 2001 From: Nikolay Simakov Date: Sat, 1 Jul 2023 03:04:23 +0300 Subject: [PATCH] Delete src/ and move files to main folder --- src/analysis.py => analysis.py | 0 src/notations.py => notations.py | 2 +- src/__init__.py | 1 - 3 files changed, 1 insertion(+), 2 deletions(-) rename src/analysis.py => analysis.py (100%) rename src/notations.py => notations.py (97%) delete mode 100644 src/__init__.py diff --git a/src/analysis.py b/analysis.py similarity index 100% rename from src/analysis.py rename to analysis.py diff --git a/src/notations.py b/notations.py similarity index 97% rename from src/notations.py rename to notations.py index d32e5b2..570b9ca 100644 --- a/src/notations.py +++ b/notations.py @@ -2,7 +2,7 @@ import inspect from typing import List, Tuple -from .analysis import Analyzer, AnalysisFormatter, NotationFormat +from analysis import Analyzer, AnalysisFormatter, NotationFormat ''' diff --git a/src/__init__.py b/src/__init__.py deleted file mode 100644 index b431f47..0000000 --- a/src/__init__.py +++ /dev/null @@ -1 +0,0 @@ -from .notations import BigO, BigOmega, BigTheta \ No newline at end of file