added compatibility for python 3.8

This commit is contained in:
Patrick762
2023-06-15 15:37:08 +02:00
parent ed26ad0813
commit d094e8f8de
6 changed files with 213 additions and 87 deletions

15
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,15 @@
{
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter"
},
"python.formatting.provider": "none",
"python.testing.unittestArgs": [
"-v",
"-s",
"./tests",
"-p",
"*test.py"
],
"python.testing.pytestEnabled": false,
"python.testing.unittestEnabled": true
}