Skip to content

Commit c1555a7

Browse files
committed
#865: Fix typo in Code.
1 parent 47f990c commit c1555a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/faq.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ This happens because our build system doesn't have the dependencies for building
3737
You can mock out the imports for these modules in your ``conf.py`` with the following snippet::
3838

3939
import sys
40-
from unittest.mock import MagickMock as Mock
40+
from unittest.mock import MagicMock as Mock
4141

4242
MOCK_MODULES = ['pygtk', 'gtk', 'gobject', 'argparse', 'numpy', 'pandas']
4343
sys.modules.update((mod_name, Mock()) for mod_name in MOCK_MODULES)

0 commit comments

Comments
 (0)