Skip to content

Commit

Permalink
more errors caught by flake.
Browse files Browse the repository at this point in the history
  • Loading branch information
iancze committed Dec 7, 2023
1 parent fe3a794 commit 9c1be1b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-casa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
max-parallel: 4
matrix:
python-version: ["3.8", "3.10"]
python-version: ["3.8"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
Expand Down
2 changes: 1 addition & 1 deletion src/visread/process_casa.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ def get_processed_visibilities(
ant2 = q["antenna2"]

# make sure the dataset doesn't contain auto-correlations
assert not contains_autocorrelations(
assert not process.contains_autocorrelations(
ant1, ant2
), "Dataset contains autocorrelations, exiting."

Expand Down

0 comments on commit 9c1be1b

Please sign in to comment.