Skip to content

Commit

Permalink
dlib exception handle
Browse files Browse the repository at this point in the history
  • Loading branch information
saurabh1993 authored Jan 12, 2020
1 parent cf9343a commit 6bed326
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion face/face.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
#!/usr/bin/env python

import dlib
try:
import dlib
except:
pass
import os

WORK_DIR = "/LFS/facelib"
Expand Down

0 comments on commit 6bed326

Please sign in to comment.