Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
Signed-off-by: Ben Cassell <ben.cassell@databricks.com>
  • Loading branch information
benc-db committed Mar 19, 2024
1 parent b86b538 commit d5e7458
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/databricks/sql/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ def filter(self, record):
)
else:
record.args = tuple(
(self.redact(arg) if isinstance(arg, str) else arg) for arg in record.args
(self.redact(arg) if isinstance(arg, str) else arg)
for arg in record.args
)

return True
Expand Down

0 comments on commit d5e7458

Please sign in to comment.