(self, edit)
| 334 | |
| 335 | class Base64DecodeTextCommand(sublime_plugin.TextCommand): |
| 336 | def run(self, edit): |
| 337 | text = get_buffer_text(self.view) |
| 338 | text = base64.b64decode(text.encode()) |
| 339 | panel_print(self.view, edit, text.decode()) |
| 340 | |
| 341 | |
| 342 | class Base64EncodeLineCommand(sublime_plugin.TextCommand): |
nothing calls this directly
no test coverage detected