| 14 | |
| 15 | |
| 16 | class Local(NodeList): |
| 17 | HOSTNAME = socket.gethostname() |
| 18 | |
| 19 | def resolve(self) -> List[str]: |
| 20 | return [Local.HOSTNAME] |
| 21 | |
| 22 | def is_localhost(self) -> bool: |
| 23 | return True |
| 24 | |
| 25 | |
| 26 | class PBS(NodeList): |
no outgoing calls
no test coverage detected