From 31a1356d72618ac06a6c9b5f5f918719e231345f Mon Sep 17 00:00:00 2001 From: Humna Awan Date: Thu, 13 Feb 2025 12:09:50 -0800 Subject: [PATCH] black updates. --- rubin_sim/maf/__init__.py | 3 +-- rubin_sim/maf/batches/hourglass_batch.py | 3 +-- rubin_sim/maf/batches/metadata_batch.py | 3 +-- rubin_sim/maf/batches/openshutter_batch.py | 3 +-- rubin_sim/maf/batches/skycoverage.py | 3 +-- rubin_sim/maf/batches/slew_batch.py | 3 +-- rubin_sim/maf/batches/time_batch.py | 3 +-- rubin_sim/maf/batches/time_sci_batch.py | 3 +-- rubin_sim/maf/plots/hg_plotters.py | 3 +-- rubin_sim/maf/run_comparison/archive.py | 3 +-- rubin_sim/maf/run_comparison/summary_plots.py | 3 +-- 11 files changed, 11 insertions(+), 22 deletions(-) diff --git a/rubin_sim/maf/__init__.py b/rubin_sim/maf/__init__.py index 1eacbadf0..016cd7998 100644 --- a/rubin_sim/maf/__init__.py +++ b/rubin_sim/maf/__init__.py @@ -19,8 +19,7 @@ # the GNU General Public License along with this program. If not, # see . # -"""Python interface to the metrics analysis framework. -""" +"""Python interface to the metrics analysis framework.""" from .batches import * from .db import * from .maf_contrib import * diff --git a/rubin_sim/maf/batches/hourglass_batch.py b/rubin_sim/maf/batches/hourglass_batch.py index 7747b3034..de6517d56 100644 --- a/rubin_sim/maf/batches/hourglass_batch.py +++ b/rubin_sim/maf/batches/hourglass_batch.py @@ -1,5 +1,4 @@ -"""Run the hourglass metric. -""" +"""Run the hourglass metric.""" __all__ = ("hourglassPlots",) diff --git a/rubin_sim/maf/batches/metadata_batch.py b/rubin_sim/maf/batches/metadata_batch.py index 2b1065d29..73838681f 100644 --- a/rubin_sim/maf/batches/metadata_batch.py +++ b/rubin_sim/maf/batches/metadata_batch.py @@ -1,5 +1,4 @@ -"""Some basic physical quantity metrics. -""" +"""Some basic physical quantity metrics.""" __all__ = ( "metadataBasics", diff --git a/rubin_sim/maf/batches/openshutter_batch.py b/rubin_sim/maf/batches/openshutter_batch.py index 175d23d1c..a6620bd67 100644 --- a/rubin_sim/maf/batches/openshutter_batch.py +++ b/rubin_sim/maf/batches/openshutter_batch.py @@ -1,5 +1,4 @@ -"""Evaluate the open shutter fraction. -""" +"""Evaluate the open shutter fraction.""" __all__ = ("openshutterFractions",) diff --git a/rubin_sim/maf/batches/skycoverage.py b/rubin_sim/maf/batches/skycoverage.py index 9f355349c..b4ef00ac4 100644 --- a/rubin_sim/maf/batches/skycoverage.py +++ b/rubin_sim/maf/batches/skycoverage.py @@ -1,5 +1,4 @@ -"""Evaluate some bulk properties of the sky coverage -""" +"""Evaluate some bulk properties of the sky coverage""" __all__ = ("meanRADec", "eastWestBias") diff --git a/rubin_sim/maf/batches/slew_batch.py b/rubin_sim/maf/batches/slew_batch.py index 5e6c80344..e32a9b31b 100644 --- a/rubin_sim/maf/batches/slew_batch.py +++ b/rubin_sim/maf/batches/slew_batch.py @@ -1,5 +1,4 @@ -"""Sets of slew metrics. -""" +"""Sets of slew metrics.""" __all__ = ("slewBasics",) diff --git a/rubin_sim/maf/batches/time_batch.py b/rubin_sim/maf/batches/time_batch.py index ee11db90d..8f6986335 100644 --- a/rubin_sim/maf/batches/time_batch.py +++ b/rubin_sim/maf/batches/time_batch.py @@ -1,5 +1,4 @@ -"""Sets of metrics to look at time between visits/pairs, etc. -""" +"""Sets of metrics to look at time between visits/pairs, etc.""" __all__ = ("intraNight", "interNight", "timeGaps", "seasons") diff --git a/rubin_sim/maf/batches/time_sci_batch.py b/rubin_sim/maf/batches/time_sci_batch.py index 337b11a74..843794a90 100644 --- a/rubin_sim/maf/batches/time_sci_batch.py +++ b/rubin_sim/maf/batches/time_sci_batch.py @@ -1,5 +1,4 @@ -"""Sets of metrics to look at impact of cadence on science -""" +"""Sets of metrics to look at impact of cadence on science""" __all__ = ("phaseGap",) diff --git a/rubin_sim/maf/plots/hg_plotters.py b/rubin_sim/maf/plots/hg_plotters.py index 3df11d15e..2eaa2b6df 100644 --- a/rubin_sim/maf/plots/hg_plotters.py +++ b/rubin_sim/maf/plots/hg_plotters.py @@ -1,5 +1,4 @@ -"""Second generation hourglass plotting classes. -""" +"""Second generation hourglass plotting classes.""" # pylint: disable=too-many-arguments # pylint: disable=super-init-not-called diff --git a/rubin_sim/maf/run_comparison/archive.py b/rubin_sim/maf/run_comparison/archive.py index 5874270b1..30f3fa0d7 100644 --- a/rubin_sim/maf/run_comparison/archive.py +++ b/rubin_sim/maf/run_comparison/archive.py @@ -1,5 +1,4 @@ -"""Tools for use of project-generated opsim simulations and analysis. -""" +"""Tools for use of project-generated opsim simulations and analysis.""" __all__ = ( "get_metric_subsets", diff --git a/rubin_sim/maf/run_comparison/summary_plots.py b/rubin_sim/maf/run_comparison/summary_plots.py index 54cc60e56..3f263438e 100644 --- a/rubin_sim/maf/run_comparison/summary_plots.py +++ b/rubin_sim/maf/run_comparison/summary_plots.py @@ -1,5 +1,4 @@ -"""Summary metric plotting functions. -""" +"""Summary metric plotting functions.""" __all__ = ( "normalize_metric_summaries",