Skip to content

Commit

Permalink
Fix errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
T-Nicholls committed Apr 16, 2019
1 parent 9136da9 commit 147f982
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

import os
import sys
from unittest.mock import MagicMock
from mock import MagicMock

# -- Path setup --------------------------------------------------------------

Expand Down Expand Up @@ -37,7 +37,7 @@ def __getattr__(cls, name):
except ImportError:
MOCK_MODULES.append('at')

sys.modules.update((mod_name, Mock() for mod_name in MOCK_MODULES)
sys.modules.update((mod_name, Mock()) for mod_name in MOCK_MODULES)

# -- Project information -----------------------------------------------------

Expand Down

0 comments on commit 147f982

Please sign in to comment.