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

Commit 2612e92

Browse files
committed
feat: apply formatter
1 parent 4da731f commit 2612e92

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
@@ -404,7 +404,8 @@ def render_checksum(self, c: Compiler, elem: Checksum) -> str:
404404
def render_concat(self, c: Compiler, elem: Concat) -> str:
405405
if self._prevent_overflow_when_concat:
406406
items = [
407-
f"{self.compile(c, Code(self.md5_as_hex(self.to_string(self.compile(c, expr)))))}" for expr in elem.exprs
407+
f"{self.compile(c, Code(self.md5_as_hex(self.to_string(self.compile(c, expr)))))}"
408+
for expr in elem.exprs
408409
]
409410

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

0 commit comments

Comments
 (0)