Skip to content

Commit

Permalink
make partial reads work, modularize UVCal selection code
Browse files Browse the repository at this point in the history
Add testing!
  • Loading branch information
bhazelton committed Dec 2, 2023
1 parent e73c8ec commit 65a8e65
Show file tree
Hide file tree
Showing 17 changed files with 1,802 additions and 1,237 deletions.
1 change: 1 addition & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@
("UVH5", "params_style"),
("MWA FITS", "params_style"),
("MIR", "params_style"),
("CalH5", "params_style"),
]

# Add any paths that contain templates here, relative to this directory.
Expand Down
2 changes: 2 additions & 0 deletions pyuvdata/hdf5_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
# Copyright (c) 2023 Radio Astronomy Software Group
# Licensed under the 2-clause BSD License
"""Utilities for working with HDF5 files."""
from __future__ import annotations

from functools import cached_property
from pathlib import Path
from typing import Any
Expand Down
2 changes: 1 addition & 1 deletion pyuvdata/parameter.py
Original file line number Diff line number Diff line change
Expand Up @@ -496,7 +496,7 @@ def __eq__(self, other, *, silent=False):
if not silent:
print(
f"{self.name} parameter value is not an array, "
"but other is not"
"but other is an array"
)
return False
try:
Expand Down
Loading

0 comments on commit 65a8e65

Please sign in to comment.