Skip to content

Commit

Permalink
Synatx edits to agg_stat
Browse files Browse the repository at this point in the history
  • Loading branch information
Ishita Srivastava committed Sep 11, 2024
1 parent 630bc20 commit 8c2026c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions metcalcpy/agg_stat.py
Original file line number Diff line number Diff line change
Expand Up @@ -650,7 +650,7 @@ def _prepare_val1l2_data(self, data_for_prepare):
logger.error("Input data for preparation is None.")
raise ValueError("Input data cannot be None.")

try
try:
met_version = get_met_version(data_for_prepare)
major = int(met_version.major)
logger.debug(f"Detected MET version: {major}")
Expand Down Expand Up @@ -695,7 +695,7 @@ def _prepare_vcnt_data(self, data_for_prepare):
logger.error("Input data for preparation is None.")
raise ValueError("Input data cannot be None.")

try
try:
met_version = get_met_version(data_for_prepare)
major = int(met_version.major)
logger.debug(f"Detected MET version: {major}")
Expand Down

0 comments on commit 8c2026c

Please sign in to comment.