Skip to content

Commit

Permalink
some simple cleanup (#51)
Browse files Browse the repository at this point in the history
* include PairedData in __init

* drop debug print statement
  • Loading branch information
ktarbet authored Sep 5, 2024
1 parent 538b1da commit 8af7bd4
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = hecdss
version = 0.1.17
version = 0.1.18
author = Hydrologic Engineering Center
author_email [email protected]
description = Python wrapper for the HEC-DSS file database C library.
Expand Down
1 change: 1 addition & 0 deletions src/hecdss/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

1 change: 0 additions & 1 deletion src/hecdss/native.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 8af7bd4

Please sign in to comment.