sintonia/analyzer/libretime_analyzer/steps/step.py

8 lines
152 B
Python

from typing import Any, Dict, Protocol
class Step(Protocol):
@staticmethod
def __call__(filename: str, metadata: Dict[str, Any]):
...