Feat: activate solution worker
This commit is contained in:
14
bopytex/worker/activate_corr.py
Normal file
14
bopytex/worker/activate_corr.py
Normal file
@@ -0,0 +1,14 @@
|
||||
from bopytex.message import Message
|
||||
|
||||
|
||||
def activate_corr(args, deps, output):
|
||||
no_solution = args["latex"]["no_solution"]
|
||||
solution = args["latex"]["solution"]
|
||||
|
||||
with open(deps[0], "r") as input_f:
|
||||
with open(output, "w") as output_f:
|
||||
for line in input_f.readlines():
|
||||
output_f.write(line.replace(no_solution, solution))
|
||||
|
||||
return Message(0, [f"ACTIVATE CORR - {deps[0]} to {output}"], [])
|
||||
|
||||
Reference in New Issue
Block a user