Skip to content

Commit

Permalink
Cast list of channel keys to list
Browse files Browse the repository at this point in the history
  • Loading branch information
ivalaginja committed Dec 12, 2023
1 parent 7fa860b commit f53b7f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion catkit2/services/aim_tti_plp/aim_tti_plp.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def __init__(self):
self.voltage_streams = {}
self.current_streams = {}
self.stream_threads = {}
for channel_name in self.config['channels']:
for channel_name in list(self.config['channels']):
self.add_current_channel(channel_name)
self.add_voltage_channel(channel_name)

Expand Down

0 comments on commit f53b7f0

Please sign in to comment.