Fix imports and indentation

This commit is contained in:
usov_i 2020-10-26 16:33:30 +01:00
parent dba2dc6149
commit 42c6e6b921
2 changed files with 85 additions and 82 deletions

View File

@ -5,6 +5,7 @@ from pyzebra.comm_export import export_comm
from pyzebra.fit2 import fitccl from pyzebra.fit2 import fitccl
from pyzebra.h5 import * from pyzebra.h5 import *
from pyzebra.load_1D import load_1D, parse_1D from pyzebra.load_1D import load_1D, parse_1D
from pyzebra.param_study_moduls import add_dict, auto, merge, scan_dict
from pyzebra.xtal import * from pyzebra.xtal import *
__version__ = "0.1.1" __version__ = "0.1.1"

View File

@ -1,12 +1,14 @@
from load_1D import load_1D
import pandas as pd
from mpl_toolkits.mplot3d import Axes3D # dont delete, otherwise waterfall wont work
import matplotlib.pyplot as plt
import matplotlib as mpl
import numpy as np
import pickle import pickle
import matplotlib as mpl
import matplotlib.pyplot as plt
import numpy as np
import pandas as pd
import scipy.io as sio import scipy.io as sio
import uncertainties as u import uncertainties as u
from mpl_toolkits.mplot3d import Axes3D # dont delete, otherwise waterfall wont work
from .load_1D import load_1D
def create_tuples(x, y, y_err): def create_tuples(x, y, y_err):