Remove comment

This commit is contained in:
space-nuko 2023-05-14 17:46:53 -05:00
parent 07610e0f52
commit 6ff500cac8

View File

@ -40,7 +40,7 @@ def get_input_data_batches(input_data_all):
for input_name, value in input_data_all.items(): for input_name, value in input_data_all.items():
if isinstance(value, dict) and "combinatorial" in value: if isinstance(value, dict) and "combinatorial" in value:
combination_index = input_to_index[input_name] combination_index = input_to_index[input_name]
batch[input_name] = [combination[combination_index]] # batch[input_name] = [combination[combination_index]]
else: else:
# already made into a list by get_input_data # already made into a list by get_input_data
batch[input_name] = value batch[input_name] = value