Guest User

Untitled

a guest
Nov 16th, 2018
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3.  
  4. """
  5. Sublime Text 3 command to clear Flake8Lint marks.
  6.  
  7. How to use:
  8. Save to your "/Sublime Text 3/Packages/User" directory.
  9. """
  10.  
  11. import sys
  12. import sublime_plugin
  13.  
  14.  
  15. class ClearFlake8LintCommand(sublime_plugin.TextCommand):
  16.  
  17. def run(self, edit):
  18. Flake8Lint = sys.modules['Python Flake8 Lint.Flake8Lint'].Flake8Lint
  19. Flake8Lint.cleanup(self.view)
Add Comment
Please, Sign In to add comment