Lines Matching full:dict
5 from typing import Any, Dict, List, Tuple
128 result: Dict[str, bool] = {}
154 def _split(s: str) -> Dict[str, bool]:
155 result: Dict[str, bool] = {}
173 def _join(data: Dict[str, bool]) -> str:
185 repo: List[Dict[str, str]], ref: List[Dict[str, str]]
186 ) -> List[Dict[str, str]]:
197 repo: List[Dict[str, str]], option: str, drop: bool
198 ) -> List[Dict[str, str]]:
210 def _unroll(repo: List[Dict[str, str]]) -> Dict[str, str]:
211 unrolled_repo: Dict[str, str] = {}
217 def _roll(data: Dict[str, str]) -> List[Dict[str, str]]:
221 def load_config(path: str) -> Tuple[str, Dict[str, Any]]:
233 def format_yaml_output(data: Dict[str, Any]) -> str: