Skip to content

Commit 84aa4ad

Browse files
authored
camera init: try catch around pseye for mac
1 parent 7b2faed commit 84aa4ad

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

dlclivegui/camera/__init__.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,7 @@
2929
# print(f"Error importing AravisCam: f{e}")
3030

3131
if platform.system() == "Darwin":
32-
from dlclivegui.camera.pseye import PSEyeCam
32+
try:
33+
from dlclivegui.camera.pseye import PSEyeCam
34+
except Exception as e:
35+
pass

0 commit comments

Comments
 (0)