8 lines
266 B
Bash
Executable file
8 lines
266 B
Bash
Executable file
#!/bin/sh
|
|
'''exec' "/home/borderban/Рабочий стол/client-py/venv/bin/python3" "$0" "$@"
|
|
' '''
|
|
import sys
|
|
from pylint import _run_pylint_config
|
|
if __name__ == '__main__':
|
|
sys.argv[0] = sys.argv[0].removesuffix('.exe')
|
|
sys.exit(_run_pylint_config())
|