6 lines
168 B
Python
6 lines
168 B
Python
from ..run import Run
|
|
from pathlib import Path
|
|
from typing import Generator
|
|
|
|
def generate_estimate_histplot(run: Run) -> Generator[Path]:
|
|
raise NotImplementedError
|