Skip to content

Commit

Permalink
Silencio
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisrink10 committed Dec 29, 2023
1 parent 1b6cddf commit 7c75fc4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/basilisp/lang/compiler/optimizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ def _optimize_operator_call( # pylint: disable=unused-argument


@_optimize_operator_call.register(ast.Attribute)
def _optimize_operator_call_attr(fn: ast.Attribute, node: ast.Call) -> ast.AST:
def _optimize_operator_call_attr( # pylint: disable=too-many-return-statements
fn: ast.Attribute, node: ast.Call
) -> ast.AST:
"""Optimize calls to the Python `operator` module down to use the raw Python
operators.
Expand Down

0 comments on commit 7c75fc4

Please sign in to comment.