Get the alias by name
(self, name: str)
| 34 | self.alias_to_primary[primary] = primary |
| 35 | |
| 36 | def get(self, name: str): |
| 37 | """ |
| 38 | Get the alias by name |
| 39 | """ |
| 40 | return self.primary_to_aliases.get(name, set()) |
| 41 | |
| 42 | def get_primary(self, name: str): |
| 43 | """ |
no outgoing calls
no test coverage detected