Skip to content

Commit

Permalink
Update utils
Browse files Browse the repository at this point in the history
  • Loading branch information
29riyasaxena committed Jul 12, 2024
1 parent a182f8c commit 9f86449
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions python/grass/jupyter/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,8 +188,7 @@ def query_raster(coord, raster_list):
if len(output_list) == 1:
return ""

output_list.append("</table>")
output_list.append("<br>")
output_list.extend(("</table>", "<br>"))
final_output = "".join(output_list)
return style_table(final_output)

Expand Down Expand Up @@ -254,8 +253,7 @@ def query_vector(coord, vector_list, distance):
if len(output_list) == 1:
return ""

output_list.append("</table>")
output_list.append("<br>")
output_list.extend(("</table>", "<br>"))
final_output = "".join(output_list)
return style_table(final_output)

Expand Down

0 comments on commit 9f86449

Please sign in to comment.