Commit ·
c094f9d
1
Parent(s): 8998720
Remove obsolete code.
Browse files- CodeTesting.py +0 -22
CodeTesting.py
CHANGED
|
@@ -44,25 +44,3 @@ class CodeTesting(AtomicFlow):
|
|
| 44 |
response = self._run_tests(input_data, test_data)
|
| 45 |
|
| 46 |
return response
|
| 47 |
-
|
| 48 |
-
# from typing import Optional, Any, List, Dict
|
| 49 |
-
#
|
| 50 |
-
# from flows.base_flows.abstract import AtomicFlow
|
| 51 |
-
# from flows.utils.general_helpers import validate_parameters
|
| 52 |
-
#
|
| 53 |
-
# class CodeTester(AtomicFlow):
|
| 54 |
-
# REQUIRED_KEYS_CONFIG = []
|
| 55 |
-
# REQUIRED_KEYS_CONSTRUCTOR = []
|
| 56 |
-
#
|
| 57 |
-
# def __init__(self, **kwargs):
|
| 58 |
-
# super().__init__(**kwargs)
|
| 59 |
-
#
|
| 60 |
-
# @classmethod
|
| 61 |
-
# def _validate_parameters(cls, kwargs):
|
| 62 |
-
# validate_parameters(cls, kwargs) # is this necessary?
|
| 63 |
-
#
|
| 64 |
-
# def run(self,
|
| 65 |
-
# input_data: Dict[str, Any],
|
| 66 |
-
# private_keys: Optional[List[str]] = [],
|
| 67 |
-
# keys_to_ignore_for_hash: Optional[List[str]] = []) -> Dict[str, Any]:
|
| 68 |
-
|
|
|
|
| 44 |
response = self._run_tests(input_data, test_data)
|
| 45 |
|
| 46 |
return response
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|