Skip to content

Commit

Permalink
blacken
Browse files Browse the repository at this point in the history
  • Loading branch information
ketiltrout committed Jul 31, 2024
1 parent 42c5dc2 commit c700f81
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions ch_util/andata.py
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ def from_acq_h5(
stop=stop,
datasets=datasets,
out_group=out_group,
**kwargs
**kwargs,
)

# Set an attribute on the time axis specifying alignment
Expand Down Expand Up @@ -1227,7 +1227,7 @@ def from_acq_h5(
f,
convert_attribute_strings=cls.convert_attribute_strings,
convert_dataset_strings=cls.convert_dataset_strings,
**kwargs
**kwargs,
)
for f in acq_files
]
Expand Down
2 changes: 1 addition & 1 deletion ch_util/fluxcat.py
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ def __init__(
param=self.param,
param_cov=self.param_cov,
stats=self.stats,
**self.model_kwargs
**self.model_kwargs,
)

# Populate the kwargs that were used
Expand Down
6 changes: 3 additions & 3 deletions ch_util/timing.py
Original file line number Diff line number Diff line change
Expand Up @@ -634,7 +634,7 @@ def set_reference_time(
tau_init=None,
alpha_init=None,
interpolate=False,
**kwargs
**kwargs,
):
"""Normalize the delay and alpha template to specific times.
Expand Down Expand Up @@ -1333,7 +1333,7 @@ def apply_timing_correction(self, timestream, copy=False, **kwargs):
prod,
reverse_stack,
input_flags=input_flags,
**kwargs
**kwargs,
)

if self.has_amplitude and self.has_coeff_alpha:
Expand All @@ -1343,7 +1343,7 @@ def apply_timing_correction(self, timestream, copy=False, **kwargs):
prod,
reverse_stack,
input_flags=input_flags,
**kwargs
**kwargs,
)

# Loop over local frequencies and apply the timing correction
Expand Down

0 comments on commit c700f81

Please sign in to comment.