(self, edit)
| 83 | |
| 84 | class SelectIpv4RangeCommand(sublime_plugin.TextCommand): |
| 85 | def run(self, edit): |
| 86 | ips = select_ipv4_range(self.view) |
| 87 | text = '\n'.join(ips) |
| 88 | new_view(self.view, edit, text) |
| 89 | |
| 90 | |
| 91 | class SelectIpv4PortCommand(sublime_plugin.TextCommand): |
nothing calls this directly
no test coverage detected