9 lines
206 B
Python
9 lines
206 B
Python
from typing import Iterable
|
|
|
|
from pyinfra.server.interpreter.interpreter import Interpreter
|
|
|
|
|
|
class IdentityInterpreter(Interpreter):
|
|
def __call__(self, payloads: Iterable):
|
|
yield from payloads
|