Skip to content

Commit

Permalink
merge fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
heikoklein committed Jul 24, 2024
1 parent d3d409f commit 01a158a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyaerocom/io/mscw_ctm/reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
from pyaerocom import const
from pyaerocom.exceptions import VarNotAvailableError
from pyaerocom.griddeddata import GriddedData
from pyaerocom.projection_information import ProjectionInformation
from pyaerocom.io.gridded_reader import GriddedReader
from pyaerocom.projection_information import ProjectionInformation
from pyaerocom.units_helpers import UALIASES

from .additional_variables import (
Expand Down Expand Up @@ -763,7 +763,7 @@ def _read_var_from_file(self, var_name_aerocom, ts_type):
data.time.attrs["long_name"] = "time"
data.time.attrs["standard_name"] = "time"
prefix = emep_var.split("_")[0]
data.attrs["units"] = self.preprocess_units(data.units, prefix)
data.attrs["units"] = self._preprocess_units(data.units, prefix)
return data, proj_info

@staticmethod
Expand Down

0 comments on commit 01a158a

Please sign in to comment.