We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
__file__
1 parent 795f2c5 commit 7ec9970Copy full SHA for 7ec9970
examples/callbacks.py
@@ -13,9 +13,8 @@
13
from typing import Tuple
14
from mpl_point_clicker import clicker
15
16
-from pathlib import Path
17
18
-image = np.load(Path(__file__).parent / "example_image.npy")
+image = np.load("example_image.npy")
19
20
fig, ax = plt.subplots()
21
ax.imshow(image, cmap='gray')
examples/example.py
@@ -3,8 +3,7 @@
3
Basic Usage
4
-----------
5
6
-A short example showcasing how to use the library. The docstrings will be
7
-turns in REST by sphinx-gallery.
+A short example showcasing how to use the library.
8
"""
9
10
import matplotlib.pyplot as plt
0 commit comments