Edit plot color in examples (#1385)
Some checks failed
CodeQL / Analyze (python) (push) Has been cancelled

This commit is contained in:
pollfly
2025-03-13 09:50:41 +02:00
committed by GitHub
parent caddf25539
commit 6a6e7186e5
4 changed files with 4 additions and 4 deletions

View File

@@ -28,7 +28,7 @@ plt.show()
# Create another plot - with a name
x = np.linspace(0, 10, 30)
y = np.sin(x)
plt.plot(x, y, 'o', color='black')
plt.plot(x, y, 'o', color='pink')
# Plot will be reported automatically
plt.show()