Skip to content

Commit

Permalink
Update loading.py
Browse files Browse the repository at this point in the history
  • Loading branch information
bigKeter authored and ogabrielluiz committed Apr 20, 2023
1 parent ded527a commit 801ff57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backend/langflow/interface/loading.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def load_flow_from_json(path: str):
from langflow.graph import Graph

"""Load flow from json file"""
with open(path, "r", encoding=utf-8") as f:
with open(path, "r", encoding="utf-8") as f:
flow_graph = json.load(f)
data_graph = flow_graph["data"]
nodes = data_graph["nodes"]
Expand Down

0 comments on commit 801ff57

Please sign in to comment.