From c6b58b950496e7abc817aad3025b07bb703163fb Mon Sep 17 00:00:00 2001 From: Cayo Alencar Date: Wed, 5 Feb 2025 17:15:35 -0600 Subject: [PATCH] =?UTF-8?q?fix:=20Corre=C3=A7=C3=A3o=20na=20gera=C3=A7?= =?UTF-8?q?=C3=A3o=20de=20imagens=20e=20no=20caminho=20relativo=20dos=20ar?= =?UTF-8?q?quivos=20de=20origem=20do=20Json=20e=20de=20salvamento=20das=20?= =?UTF-8?q?imagens?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Bots/bot_Twitter.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Bots/bot_Twitter.py b/Bots/bot_Twitter.py index e9f9081..b34d186 100644 --- a/Bots/bot_Twitter.py +++ b/Bots/bot_Twitter.py @@ -261,8 +261,8 @@ def html_generate(obra): print(f"Arquivo HTML gerado em: {file_path}") def main(): - json_file_path = r"C:/projetos/2024-2-Squad07/TestesMapa/obrasgov/obras_com_lat_long.json" - output_dir = r"C:/projetos/2024-2-Squad07/Bots/imagens" + json_file_path = r"./TestesMapa/obrasgov/src/obras_com_lat_long.json" + output_dir = r"./Bots/imagens" data = load_json(json_file_path)