Skip to content

Commit cb0636b

Browse files
authored
comment out plt.savefig
1 parent 0c2442e commit cb0636b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scratch/probability.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def normal_pdf(x: float, mu: float = 0, sigma: float = 1) -> float:
2121
# plt.show()
2222

2323

24-
plt.savefig('im/various_normal_pdfs.png')
24+
# plt.savefig('im/various_normal_pdfs.png')
2525
plt.gca().clear()
2626
plt.close()
2727
plt.clf()
@@ -139,4 +139,4 @@ def random_kid() -> Kid:
139139
def uniform_pdf(x: float) -> float:
140140
return 1 if 0 <= x < 1 else 0
141141

142-
if __name__ == "__main__": main()
142+
if __name__ == "__main__": main()

0 commit comments

Comments
 (0)