1# flake8: noqa 2import torch 3 4 5torch.set_rng_state( 6 [ # E: Argument 1 to "set_rng_state" has incompatible type "list[int]"; expected "Tensor" [arg-type] 7 1, 8 2, 9 3, 10 ] 11) 12