Skip to content
This repository was archived by the owner on May 17, 2024. It is now read-only.

Commit 8065192

Browse files
committed
feat: apply formatter
1 parent 12388da commit 8065192

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

data_diff/databases/base.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,8 @@ def render_checksum(self, c: Compiler, elem: Checksum) -> str:
403403
def render_concat(self, c: Compiler, elem: Concat) -> str:
404404
if self._prevent_overflow_when_concat:
405405
items = [
406-
f"{self.compile(c, Code(self.md5_as_hex(self.to_string(self.compile(c, expr)))))}" for expr in elem.exprs
406+
f"{self.compile(c, Code(self.md5_as_hex(self.to_string(self.compile(c, expr)))))}"
407+
for expr in elem.exprs
407408
]
408409

409410
# We coalesce because on some DBs (e.g. MySQL) concat('a', NULL) is NULL

0 commit comments

Comments
 (0)