diff --git a/sdv/data_processing/data_processor.py b/sdv/data_processing/data_processor.py index 9b44ff90b..f3e0ef158 100644 --- a/sdv/data_processing/data_processor.py +++ b/sdv/data_processing/data_processor.py @@ -575,7 +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} + function_kwargs = {'min': 0, 'max': 9999999} for key in INTEGER_BOUNDS: if key in column_dtype: _, max_value = INTEGER_BOUNDS[key]