docs: Restructure and expand project documentation, add contribution guidelines and license, and update reporting dependencies.

This commit is contained in:
eddieoz
2025-11-28 21:35:17 +02:00
parent ded1de6b2f
commit 6366baae8d
12 changed files with 370 additions and 155 deletions
+1 -1
View File
@@ -34,7 +34,7 @@ def load_json_data(json_filepath):
sys.exit(1)
try:
with open(json_filepath, 'r') as f:
with open(json_filepath, 'r', encoding='utf-8') as f:
data = json.load(f)
return data
except json.JSONDecodeError as e: