Skip to content

Commit 01fbc79

Browse files
committed
fix bug
1 parent 5221829 commit 01fbc79

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

run.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,12 +175,12 @@ def main():
175175
run_python_script(algorithm["directory"], algorithm["name"])
176176
run_java_program((algorithm["name"] + "\n"), algorithm["name"])
177177
print(
178-
f"\n=== Running algorithm: {algorithm["directory"]}/{algorithm["name"]} ===")
178+
f"\n=== Running algorithm: {algorithm['directory']}/{algorithm['name']} ===")
179179
elif(args.run == "algorithms" and algorithm["directory"]=="algorithms"):
180180
run_python_script(algorithm["directory"], algorithm["name"])
181181
run_java_program((algorithm["name"] + "\n"), algorithm["name"])
182182
print(
183-
f"\n=== Running algorithm: {algorithm["directory"]}/{algorithm["name"]} ===")
183+
f"\n=== Running algorithm: {algorithm['directory']}/{algorithm['name']} ===")
184184

185185

186186
if args.job == 1:

0 commit comments

Comments
 (0)