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 gw_eccentricity/postprocess/core.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
"""Core postprocessing functions for measuring eccentricity from waveform modes."""
from __future__ import annotations
from dataclasses import dataclass
import logging
import pandas as pd
Expand Down
1 change: 1 addition & 0 deletions gw_eccentricity/postprocess/postprocess.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Module to reconstruct eccentricity posterior using gw_eccentricity."""
from __future__ import annotations
import matplotlib.pyplot as plt
import pandas as pd
from joblib import Parallel, delayed
Expand Down
1 change: 1 addition & 0 deletions gw_eccentricity/postprocess/postprocess_cli.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Run eccentricity postprocessing in parallel using MPI."""
from __future__ import annotations
import argparse
import importlib
import importlib.util
Expand Down
1 change: 1 addition & 0 deletions gw_eccentricity/postprocess/postprocess_for_bilby.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Reconstruct eccentricity posterior from Bilby generated posterior."""
from __future__ import annotations
import bilby
import pandas as pd
from .postprocess import PostProcess
Expand Down
Loading