Skip to content

Commit

Permalink
Merge pull request #1083 from guardrails-ai/remove-merge-print-statem…
Browse files Browse the repository at this point in the history
…ents

remove merge print statements
  • Loading branch information
zsimjee authored Sep 20, 2024
2 parents eb212ba + 057e677 commit 0e98196
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 0e98196

Please sign in to comment.