Skip to content

Commit

Permalink
remove merge print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
zsimjee committed Sep 20, 2024
1 parent eb212ba commit 057e677
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions guardrails/validator_service/sequential_validator_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,11 +111,9 @@ def run_validators_stream(
# requires at least 2 validators
def multi_merge(self, original: str, new_values: list[str]) -> Optional[str]:
current = new_values.pop()
print("Fmerging these:", new_values)
while len(new_values) > 0:
nextval = new_values.pop()
current = merge(current, nextval, original)
print("\nFmerge result:", current)
return current

def run_validators_stream_fix(
Expand Down

0 comments on commit 057e677

Please sign in to comment.