Rename functions for consistency

This commit is contained in:
Joscha
2021-05-25 15:49:06 +02:00
parent 40144f8bd8
commit 5a331663e4
2 changed files with 5 additions and 7 deletions

View File

@ -170,8 +170,7 @@ class Config:
def dump_to_stdout(self) -> None:
self._parser.write(sys.stdout)
# TODO Rename to "crawl_sections"
def crawler_sections(self) -> List[Tuple[str, SectionProxy]]:
def crawl_sections(self) -> List[Tuple[str, SectionProxy]]:
result = []
for name, proxy in self._parser.items():
if name.startswith("crawl:"):
@ -179,8 +178,7 @@ class Config:
return result
# TODO Rename to "auth_sections"
def authenticator_sections(self) -> List[Tuple[str, SectionProxy]]:
def auth_sections(self) -> List[Tuple[str, SectionProxy]]:
result = []
for name, proxy in self._parser.items():
if name.startswith("auth:"):