(self, flag: str)
| 174 | return ret |
| 175 | |
| 176 | def names_for(self, flag: str) -> List[str]: |
| 177 | # TODO: should probably be a method on Lexicon/AliasDict |
| 178 | return list(set([flag] + self.flags.aliases_of(flag))) |
| 179 | |
| 180 | def help_for(self, flag: str) -> Tuple[str, str]: |
| 181 | """ |
no outgoing calls
no test coverage detected