Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions cwms/timeseries/timeseries.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,11 +148,11 @@ def fetch_timeseries_chunks(
chunks: List[Tuple[datetime, datetime]],
ts_id: str,
office_id: str,
unit: str | None,
unit: Optional[str],
datum: Optional[str],
page_size: int | None,
page_size: Optional[int],
version_date: Optional[datetime],
trim: bool | None,
trim: Optional[bool],
max_workers: int,
) -> List[Data]:
# Initialize an empty list to store results
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "cwms-python"
repository = "https://github.com/HydrologicEngineeringCenter/cwms-python"

version = "0.8.3"
version = "0.8.4"


packages = [
Expand Down