VSCode Python configuration

This commit is contained in:
2020-04-15 00:47:07 +02:00
parent ecd08d20ef
commit 013c52be61
26 changed files with 597 additions and 1 deletions

10
backend/pyenv/bin/isort Executable file
View File

@ -0,0 +1,10 @@
#!/home/phillipk/Projekte/Software/StuK/KaraokeWarteliste/backend/pyenv/bin/python
# -*- coding: utf-8 -*-
import re
import sys
from isort.main import main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
sys.exit(main())