-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
HUGE REFRACTOR (now added scalable suport for various databases in th…
…e future)
- Loading branch information
Showing
14 changed files
with
783 additions
and
371 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
*.pyc | ||
src/shared_components/api/bot_api/sensitive/* | ||
src/client/bot_api/sensitive/* | ||
venv/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,19 @@ | ||
{ | ||
"python.linting.enabled": true, | ||
"python.linting.mypyEnabled": true, | ||
"python.linting.enabled": true | ||
} | ||
"python.linting.pylintEnabled": true, | ||
"python.linting.flake8Enabled": false, // Desabilite o flake8 se não estiver usando | ||
"python.linting.lintOnSave": true, | ||
"python.linting.mypyArgs": [ | ||
"--ignore-missing-imports" | ||
], | ||
"python.linting.pylintArgs": [ | ||
"--disable=C0111" // Exemplo de desabilitar uma verificação específica do pylint | ||
], | ||
"python.formatting.provider": "black", | ||
"python.formatting.blackArgs": [ | ||
"--line-length", | ||
"88" | ||
], | ||
"editor.formatOnSave": true | ||
} |
Binary file not shown.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/shared_components/data_colect.py → src/client/data_colect.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
Oops, something went wrong.