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: 1 addition & 1 deletion esmvalcore/cmor/fixes.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
__all__ = [
"add_altitude_from_plev",
"add_plev_from_altitude",
"get_time_bounds",
"get_next_month",
"get_time_bounds",
]
2 changes: 1 addition & 1 deletion esmvalcore/dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@
from esmvalcore.typing import Facets, FacetValue

__all__ = [
"Dataset",
"INHERITED_FACETS",
"Dataset",
"datasets_to_recipe",
]

Expand Down
2 changes: 1 addition & 1 deletion esmvalcore/esgf/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@
from esmvalcore.esgf._search import ESGFDataSource, find_files

__all__ = [
"ESGFFile",
"ESGFDataSource",
"ESGFFile",
"download",
"find_files",
]
4 changes: 2 additions & 2 deletions esmvalcore/experimental/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@

__all__ = [
"CFG",
"get_all_recipes",
"get_recipe",
"Recipe",
"RecipeList",
"get_all_recipes",
"get_recipe",
"warnings",
]
2 changes: 1 addition & 1 deletion esmvalcore/preprocessor/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@

logger = logging.getLogger(__name__)

__all__ = [
__all__ = [ # noqa: RUF022
# File reformatting/CMORization
"fix_file",
# Load cubes from file
Expand Down
2 changes: 1 addition & 1 deletion esmvalcore/preprocessor/regrid_schemes.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
logger = logging.getLogger(__name__)

__all__ = [
"IrisESMFRegrid",
"GenericFuncScheme",
"GenericRegridder",
"IrisESMFRegrid",
"UnstructuredLinear",
"UnstructuredLinearRegridder",
"UnstructuredNearest",
Expand Down
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,6 @@ ignore = [
"PT011", # pytest.raises without match argument
"PT027", # Use `pytest.raises` instead of unittest-style `assertRaises`
"PTH", # Use pathlib everywhere
"RUF022", # `__all__` definitions that are not ordered according to an "isort-style" sort.
"SIM102", # Use a single `if` statement instead of nested `if` statements
"SIM117", # Use a single `with` statement with multiple contexts instead of nested `with` statements
"TD003", # Missing issue link on the line following this TODO
Expand Down