Skip to content

Commit 7a726ab

Browse files
committed
fixup! chore: lint unused arguments
1 parent a21e4db commit 7a726ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ibis/backends/sql/compilers/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -641,7 +641,7 @@ def translate(self, op, *, params: Mapping[ir.Value, Any]) -> sge.Expression:
641641
aliases = {}
642642
counter = itertools.count()
643643

644-
def fn(node, _, **kwargs):
644+
def fn(node, __unused__, **kwargs):
645645
result = self.visit_node(node, **kwargs)
646646

647647
# if it's not a relation then we don't need to do anything special

0 commit comments

Comments
 (0)