From 7d04cf351bfb6052e5530e5b388dccd1c64f0385 Mon Sep 17 00:00:00 2001 From: katyak Date: Sun, 12 Dec 2021 16:07:58 +0200 Subject: [PATCH] ML-1020: changing documentation to match pr#286 --- storey/sources.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/storey/sources.py b/storey/sources.py index 787156d5..40f9bb78 100644 --- a/storey/sources.py +++ b/storey/sources.py @@ -793,9 +793,9 @@ class ParquetSource(DataframeSource): :parameter paths: paths to Parquet files :parameter columns : list, default=None. If not None, only these columns will be read from the file. - :parameter start_filter: datetime. If not None, the results will be filtered by partitions and 'filter_column' >= start_filter. + :parameter start_filter: datetime. If not None, the results will be filtered by partitions and 'filter_column' > start_filter. Default is None - :parameter end_filter: datetime. If not None, the results will be filtered by partitions 'filter_column' < end_filter. + :parameter end_filter: datetime. If not None, the results will be filtered by partitions 'filter_column' <= end_filter. Default is None :parameter filter_column: Optional. if not None, the results will be filtered by this column and before and/or after """