Setup Mariadb

This commit is contained in:
Johannes Randerath
2024-05-31 22:32:30 +02:00
parent 1b0d8a2ce9
commit a18927bad1
19 changed files with 233 additions and 3 deletions

8
bin/pylint-config Executable file
View File

@@ -0,0 +1,8 @@
#!/home/johannes/code/transport-accessibility/bin/python3
# -*- coding: utf-8 -*-
import re
import sys
from pylint import _run_pylint_config
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(_run_pylint_config())