Skip to content

Commit 359f620

Browse files
author
Tomás Méndez Echenagucia
committed
imageio try except
1 parent e86102c commit 359f620

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/compas/utilities/animation.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,10 @@
33
from __future__ import division
44

55
import os
6-
import imageio
7-
6+
try:
7+
import imageio
8+
except:
9+
pass
810

911
__author__ = ['Matthias Rippmann', ]
1012
__copyright__ = 'Copyright 2016 - Block Research Group, ETH Zurich'

0 commit comments

Comments
 (0)