Skip to content

Commit

Permalink
fix endpoint in app
Browse files Browse the repository at this point in the history
  • Loading branch information
prohde committed Sep 18, 2023
1 parent f656104 commit 9c9b934
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions TravSHACL/app/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def validation():
shape_schema = ShapeSchema(
schema_dir=schema_path,
schema_format='SHACL',
endpoint_url=endpoint,
endpoint=endpoint,
graph_traversal=GraphTraversal.DFS,
heuristics=HEURISTICS,
use_selective_queries=True,
Expand Down Expand Up @@ -89,4 +89,4 @@ def travshacl_to_html_table(trav_result, time_used):
return html

if __name__ == '__main__':
app.run(host='0.0.0.0', port=5000, debug=True)
app.run(host='0.0.0.0', port=5000, debug=True)

0 comments on commit 9c9b934

Please sign in to comment.