Skip to content

Commit

Permalink
Add a noqa directive for now
Browse files Browse the repository at this point in the history
  • Loading branch information
akx committed Nov 22, 2023
1 parent 5731b1f commit 638bb54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/demo/streamlit_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -808,7 +808,7 @@ def denoiser(x, sigma, c):
if filter is not None:
samples = filter(samples)

grid = rearrange(grid, "n b c h w -> (n h) (b w) c")
grid = rearrange(grid, "n b c h w -> (n h) (b w) c") # noqa: F821
outputs.image(grid.cpu().numpy())
if return_latents:
return samples, samples_z
Expand Down

0 comments on commit 638bb54

Please sign in to comment.