Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove warnings from sea ice metrics #1048

Merged
merged 5 commits into from
Feb 2, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Prev Previous commit
change logging
  • Loading branch information
Ana Ordonez authored and acordonez committed Feb 2, 2024
commit f0756bb112b0b7edefedb8496967cbcc58096462
4 changes: 3 additions & 1 deletion pcmdi_metrics/sea_ice/sea_ice_driver.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#!/usr/bin/env python

import datetime
import glob
import json
import logging
import os
import sys

Expand Down Expand Up @@ -397,6 +397,8 @@ def get_xy_coords(ds, xvar):


if __name__ == "__main__":
logging.getLogger("xcdat").setLevel(logging.ERROR)

parser = create_sea_ice_parser()
parameter = parser.get_parameter(argparse_vals_only=False)

Expand Down