Skip to content

Commit

Permalink
Fix import order
Browse files Browse the repository at this point in the history
  • Loading branch information
philbull committed Apr 24, 2018
1 parent e0d3223 commit 0bf49d9
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,13 @@
# import sys
# sys.path.insert(0, os.path.abspath('.'))

import os
import sys
import mock
MOCK_MODULES = ['numpy', 'scipy', 'pyuvdata', 'h5py', 'aipy', 'omnical', 'linsolve', 'hera_qm', 'uvtools', 'hera_cal', 'healpy', 'scikit-learn']
for mod_name in MOCK_MODULES:
sys.modules[mod_name] = mock.Mock()


import sys
import os
sys.path.insert(0, os.path.abspath('../'))
#import hera_pspec

Expand Down

0 comments on commit 0bf49d9

Please sign in to comment.