bstraehle commited on
Commit
11d87fa
1 Parent(s): b0f88ef

Update multi_agent.py

Browse files
Files changed (1) hide show
  1. multi_agent.py +4 -4
multi_agent.py CHANGED
@@ -69,13 +69,13 @@ def run_multi_agent(llm, message):
69
  print(file)
70
  if file :
71
  _, file_extension = os.path.splitext(file)
72
- if file_extension == "py":
73
  file_name_py = file
74
- if file_extension == "sh":
75
  file_name_sh = file
76
 
77
- print(file_name_py)
78
- print(file_name_sh)
79
 
80
  file_path_py = "coding/" + file_name_py
81
  print("##" + file_path_py)
 
69
  print(file)
70
  if file :
71
  _, file_extension = os.path.splitext(file)
72
+ if file_extension == ".py":
73
  file_name_py = file
74
+ if file_extension == ".sh":
75
  file_name_sh = file
76
 
77
+ print("#" + file_name_py)
78
+ print("#" + file_name_sh)
79
 
80
  file_path_py = "coding/" + file_name_py
81
  print("##" + file_path_py)