diff options
author | Claudiu Popa <pcmanticore@gmail.com> | 2018-09-16 17:33:50 +0200 |
---|---|---|
committer | Claudiu Popa <pcmanticore@gmail.com> | 2018-09-17 09:07:42 +0200 |
commit | 3f2842400795ae1aaffc4ae6c35c4ef26857c239 (patch) | |
tree | 057fb96b25b851998edce6dd40b8e496755422a1 /pylint/__init__.py | |
parent | c8e0992d31b831b7d60b1e8582b84068d50c3afd (diff) | |
download | pylint-git-3f2842400795ae1aaffc4ae6c35c4ef26857c239.tar.gz |
Reformat the code with black
Diffstat (limited to 'pylint/__init__.py')
-rw-r--r-- | pylint/__init__.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/pylint/__init__.py b/pylint/__init__.py index c916259a4..a5d43d123 100644 --- a/pylint/__init__.py +++ b/pylint/__init__.py @@ -15,22 +15,29 @@ from .__pkginfo__ import version as __version__ def run_pylint(): """run pylint""" from pylint.lint import Run + try: Run(sys.argv[1:]) except KeyboardInterrupt: sys.exit(1) + def run_epylint(): """run pylint""" from pylint.epylint import Run + Run() + def run_pyreverse(): """run pyreverse""" from pylint.pyreverse.main import Run + Run(sys.argv[1:]) + def run_symilar(): """run symilar""" from pylint.checkers.similar import Run + Run(sys.argv[1:]) |