From 4a5e0da678e4156d58039fc98a13c08961f7cfad Mon Sep 17 00:00:00 2001 From: Deathn0t Date: Mon, 29 Jul 2024 09:32:36 +0200 Subject: [PATCH] added whitespace after not keyword --- sdv/constraints/tabular.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdv/constraints/tabular.py b/sdv/constraints/tabular.py index c6ef7045e..ba6f8310f 100644 --- a/sdv/constraints/tabular.py +++ b/sdv/constraints/tabular.py @@ -1136,7 +1136,7 @@ def _get_is_datetime(self): is_high_datetime = _is_datetime_type(self._high_value) is_datetime = is_low_datetime and is_high_datetime and is_column_datetime - if is_column_datetime and not(all([is_low_datetime, is_column_datetime, is_high_datetime])): + if is_column_datetime and not all([is_low_datetime, is_column_datetime, is_high_datetime]): raise ValueError('The constraint column and bounds must all be datetime.') return is_datetime