From 48111112adf3ec463e84d5f035a6a42498314a19 Mon Sep 17 00:00:00 2001 From: Tatu Aalto Date: Mon, 29 Jun 2020 23:50:50 +0300 Subject: [PATCH] Remove static core --- atest/run.py | 2 +- src/robotlibcore.py | 6 ------ 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/atest/run.py b/atest/run.py index 53b9653..bab2983 100755 --- a/atest/run.py +++ b/atest/run.py @@ -11,7 +11,7 @@ from robotstatuschecker import process_output -library_variants = ['Hybrid', 'Dynamic', 'Static', 'ExtendExisting'] +library_variants = ['Hybrid', 'Dynamic', 'ExtendExisting'] curdir = dirname(abspath(__file__)) outdir = join(curdir, 'results') tests = join(curdir, 'tests.robot') diff --git a/src/robotlibcore.py b/src/robotlibcore.py index 4b878de..60ae7b5 100644 --- a/src/robotlibcore.py +++ b/src/robotlibcore.py @@ -185,12 +185,6 @@ def __get_keyword_path(self, method): return None -class StaticCore(HybridCore): - - def __init__(self): - HybridCore.__init__(self, []) - - class ArgumentSpec(object): _function = None