_set_main_color: does not need to return

This commit is contained in:
Daniel Hahler 2020-02-12 03:11:54 +01:00
parent 114de91ab7
commit fa877665ad
1 changed files with 1 additions and 2 deletions

View File

@ -1049,7 +1049,7 @@ class TerminalReporter:
main_color = "yellow"
return main_color
def _set_main_color(self) -> Tuple[str, List[str]]:
def _set_main_color(self) -> None:
unknown_types = [] # type: List[str]
for found_type in self.stats.keys():
if found_type: # setup/teardown reports have an empty key, ignore them
@ -1057,7 +1057,6 @@ class TerminalReporter:
unknown_types.append(found_type)
self._known_types = list(KNOWN_TYPES) + unknown_types
self._main_color = self._determine_main_color(bool(unknown_types))
return self._main_color, self._known_types
def build_summary_stats_line(self) -> Tuple[List[Tuple[str, Dict[str, bool]]], str]:
main_color, known_types = self._get_main_color()