Jiang Xiaolan commited on
Commit
b1286d3
·
1 Parent(s): 1301d4b

remove add sys path

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -22,12 +22,12 @@ def clone_repo():
22
 
23
  # 使用 GitHub Token 进行身份验证并克隆仓库
24
  clone_command = f'git clone https://{github_token}@github.com/mamba-ai/invoice_agent.git'
25
- if os.path.exists('invoice_agent'):
 
26
  logger.warning("Repository already exists.")
27
- repo_dir = 'invoice_agent'
28
  # 将仓库路径添加到 Python 模块搜索路径中
29
- logger.warning(f"Adding {os.path.abspath(repo_dir)} to sys.path")
30
- sys.path.append(os.path.abspath(repo_dir))
31
  return True
32
  else:
33
  logger.info("Cloning repository...")
 
22
 
23
  # 使用 GitHub Token 进行身份验证并克隆仓库
24
  clone_command = f'git clone https://{github_token}@github.com/mamba-ai/invoice_agent.git'
25
+ repo_dir = 'invoice_agent'
26
+ if os.path.exists(repo_dir):
27
  logger.warning("Repository already exists.")
 
28
  # 将仓库路径添加到 Python 模块搜索路径中
29
+ # logger.warning(f"Adding {os.path.abspath(repo_dir)} to sys.path")
30
+ # sys.path.append(os.path.abspath(repo_dir))
31
  return True
32
  else:
33
  logger.info("Cloning repository...")