summaryrefslogtreecommitdiff
path: root/venv/Lib/site-packages/isort/pylama_isort.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/isort/pylama_isort.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/isort/pylama_isort.py')
-rw-r--r--venv/Lib/site-packages/isort/pylama_isort.py29
1 files changed, 0 insertions, 29 deletions
diff --git a/venv/Lib/site-packages/isort/pylama_isort.py b/venv/Lib/site-packages/isort/pylama_isort.py
deleted file mode 100644
index 6fa235f..0000000
--- a/venv/Lib/site-packages/isort/pylama_isort.py
+++ /dev/null
@@ -1,29 +0,0 @@
-import os
-import sys
-
-from pylama.lint import Linter as BaseLinter
-
-from .isort import SortImports
-
-
-class Linter(BaseLinter):
-
- def allow(self, path):
- """Determine if this path should be linted."""
- return path.endswith('.py')
-
- def run(self, path, **meta):
- """Lint the file. Return an array of error dicts if appropriate."""
- with open(os.devnull, 'w') as devnull:
- # Suppress isort messages
- sys.stdout = devnull
-
- if SortImports(path, check=True).incorrectly_sorted:
- return [{
- 'lnum': 0,
- 'col': 0,
- 'text': 'Incorrectly sorted imports.',
- 'type': 'ISORT'
- }]
- else:
- return []