Skip to content

Commit

Permalink
comment out colocation and profile layer limits from model entry
Browse files Browse the repository at this point in the history
  • Loading branch information
lewisblake committed Jul 11, 2023
1 parent 75d80b6 commit efad233
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions pyaerocom/aeroval/modelentry.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ class ModelEntry(BrowseDict):
model_add_vars = DictStrKeysListVals()
model_read_aux = DictType()
model_rename_vars = DictType()
colocation_layer_limits = FlexList()
#colocation_layer_limits = FlexList()
#profile_layer_limits = FlexList()

def __init__(self, model_id, **kwargs):
self.model_id = model_id
Expand All @@ -55,7 +56,8 @@ def __init__(self, model_id, **kwargs):
self.model_add_vars = {}
self.model_rename_vars = {}
self.model_read_aux = {}
self.colocation_layer_limts = None
#self.colocation_layer_limts = None
#self.profile_layer_limits = None

self.update(**kwargs)

Expand Down

0 comments on commit efad233

Please sign in to comment.