chore: minor clean up / formatting (#233)

to get familiarize with the project
This commit is contained in:
Xupeng (Tony) Tong
2022-12-02 02:50:36 +08:00
committed by GitHub
parent 473943643e
commit bb4bf9d6d0
18 changed files with 51 additions and 32 deletions

View File

@@ -28,7 +28,7 @@ class FakeChain(Chain, BaseModel):
outputs = {}
for var in self.output_variables:
variables = [inputs[k] for k in self.input_variables]
outputs[var] = " ".join(variables) + "foo"
outputs[var] = f"{' '.join(variables)}foo"
return outputs