Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
aknierim committed Jan 24, 2025
1 parent 58431fb commit 7a6dace
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions pyvisgen/simulation/visibility.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
from dataclasses import dataclass, fields
from tqdm.autonotebook import tqdm

import scipy.ndimage
import torch
import toma
import torch
from tqdm.autonotebook import tqdm

import pyvisgen.simulation.scan as scan

Expand Down Expand Up @@ -334,6 +334,7 @@ def vis_loop(
mode: str = "full",
batch_size: int = "auto",
show_progress: bool = False,
normalize: bool = True,
) -> Visibilities:
r"""Computes the visibilities of an observation.
Expand Down Expand Up @@ -366,6 +367,9 @@ def vis_loop(
show_progress : bool, optional
If `True`, show a progress bar during the iteration over the
batches of baselines. Default: False
normalize : bool, optional
If ``True``, normalize stokes matrix ``B`` by a factor 0.5.
Default: ``True``
Returns
-------
Expand Down

0 comments on commit 7a6dace

Please sign in to comment.