Skip to content

Commit

Permalink
pre-commit fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
observingClouds committed Oct 30, 2024
1 parent 39b90a1 commit 0eeca64
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion mllam_data_prep/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
"""
import argparse
import os
from loguru import logger
from pathlib import Path

from loguru import logger

from .create_dataset import create_dataset_zarr

# Attempt to import psutil and dask.distributed modules
Expand Down
2 changes: 1 addition & 1 deletion tests/test_distributed.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def distributed():
importlib.import_module("dask.distributed")

return True
except ModuleNotFoundError, ImportError:
except (ModuleNotFoundError, ImportError):
return False


Expand Down

0 comments on commit 0eeca64

Please sign in to comment.