Internal change

PiperOrigin-RevId: 607803148
This commit is contained in:
Rebecca Chen 2024-02-16 22:32:41 +00:00 committed by jax authors
parent 772743e6a4
commit 6b7dd6ff38

View File

@ -696,7 +696,7 @@ class LoweringRuleContext:
assert self.tokens_out is None, 'Should only set `tokens_out` once.'
self.tokens_out = tokens_out
def replace(self, **kw): return dataclasses.replace(self, **kw)
def replace(self, **kw): return dataclasses.replace(self, **kw) # pytype: disable=wrong-arg-types # dataclasses-replace-types
if not MYPY: