Skip to content

Commit

Permalink
Fix bug in datastore loading in graph creation script
Browse files Browse the repository at this point in the history
  • Loading branch information
joeloskarsson committed Jan 10, 2025
1 parent 5d94325 commit b296095
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions neural_lam/build_rectangular_graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

# Local
from . import utils
from .config import load_config_and_datastore
from .config import load_config_and_datastores

WMG_ARCHETYPES = {
"keisler": wmg.create.archetype.create_keisler_graph,
Expand Down Expand Up @@ -81,7 +81,7 @@ def main(input_args=None):
args.graph_name is not None
), "Specify the name to save graph as with --graph_name"

_, datastore, datastore_boundary = load_config_and_datastore(
_, datastore, datastore_boundary = load_config_and_datastores(
config_path=args.config_path
)

Expand Down

0 comments on commit b296095

Please sign in to comment.