From 00fc666804f2f4aaf2cdbbc3e62f5b9bd6ac5f30 Mon Sep 17 00:00:00 2001 From: Loic Guegan Date: Sun, 17 Dec 2023 16:25:31 +0800 Subject: [PATCH] Minor changes --- esds/__main__.py | 2 +- esds/debug.py | 5 +++++ esds/debug_analyze.py | 4 ---- 3 files changed, 6 insertions(+), 5 deletions(-) delete mode 100644 esds/debug_analyze.py diff --git a/esds/__main__.py b/esds/__main__.py index 1c4abc2..15d0094 100644 --- a/esds/__main__.py +++ b/esds/__main__.py @@ -1,6 +1,6 @@ import sys, argparse, os from .platform import YAMLPlatformFile -from .debug_analyze import * +from .debug import * from esds import __version__ def run(platform): diff --git a/esds/debug.py b/esds/debug.py index 111b3a7..cac433d 100644 --- a/esds/debug.py +++ b/esds/debug.py @@ -108,3 +108,8 @@ class Debug: } self.write(loop_data) self.logs.clear() + + + +def debug_infos(file): + print("infos") diff --git a/esds/debug_analyze.py b/esds/debug_analyze.py deleted file mode 100644 index 0b3f542..0000000 --- a/esds/debug_analyze.py +++ /dev/null @@ -1,4 +0,0 @@ - - -def debug_infos(file): - print("infos")