Skip to content

Commit

Permalink
fix type error
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacob Mathias Schreiner committed Feb 14, 2025
1 parent 86d9522 commit d6ff240
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mllam_data_prep/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import psutil
from dask.diagnostics import ProgressBar
from dask.distributed import LocalCluster
except ImportError or ModuleNotFoundError: # pragma: no cover
except (ImportError, ModuleNotFoundError): # pragma: no cover
DASK_DISTRIBUTED_AVAILABLE = False

if __name__ == "__main__": # pragma: no cover
Expand Down

0 comments on commit d6ff240

Please sign in to comment.