Skip to content

Commit c100282

Browse files
authored
Merge pull request #399 from PyAutoLabs/feature/ag-interferometer-kwargs
fix: ag.AnalysisInterferometer.__init__ kwargs passthrough
2 parents fb2f394 + 1892b97 commit c100282

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

autogalaxy/interferometer/model/analysis.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ def __init__(
4242
settings: aa.Settings = None,
4343
title_prefix: str = None,
4444
use_jax: bool = True,
45+
**kwargs,
4546
):
4647
"""
4748
Fits a galaxy model to an interferometer dataset via a non-linear search.
@@ -80,6 +81,7 @@ def __init__(
8081
settings=settings,
8182
title_prefix=title_prefix,
8283
use_jax=use_jax,
84+
**kwargs,
8385
)
8486

8587
@property

0 commit comments

Comments
 (0)