Skip to content

Commit

Permalink
Fixed path for temporary HTML file
Browse files Browse the repository at this point in the history
  • Loading branch information
ivnglkv committed Apr 9, 2024
1 parent 1057795 commit 8e01118
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/api_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ async def process_incoming_ws_request(

document = generation_data.document
random_document_key = str(uuid.uuid4())
html_file = Path(f"app/analyzed_page/{random_document_key}.html")
html_file = Path(f"analyzed_page/{random_document_key}.html")
html_file.write_text(inject_css_selector_generator_scripts(document))

for element_id in elements_ids:
Expand Down

0 comments on commit 8e01118

Please sign in to comment.