diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-10-25 19:37:43 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2020-10-25 19:39:05 +0100 |
commit | d1de4e0ae8d742b3e566fe662e425d319a35e380 (patch) | |
tree | c19707d5ef5cdd64e27b852ce59ca70e92d98658 /src/tests/helper.py | |
parent | 44c57a59f24b32a384bdf42c3097882f6c32169e (diff) | |
download | vyos-1x-d1de4e0ae8d742b3e566fe662e425d319a35e380.tar.gz vyos-1x-d1de4e0ae8d742b3e566fe662e425d319a35e380.zip |
test: import cleanup
Diffstat (limited to 'src/tests/helper.py')
-rw-r--r-- | src/tests/helper.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/tests/helper.py b/src/tests/helper.py index a7e4f201c..f7033148a 100644 --- a/src/tests/helper.py +++ b/src/tests/helper.py @@ -13,13 +13,10 @@ # # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. -# -# import sys import importlib.util - def prepare_module(file_path='', module_name=''): spec = importlib.util.spec_from_file_location(module_name, file_path) module = importlib.util.module_from_spec(spec) |