mirror of
https://github.com/sherlock-project/sherlock
synced 2024-11-23 12:23:03 +00:00
fix: file not found
This commit is contained in:
parent
47ab466d85
commit
0646063509
1 changed files with 5 additions and 2 deletions
|
@ -4,8 +4,11 @@
|
|||
import json
|
||||
import os
|
||||
|
||||
|
||||
DATA_REL_URI: str = "sherlock_project/resources/data.json"
|
||||
|
||||
# Read the data.json file
|
||||
with open("sherlock_project/resources/data.json", "r", encoding="utf-8") as data_file:
|
||||
with open(DATA_REL_URI, "r", encoding="utf-8") as data_file:
|
||||
data: dict = json.load(data_file)
|
||||
|
||||
# Removes schema-specific keywords for proper processing
|
||||
|
@ -27,7 +30,7 @@ with open("output/sites.mdx", "w") as site_file:
|
|||
site_file.write(f"1. [{social_network}]({url_main}) {is_nsfw}\n")
|
||||
|
||||
# Overwrite the data.json file with sorted data
|
||||
with open("sherlock/resources/data.json", "w") as data_file:
|
||||
with open(DATA_REL_URI, "w") as data_file:
|
||||
sorted_data = json.dumps(data, indent=2, sort_keys=True)
|
||||
data_file.write(sorted_data)
|
||||
data_file.write("\n")
|
||||
|
|
Loading…
Reference in a new issue