Skip to content

Commit

Permalink
api-docs: Add mock dlib module.
Browse files Browse the repository at this point in the history
  • Loading branch information
Brandon Amos committed Dec 29, 2015
1 parent 1799e9b commit 9073a50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api-docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class Mock(MagicMock):
def __getattr__(cls, name):
return Mock()

MOCK_MODULES = ['argparse', 'numpy', 'pandas', 'cv2']
MOCK_MODULES = ['argparse', 'cv2', 'dlib', 'numpy', 'pandas']
sys.modules.update((mod_name, Mock()) for mod_name in MOCK_MODULES)

extensions = [
Expand Down

0 comments on commit 9073a50

Please sign in to comment.