We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8bf3572 commit b233c80Copy full SHA for b233c80
project/datasets/builder/create_hdf5_dataset.py
@@ -1,6 +1,11 @@
1
import click
2
import logging
3
import os
4
+import warnings
5
+
6
+from hickle.lookup import SerializedWarning
7
8
+warnings.simplefilter("ignore", category=SerializedWarning)
9
10
from pathlib import Path
11
from parallel import submit_jobs
0 commit comments