Skip to content

Commit

Permalink
Fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
florianneukirchen committed Sep 30, 2024
1 parent 8851cc6 commit 08817e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/qgis/PolarPlot.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def processAlgorithm(self, parameters, context, feedback):
values = vector.values(source, valuefieldname)

data = [go.Barpolar(r=values[valuefieldname],
theta=np.degrees(np.arange(0.0, 2 * np.pi, 2 * np.pi / len(values[valuefieldname]))))]
theta=np.degrees(np.arange(0.0, 2 * np.pi, 2 * np.pi / len(values[valuefieldname]))))]

plt.offline.plot(data, filename=output, auto_open=False)

Expand Down

0 comments on commit 08817e0

Please sign in to comment.