Skip to content

Commit

Permalink
fixed synthax error read the docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Avsecz committed Sep 15, 2016
1 parent ac72a28 commit 272cbae
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 @@ -281,8 +281,8 @@

class Mock(MagicMock):
@classmethod
def __getattr__(cls, name):
return Mock()
def __getattr__(cls, name):
return Mock()

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

0 comments on commit 272cbae

Please sign in to comment.