Skip to content

Commit 27745e5

Browse files
authored
fix typo in plot_visualization_utils.py (#5599)
'fix' -> 'fig'
1 parent 8aadef5 commit 27745e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gallery/plot_visualization_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
def show(imgs):
2323
if not isinstance(imgs, list):
2424
imgs = [imgs]
25-
fix, axs = plt.subplots(ncols=len(imgs), squeeze=False)
25+
fig, axs = plt.subplots(ncols=len(imgs), squeeze=False)
2626
for i, img in enumerate(imgs):
2727
img = img.detach()
2828
img = F.to_pil_image(img)

0 commit comments

Comments
 (0)