9 lines
145 B
Python
9 lines
145 B
Python
from typing import TypeVar
|
|
|
|
R = TypeVar("Rule")
|
|
def get_rule(env, config: R) -> R:
|
|
"""
|
|
Returns the rule as-is.
|
|
"""
|
|
return config
|