Skip to content

Commit

Permalink
Defining __all__ for bias
Browse files Browse the repository at this point in the history
Defining what to expose with wildcard.
  • Loading branch information
castelao committed May 20, 2024
1 parent 901b22b commit 89b4bab
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions sup3r/bias/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,18 @@
# -*- coding: utf-8 -*-
"""Bias calculation and correction modules."""

from .bias_transforms import (global_linear_bc, local_linear_bc,
monthly_local_linear_bc)
from .bias_calc import (LinearCorrection, MonthlyLinearCorrection,
SkillAssessment)
from .qdm import QuantileDeltaMappingCorrection

__all__ = [
"global_linear_bc",
"local_linear_bc",
"monthly_local_linear_bc",
"LinearCorrection",
"MonthlyLinearCorrection",
"QuantileDeltaMappingCorrection",
"SkillAssessment",
]

0 comments on commit 89b4bab

Please sign in to comment.