From: Scott Worley Date: Wed, 17 Jun 2020 17:40:57 +0000 (-0700) Subject: Rename read_search_path -> read_config_section X-Git-Tag: 2.0.0~6 X-Git-Url: http://git.scottworley.com/pinch/commitdiff_plain/d815b199fa1d94ba00cd415a1310e80abc57e3b9?hp=b3bdc793dc1624c220ddb7be1dc92ad2b1578a8e Rename read_search_path -> read_config_section --- diff --git a/pinch.py b/pinch.py index 266daff..125fa63 100644 --- a/pinch.py +++ b/pinch.py @@ -602,7 +602,7 @@ def filter_dict(d: Dict[K, V], fields: Set[K] return selected, remaining -def read_search_path( +def read_config_section( conf: configparser.SectionProxy) -> Tuple[SearchPath, Optional[Pin]]: mapping: Mapping[str, Tuple[Type[SearchPath], Type[Pin]]] = { 'alias': (AliasSearchPath, AliasPin), @@ -643,7 +643,7 @@ def pinCommand(args: argparse.Namespace) -> None: if args.channels and section not in args.channels: continue - sp, old_pin = read_search_path(config[section]) + sp, old_pin = read_config_section(config[section]) config[section].update(sp.pin(v, old_pin)._asdict()) @@ -656,7 +656,7 @@ def updateCommand(args: argparse.Namespace) -> None: exprs: Dict[str, str] = {} config = read_config_files(args.channels_file) for section in config: - sp, pin = read_search_path(config[section]) + sp, pin = read_config_section(config[section]) if pin is None: raise Exception( 'Cannot update unpinned channel "%s" (Run "pin" before "update")' %