blob: c14c4f53e3987d035f7214464e9266d0ab1bd371 [file] [log] [blame]
"""
Module for functions with genercis to test graph things with.
"""
from typing import Dict, List, Mapping, Tuple
def A(b: Dict, c: int) -> Tuple[Dict, int]:
"""Function that should become part of the graph - A"""
return b, c
def B(A: Tuple[Dict, int]) -> List:
"""Function that should become part of the graph - B"""
return [A, A]
def C(B: list) -> Dict:
return {"foo": B}
def D(C: Mapping) -> float:
return 1.0