Update curve_nodes.py

This commit is contained in:
kijai 2024-07-07 19:28:16 +03:00
parent 296a1beb66
commit ffafc9c2c6

View File

@ -632,7 +632,7 @@ and returns that as the selected output type.
# Convert mean_values to the specified output_type
if output_type == 'list':
out = mean_values,
out = mean_values
elif output_type == 'pandas series':
try:
import pandas as pd