Skip to content

Commit

Permalink
fix: typo on local path
Browse files Browse the repository at this point in the history
  • Loading branch information
kmaphoenix committed Sep 11, 2023
1 parent 0e81f49 commit 3c14751
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dfcx_scrapi/agent_extract/agents.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ def download_and_extract(self, agent_local_path: str, gcs_bucket_uri: str):
def process_agent(self, agent_id: str, gcs_bucket_uri: str,
environment_display_name: str = None):
"""Process the specified Agent for offline data gathering."""
agent_local_path = "tmp/agent"
agent_local_path = "/tmp/agent"
self.prep_local_dir(agent_local_path)
self.export_agent(agent_id, gcs_bucket_uri, environment_display_name)
self.download_and_extract(agent_local_path, gcs_bucket_uri)
Expand Down

0 comments on commit 3c14751

Please sign in to comment.