From 8282ad0e8d2a66a7ceaa3a1715abfa6fd50905ef Mon Sep 17 00:00:00 2001 From: R-Palazzo Date: Fri, 25 Oct 2024 16:20:44 -0400 Subject: [PATCH] fix test --- sdv/data_processing/data_processor.py | 1 + 1 file changed, 1 insertion(+) diff --git a/sdv/data_processing/data_processor.py b/sdv/data_processing/data_processor.py index d490a504d..9b44ff90b 100644 --- a/sdv/data_processing/data_processor.py +++ b/sdv/data_processing/data_processor.py @@ -575,6 +575,7 @@ def _create_config(self, data, columns_created_by_constraints): if is_numeric: function_name = 'random_int' column_dtype = str(column_dtype).lower() + function_kwargs = {'min': 0, 'max': 999999999} for key in INTEGER_BOUNDS: if key in column_dtype: _, max_value = INTEGER_BOUNDS[key]