|
@@ -18,6 +18,13 @@ class FilterStrategyBase(metaclass=abc.ABCMeta):
|
|
|
else:
|
|
|
self._data_process_config = DataProcessConfigEntity(*args, **kwargs)
|
|
|
|
|
|
+ jupyter = self._data_process_config.jupyter
|
|
|
+ if jupyter:
|
|
|
+ from pandas.core.common import SettingWithCopyWarning
|
|
|
+ import warnings
|
|
|
+ warnings.simplefilter(action="ignore", category=SettingWithCopyWarning)
|
|
|
+ warnings.simplefilter(action="ignore", category=RuntimeWarning)
|
|
|
+
|
|
|
@property
|
|
|
def data_process_config(self):
|
|
|
return self._data_process_config
|