(self, edit)
| 109 | |
| 110 | class ConvertRangeC2ipCommand(sublime_plugin.TextCommand): |
| 111 | def run(self, edit): |
| 112 | text = convert_C_to_ipv4(self.view) |
| 113 | new_view(self.view, edit, text) |
| 114 | |
| 115 | |
| 116 | class ConvertRangeIp2bCommand(sublime_plugin.TextCommand): |
nothing calls this directly
no test coverage detected