Skip to content

Commit

Permalink
add missing kwarg to BaseHiGraphModel.__init__
Browse files Browse the repository at this point in the history
  • Loading branch information
leifdenby committed Sep 27, 2024
1 parent b7bf506 commit 5df2ecf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions neural_lam/models/base_hi_graph_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ class BaseHiGraphModel(BaseGraphModel):
Base class for hierarchical graph models.
"""

def __init__(self, args):
super().__init__(args)
def __init__(self, args, datastore):
super().__init__(args, datastore=datastore)

# Track number of nodes, edges on each level
# Flatten lists for efficient embedding
Expand Down

0 comments on commit 5df2ecf

Please sign in to comment.