Skip to content

Commit

Permalink
style: format
Browse files Browse the repository at this point in the history
  • Loading branch information
cpcloud committed May 26, 2024
1 parent 9091491 commit 94c53ef
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ibis/backends/mysql/compiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,9 @@ def visit_StringFind(self, op, *, arg, substr, start, end):

def visit_LRStrip(self, op, *, arg, position):
return reduce(
lambda arg, char: self.f.trim(this=arg, position=self.v[position], expression=char),
lambda arg, char: self.f.trim(
this=arg, position=self.v[position], expression=char
),
map(
partial(self.cast, to=dt.string),
map(self.f.unhex, map(self.f.hex, string.whitespace.encode())),
Expand Down

0 comments on commit 94c53ef

Please sign in to comment.