Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pims/display.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
try:
with warnings.catch_warnings():
warnings.simplefilter("ignore")
from moviepy.editor import VideoClip
from moviepy import VideoClip
except ImportError:
VideoClip = None
except RuntimeError:
Expand Down
2 changes: 1 addition & 1 deletion pims/moviepy_reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
try:
with warnings.catch_warnings():
warnings.simplefilter("ignore")
from moviepy.editor import VideoFileClip
from moviepy import VideoFileClip
except ImportError:
VideoFileClip = None
except RuntimeError:
Expand Down