From c3d765f74543f1b395a02835e16afb5de267664a Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Thu, 5 Aug 2021 11:30:54 +0800 Subject: [PATCH] ad9910: fix type annotations --- artiq/coredevice/ad9910.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/artiq/coredevice/ad9910.py b/artiq/coredevice/ad9910.py index f0cb8e54e..95ad66896 100644 --- a/artiq/coredevice/ad9910.py +++ b/artiq/coredevice/ad9910.py @@ -324,7 +324,7 @@ class AD9910: self.bus.write(data_low) @kernel - def write_ram(self, data: TList(int32)): + def write_ram(self, data: TList(TInt32)): """Write data to RAM. The profile to write to and the step, start, and end address @@ -345,7 +345,7 @@ class AD9910: self.bus.write(data[len(data) - 1]) @kernel - def read_ram(self, data: TList(int32)): + def read_ram(self, data: TList(TInt32)): """Read data from RAM. The profile to read from and the step, start, and end address