Skip to content

Commit 9b2d880

Browse files
guilyxactions-user
authored andcommitted
Apply formatting changes
1 parent 5321d78 commit 9b2d880

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

jupyddl/data_analyst.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def __plot_data(self, times, total_nodes, plot_title):
4747
plt.plot(nodes_sorted, times_y, "r:o")
4848
plt.xlabel("Number of opened nodes")
4949
plt.ylabel("Planning computation time")
50-
plt.xscale('symlog')
50+
plt.xscale("symlog")
5151
plt.title(plot_title)
5252
plt.grid(True)
5353
plt.show(block=False)
@@ -56,7 +56,7 @@ def __scatter_data(self, times, total_nodes, plot_title):
5656
plt.scatter(total_nodes, times)
5757
plt.xlabel("Number of opened nodes")
5858
plt.ylabel("Planning computation time")
59-
plt.xscale('symlog')
59+
plt.xscale("symlog")
6060
plt.title(plot_title)
6161
plt.grid(True)
6262
plt.show(block=False)

0 commit comments

Comments
 (0)