diff options
author | Luc Provoost <luc.provoost@gmail.com> | 2024-11-25 11:45:40 +0100 |
---|---|---|
committer | Luc Provoost <luc.provoost@gmail.com> | 2024-11-25 11:45:40 +0100 |
commit | 19d12dd0760ce512d730c1f8aacb7005073f3430 (patch) | |
tree | a0131e4c15926a3419148fce9c1169d2275ce32f /VNFs/DPPD-PROX/helper-scripts/rapid/rapid_flowsizetest.py | |
parent | cdf25f9e0a3bd311358ae005f76b1966fb71c464 (diff) |
add current path for python modules
Added a dot in front of the python files that are imported, so the code
can also be called from other directories
Signed-off-by: Luc Provoost <luc.provoost@gmail.com>
Change-Id: I18d4925fcf68c27c91d5e489178bac79edfcf5f4
Diffstat (limited to 'VNFs/DPPD-PROX/helper-scripts/rapid/rapid_flowsizetest.py')
-rw-r--r-- | VNFs/DPPD-PROX/helper-scripts/rapid/rapid_flowsizetest.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/VNFs/DPPD-PROX/helper-scripts/rapid/rapid_flowsizetest.py b/VNFs/DPPD-PROX/helper-scripts/rapid/rapid_flowsizetest.py index ea42fc9a..c9c323e3 100644 --- a/VNFs/DPPD-PROX/helper-scripts/rapid/rapid_flowsizetest.py +++ b/VNFs/DPPD-PROX/helper-scripts/rapid/rapid_flowsizetest.py @@ -22,9 +22,9 @@ import copy from math import ceil from statistics import mean from past.utils import old_div -from rapid_log import RapidLog -from rapid_log import bcolors -from rapid_test import RapidTest +from .rapid_log import RapidLog +from .rapid_log import bcolors +from .rapid_test import RapidTest inf = float("inf") class FlowSizeTest(RapidTest): |