Skip to content

Commit

Permalink
fix Error's path
Browse files Browse the repository at this point in the history
  • Loading branch information
lucemia committed Jan 15, 2024
1 parent 311b70f commit 57ad5c8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/typed_ffmpeg/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
from . import filters, nodes, streams
from .base import input, merge_outputs, output
from .exeptions import Error
from .probe import probe

__all__ = ["input", "output", "merge_outputs", "probe", "filters"]
__all__ = ["input", "output", "merge_outputs", "probe", "filters", "Error"]
__all__ += streams.__all__ + nodes.__all__

0 comments on commit 57ad5c8

Please sign in to comment.