Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions autolens/aggregator/fit_imaging.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@
that exposes a generator of ``FitImaging`` objects, enabling memory-efficient iteration
over large result sets.
"""

from __future__ import annotations
from typing import Optional, List

import autofit as af
Expand Down
2 changes: 2 additions & 0 deletions autolens/aggregator/fit_interferometer.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
``Aggregator`` that exposes a generator of ``FitInterferometer`` objects, enabling
memory-efficient iteration over large result sets.
"""

from __future__ import annotations
from typing import Optional, List

import autofit as af
Expand Down
2 changes: 2 additions & 0 deletions autolens/aggregator/subhalo.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
for the best-fit model in each cell — both the "with subhalo" fit and (optionally) the
"no subhalo" baseline — enabling the per-cell log-evidence difference map to be computed.
"""

from __future__ import annotations
from typing import Optional

import autofit as af
Expand Down
Loading