diff --git a/setup.cfg b/setup.cfg index ab8211f..43d3761 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = hecdss -version = 0.1.17 +version = 0.1.18 author = Hydrologic Engineering Center author_email =hec.dss@usace.army.mil description = Python wrapper for the HEC-DSS file database C library. diff --git a/src/hecdss/__init__.py b/src/hecdss/__init__.py index 85f0534..058b069 100644 --- a/src/hecdss/__init__.py +++ b/src/hecdss/__init__.py @@ -4,4 +4,5 @@ from hecdss.dsspath import DssPath from hecdss.regular_timeseries import RegularTimeSeries from hecdss.array_container import ArrayContainer +from hecdss.paired_data import PairedData diff --git a/src/hecdss/native.py b/src/hecdss/native.py index e50c032..b9e7751 100644 --- a/src/hecdss/native.py +++ b/src/hecdss/native.py @@ -760,7 +760,6 @@ def hec_dss_tsStoreRegular( c_units = c_char_p(units.encode("utf-8")) c_type = c_char_p(dataType.encode("utf-8")) - print(valueArray) c_valueArray = (c_double * len(valueArray))(*valueArray) c_qualityArray = (c_int * len(qualityArray))(*qualityArray) # import pdb;pdb.set_trace()