summaryrefslogtreecommitdiff
path: root/venv/Lib/site-packages/pylint/__init__.py
diff options
context:
space:
mode:
authorpravindalve2023-05-30 04:20:14 +0530
committerGitHub2023-05-30 04:20:14 +0530
commitcbdd7ca21f1f673a3a739065098f7cc6c9c4b881 (patch)
tree595e888c38f00a314e751096b6bf636a544a5efe /venv/Lib/site-packages/pylint/__init__.py
parent7740d1ca0c2e6bf34900460b0c58fa4d528577fb (diff)
parent280c6aa89a15331fb76b7014957953dc72af6093 (diff)
downloadChemical-Simulator-GUI-master.tar.gz
Chemical-Simulator-GUI-master.tar.bz2
Chemical-Simulator-GUI-master.zip
Merge pull request #63 from brenda-br/Fix-35HEADmaster
Restructure Project and Deployment
Diffstat (limited to 'venv/Lib/site-packages/pylint/__init__.py')
-rw-r--r--venv/Lib/site-packages/pylint/__init__.py43
1 files changed, 0 insertions, 43 deletions
diff --git a/venv/Lib/site-packages/pylint/__init__.py b/venv/Lib/site-packages/pylint/__init__.py
deleted file mode 100644
index 8980938..0000000
--- a/venv/Lib/site-packages/pylint/__init__.py
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright (c) 2008, 2012 LOGILAB S.A. (Paris, FRANCE) <contact@logilab.fr>
-# Copyright (c) 2014, 2016-2017 Claudiu Popa <pcmanticore@gmail.com>
-# Copyright (c) 2014 Arun Persaud <arun@nubati.net>
-# Copyright (c) 2015 Ionel Cristian Maries <contact@ionelmc.ro>
-# Copyright (c) 2018 Nick Drozd <nicholasdrozd@gmail.com>
-
-# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
-# For details: https://github.com/PyCQA/pylint/blob/master/COPYING
-
-import sys
-
-from pylint.__pkginfo__ import version as __version__
-from pylint.checkers.similar import Run as SimilarRun
-from pylint.epylint import Run as EpylintRun
-from pylint.lint import Run as PylintRun
-from pylint.pyreverse.main import Run as PyreverseRun
-
-
-def run_pylint():
- """run pylint"""
-
- try:
- PylintRun(sys.argv[1:])
- except KeyboardInterrupt:
- sys.exit(1)
-
-
-def run_epylint():
- """run pylint"""
-
- EpylintRun()
-
-
-def run_pyreverse():
- """run pyreverse"""
-
- PyreverseRun(sys.argv[1:])
-
-
-def run_symilar():
- """run symilar"""
-
- SimilarRun(sys.argv[1:])