(self)
| 238 | return False |
| 239 | |
| 240 | def is_guest(self): |
| 241 | if "nw_type" in self.address and self.address['nw_type'] in ['guest']: |
| 242 | return True |
| 243 | return False |
| 244 | |
| 245 | def is_public(self): |
| 246 | if "nw_type" in self.address and self.address['nw_type'] in ['public']: |
no outgoing calls
no test coverage detected