Skip to content

Commit

Permalink
gtypes back to types for compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
cmbant committed Mar 29, 2023
1 parent 82f2636 commit 6429b18
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion getdist/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

import os
import sys
from getdist import gtypes as types # to avoid Pycharm debugging issues with import of system types module
from getdist.inifile import IniFile
from getdist.paramnames import ParamInfo, ParamNames
from getdist.chains import WeightedSamples
Expand Down
2 changes: 1 addition & 1 deletion getdist/mcsamples.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import numpy as np
from scipy.stats import norm
import getdist
from getdist import gtypes as types
from getdist import types as types
from getdist import chains, covmat, ParamInfo, IniFile, ParamNames, cobaya_interface
from getdist.densities import Density1D, Density2D, DensityND
from getdist.densities import getContourLevels as getImportContourLevels
Expand Down
2 changes: 1 addition & 1 deletion getdist/plots.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
from getdist.gaussian_mixtures import MixtureND
from getdist.matplotlib_ext import BoundedMaxNLocator, SciFuncFormatter
from getdist._base import _BaseObject
from getdist.gtypes import empty_dict
from getdist.types import empty_dict

"""Plotting scripts for GetDist outputs"""

Expand Down
File renamed without changes.

0 comments on commit 6429b18

Please sign in to comment.