feat: add production debug config and enhance data handling

Introduced a new debug configuration for production mode in VSCode, facilitating easier debugging in different environments. Additionally, updated the `get_transparency_data` function to handle year and month as strings, ensuring compatibility with subsequent operations. Added a necessary parameter to a function call in `main.py` to align with the updated function signature.
This commit is contained in:
Kumi 2024-07-01 07:04:47 +02:00
parent a37e8ec5c3
commit 1acc142dba
Signed by: kumi
GPG key ID: ECBCC9082395383F
3 changed files with 13 additions and 2 deletions

View file

@ -62,7 +62,7 @@ def catch_all(path):
finances_table = generate_transparency_table(
get_transparency_data(
finances, finances_year, finances_month
finances, finances_year, finances_month, allow_current
)
)