Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
sushi30 committed Aug 6, 2024
1 parent 4e8d55d commit 40d135a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,11 @@ def __init__(self, param: str, dialect: str):
super().__init__(f"Unsupported dialect in param {param}: {dialect}")


def masked(s: str, masked: bool = True) -> str:
def masked(s: str, mask: bool = True) -> str:
"""Mask a string if masked is True otherwise return the string.
Only for development purposes, do not use in production.
Change it False if you want to see the data in the logs."""
return "***" if masked else s
return "***" if mask else s


class TableDiffValidator(BaseTestValidator, SQAValidatorMixin):
Expand Down

0 comments on commit 40d135a

Please sign in to comment.