mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-05-13 08:26:56 +00:00
Fix mypy editor integration for changes in syntastic
This commit is contained in:
parent
3c8640f9ad
commit
3fb125dba7
1 changed files with 6 additions and 1 deletions
|
|
@ -1,14 +1,19 @@
|
|||
#!/usr/bin/env python
|
||||
|
||||
import os
|
||||
import subprocess
|
||||
import sys
|
||||
|
||||
files = [x for x in sys.argv[1:] if not x.startswith('-')]
|
||||
base = os.path.dirname(os.path.abspath(__file__))
|
||||
files = [os.path.relpath(x, base) for x in sys.argv[1:] if not x.startswith('-')]
|
||||
if not files:
|
||||
raise SystemExit(subprocess.Popen(['mypy'] + sys.argv[1:]).wait())
|
||||
|
||||
output = subprocess.run('dmypy run -- --follow-imports=error --show-column-numbers --no-color-output'.split(), stdout=subprocess.PIPE).stdout
|
||||
q = files[0] + ':'
|
||||
rc = 0
|
||||
for line in output.decode('utf-8').splitlines():
|
||||
if line.startswith(q):
|
||||
print(line)
|
||||
rc = 1
|
||||
raise SystemExit(rc)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue