ver Dec26th

evaluation metric checking result file according to rules
This commit is contained in:
David Chang
2023-12-26 16:46:50 +08:00
parent bc2ef08da7
commit a6b6022ecb
6 changed files with 134 additions and 6 deletions

View File

@@ -1 +1,2 @@
from .file import get_cloud_file, get_vm_file
from .misc import get_rule

View File

@@ -0,0 +1,8 @@
from typing import TypeVar
R = TypeVar("Rule")
def get_rule(env, config: R) -> R:
"""
Returns the rule as-is.
"""
return config