File size: 260 Bytes
877add7
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
"""Synthetic and mock data blending."""

from __future__ import annotations

from typing import Any


def merge_sources(local_items: list[dict[str, Any]], generated_items: list[dict[str, Any]]) -> list[dict[str, Any]]:
    return local_items + generated_items