Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
recursive-include templates *
recursive-include frontend *
recursive-include assets *
include README.md
include sample.ipynb
Expand All @@ -7,4 +7,4 @@ include spanner_graphs/*.csv
include spanner_graphs/*.json
include tests/*.json
include third_party/index.js
include third_party/LICENSE.js
include third_party/LICENSE.js
2 changes: 1 addition & 1 deletion spanner_graphs/graph_visualization.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def generate_visualization_html(query: str, port: int, params: str):
# Get the directory of the current file (magics.py)
current_dir = os.path.dirname(os.path.abspath(__file__))

# Go up directories until we find the 'templates' folder
# Go up directories until we find the 'frontend' folder
search_dir = current_dir
while 'frontend' not in os.listdir(search_dir):
parent = os.path.dirname(search_dir)
Expand Down