Rename library

Signed-off-by: András Schmelczer <andras@schmelczer.dev>
This commit is contained in:
Andras Schmelczer 2022-05-08 22:04:55 +02:00
parent 01befc54a6
commit 04404f2fc4
141 changed files with 844 additions and 842 deletions

8
.vscode/tasks.json vendored
View file

@ -4,9 +4,9 @@
{
"label": "Format and lint Python",
"type": "shell",
"command": "source .env/bin/activate && scripts/format-python.sh good_ai && scripts/format-python.sh example",
"command": "source .env/bin/activate && scripts/format-python.sh great_ai && scripts/format-python.sh example",
"windows": {
"command": ".env/bin/activate.bat; scripts/format-python.sh good_ai; scripts\\format-python.sh example"
"command": ".env/bin/activate.bat; scripts/format-python.sh great_ai; scripts\\format-python.sh example"
},
"group": "test",
"presentation": {
@ -20,9 +20,9 @@
{
"label": "Test Python",
"type": "shell",
"command": "source .env/bin/activate && python3 -m pytest good_ai",
"command": "source .env/bin/activate && python3 -m pytest great_ai",
"windows": {
"command": ".env/bin/activate.bat; python3 -m pytest good_ai"
"command": ".env/bin/activate.bat; python3 -m pytest great_ai"
},
"group": "test",
"presentation": {