Skip to content

Commit

Permalink
Remove debug statement from #371
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelnchin authored Oct 8, 2022
1 parent ca2d904 commit fbb3756
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/graph_notebook/magics/graph_magic.py
Original file line number Diff line number Diff line change
Expand Up @@ -810,7 +810,6 @@ def gremlin(self, line, cell, local_ns: dict = None):
query_res_reformat.append([{'__DUMMY_KEY__': ['DUMMY_VALUE']}])
results_df = pd.DataFrame(query_res_reformat)
results_df.drop(results_df.index[-1], inplace=True)
display(results_df)
results_df.insert(0, "#", range(1, len(results_df) + 1))
if len(results_df.columns) == 2 and int(results_df.columns[1]) == 0:
results_df.rename({results_df.columns[1]: 'Result'}, axis='columns', inplace=True)
Expand Down

0 comments on commit fbb3756

Please sign in to comment.