bug fix list vs set

This commit is contained in:
samuelkcrow 2022-05-02 11:15:37 -07:00
parent 11ea82e782
commit 2b72fbee4e
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ class multi_delay_chain(design.design):
self.pinout_list = [self.rows] # TODO: check for off-by-one here
else:
# Set() to sort in ascending order and remove duplicates
self.pinout_list = set(pinout_list)
self.pinout_list = list(set(pinout_list))
# Check pinout bounds
debug.check(self.pinout_list[-1] <= self.rows,