Skip to content

Commit

Permalink
Fix intersphinx mapping
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianWilhelm committed Nov 6, 2019
1 parent a467bb6 commit cb78c17
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docs/conf.py
Expand Up @@ -283,7 +283,7 @@ def setup(app):
'python': ('https://docs.python.org/' + python_version, None),
'matplotlib': ('https://matplotlib.org', None),
'numpy': ('https://docs.scipy.org/doc/numpy', None),
'sklearn': ('http://scikit-learn.org/stable', None),
'pandas': ('http://pandas.pydata.org/pandas-docs/stable', None),
'sklearn': ('https://scikit-learn.org/stable/objects.inv', None),
'pandas': ('https://pandas.pydata.org/pandas-docs/stable/objects.inv', None),
'scipy': ('https://docs.scipy.org/doc/scipy/reference', None),
}
1 change: 0 additions & 1 deletion src/justcause/learners/tree/causal_forest.py
Expand Up @@ -14,7 +14,6 @@ def __init__(self, random_state: int = 0):
from rpy2.robjects import numpy2ri
from rpy2.robjects.packages import LibraryError, importr

# Activate parsing once CausalForest module is accessed
numpy2ri.activate()

try:
Expand Down

0 comments on commit cb78c17

Please sign in to comment.