Skip to content

Commit

Permalink
refactor: clean up time series utils
Browse files Browse the repository at this point in the history
  • Loading branch information
asewnath committed Nov 15, 2024
1 parent 8faddd2 commit 6608a31
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/eva/time_series/time_series_utils.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import os
import numpy as np
import xarray as xr
from abc import ABC, abstractmethod
from eva.data.data_driver import data_driver
from eva.data.data_collections import DataCollections

Expand Down Expand Up @@ -32,7 +31,8 @@ def check_file(filename, logger):


def create_empty_data(timeseries_config, dataset_config, timing, logger):
""" Creating an empty data array to use for missing cycle times """
""" Creating an empty data collection to use for missing cycle times """

dc_tmp = DataCollections()
collection = timeseries_config["collection"]
data_driver(dataset_config, dc_tmp, timing, logger)
Expand Down

0 comments on commit 6608a31

Please sign in to comment.