Hi, Where should I put the warning suppression? in...
# ask-community
p
Hi, Where should I put the warning suppression? in definition or somewhere else?
warnings.filterwarnings("ignore", category=dagster.ExperimentalWarning)
ExperimentalWarning: "MultiPartitionsDefinition" is an experimental class.
s
Hi Peter, I think if you put it at the top of your defs file it should work.
p
this did not work:
Copy code
import warnings
import dagster
warnings.filterwarnings("ignore", category=dagster.ExperimentalWarning)