Skip to content

Commit 2e73304

Browse files
committed
minor fix + cosmetic
1 parent edb8cd1 commit 2e73304

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

doc/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
sphinx_gallery_conf = {
4242
"examples_dirs": "../examples", # path to your example scripts
4343
"gallery_dirs": "python_module",
44-
"capture_repr": ("_repr_html_"),
44+
"capture_repr": ("_repr_html_",),
4545
"line_numbers": False,
4646
"filename_pattern": "/pet",
4747
"binder": {

examples/02_eddy_identification/pet_shape_gallery.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515

1616
# %%
17-
# Method to compute circle path
17+
# Method to built circle from center coordinates
1818
def build_circle(x0, y0, r):
1919
angle = radians(linspace(0, 360, 50))
2020
x_norm, y_norm = cos(angle), sin(angle)

0 commit comments

Comments
 (0)