Skip to content

Commit

Permalink
ignore notebook helper method
Browse files Browse the repository at this point in the history
  • Loading branch information
lucemia committed Apr 9, 2024
1 parent 746103f commit 938e458
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ffmpeg/dag/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def view(self, format: Literal["png", "svg", "dot"] = "png") -> str:

return view(self.node, format=format)

def _repr_png_(self) -> bytes:
def _repr_png_(self) -> bytes: # pragma: no cover
with open(self.view(format="png"), "rb") as f:
return f.read()

Expand Down

0 comments on commit 938e458

Please sign in to comment.