Skip to content

Commit

Permalink
simplify
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiasdiener committed Oct 11, 2022
1 parent 201ea8a commit ae1f27a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions loopy/statistics.py
Original file line number Diff line number Diff line change
Expand Up @@ -929,8 +929,7 @@ def map_constant(self, expr):
map_variable = map_constant

def map_with_tag(self, expr):
meth = getattr(self, expr.expr.mapper_method)
opmap = meth(expr.expr)
opmap = self.rec(expr.expr)
for op in opmap.count_map:
op.tags = expr.tags
return opmap
Expand Down

0 comments on commit ae1f27a

Please sign in to comment.