Skip to content

Commit daa694f

Browse files
datumboxfacebook-github-bot
authored andcommitted
[fbsync] fix typo in plot_visualization_utils.py (#5599)
Summary: 'fix' -> 'fig' Reviewed By: vmoens Differential Revision: D34878992 fbshipit-source-id: 61cb40886c57432f851722014676f9dc7e8a70fe
1 parent ac49389 commit daa694f

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)