(self, edit)
| 76 | |
| 77 | class SelectIpv4WanCommand(sublime_plugin.TextCommand): |
| 78 | def run(self, edit): |
| 79 | lan_ips,wan_ips =select_ipv4(self.view) |
| 80 | text = '\n'.join(wan_ips) |
| 81 | new_view(self.view, edit, text) |
| 82 | |
| 83 | |
| 84 | class SelectIpv4RangeCommand(sublime_plugin.TextCommand): |
nothing calls this directly
no test coverage detected