(self, edit)
| 97 | |
| 98 | class CountIpv4NumberCommand(sublime_plugin.TextCommand): |
| 99 | def run(self, edit): |
| 100 | text = count_ipv4_number(self.view) |
| 101 | new_view(self.view, edit, text) |
| 102 | |
| 103 | |
| 104 | class ConvertRangeIp2cCommand(sublime_plugin.TextCommand): |
nothing calls this directly
no test coverage detected