Skip to content

Commit

Permalink
Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
bittremieux committed Jul 31, 2023
1 parent c5aa17c commit 70bcee1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion casanovo/casanovo.py
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,9 @@ def setup_logging(
warnings_logger.addHandler(file_handler)

# Disable dependency non-critical log messages.
logging.getLogger("depthcharge").setLevel(logging_levels[verbosity.lower()])
logging.getLogger("depthcharge").setLevel(
logging_levels[verbosity.lower()]
)
logging.getLogger("fsspec").setLevel(logging.WARNING)
logging.getLogger("github").setLevel(logging.WARNING)
logging.getLogger("h5py").setLevel(logging.WARNING)
Expand Down

0 comments on commit 70bcee1

Please sign in to comment.