Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ruff compliance for D205. #5681

Merged
merged 26 commits into from
Jan 12, 2024
Merged
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
ff9813f
ruff complliance for D205 (wip)
tkknight Jan 6, 2024
501f581
wip
tkknight Jan 6, 2024
029a819
Merge branch 'SciTools:main' into ruff_D205_2
tkknight Jan 6, 2024
4e7f4f6
wip
tkknight Jan 8, 2024
685f055
Merge remote-tracking branch 'upstream/main' into ruff_D205_2
tkknight Jan 8, 2024
c69e064
wip
tkknight Jan 8, 2024
9659dfc
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Jan 8, 2024
035916d
various minor fixes.
tkknight Jan 8, 2024
50c7b28
Merge branch 'ruff_D205_2' of github.com:tkknight/iris into ruff_D205_2
tkknight Jan 8, 2024
8009a6d
fix doctest.
tkknight Jan 8, 2024
2271da2
gallery noqa and minor fixes.
tkknight Jan 8, 2024
734fc14
removed comments
tkknight Jan 8, 2024
13ba33d
Merge branch 'main' into ruff_D205_2
tkknight Jan 10, 2024
6818f85
Merge branch 'main' into ruff_D205_2
tkknight Jan 11, 2024
8efd461
Update lib/iris/_data_manager.py
tkknight Jan 12, 2024
c752826
Update lib/iris/_lazy_data.py
tkknight Jan 12, 2024
31e8b36
Update lib/iris/_merge.py
tkknight Jan 12, 2024
12d1c1a
Update lib/iris/_representation/cube_printout.py
tkknight Jan 12, 2024
c128914
Update lib/iris/_representation/cube_printout.py
tkknight Jan 12, 2024
ad4a8c2
Update lib/iris/analysis/_interpolation.py
tkknight Jan 12, 2024
2364ca6
Update lib/iris/coords.py
tkknight Jan 12, 2024
7bb2a21
Update lib/iris/experimental/ugrid/mesh.py
tkknight Jan 12, 2024
03d03c7
Apply suggestions from code review
tkknight Jan 12, 2024
a0d3cb8
Merge remote-tracking branch 'upstream/main' into ruff_D205_2
tkknight Jan 12, 2024
d168d07
minor tweaks.
tkknight Jan 12, 2024
5af2c97
Merge branch 'main' into ruff_D205_2
tkknight Jan 12, 2024
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
Prev Previous commit
Next Next commit
Update lib/iris/_lazy_data.py
Co-authored-by: Bill Little <[email protected]>
  • Loading branch information
tkknight and bjlittle committed Jan 12, 2024
commit c75282632c8980bc3a6e6a767c837f4a397f6280
2 changes: 1 addition & 1 deletion lib/iris/_lazy_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def is_lazy_data(data):


def is_lazy_masked_data(data):
"""Is it 'lazy' data array and the underlying array is of masked type.
"""Determine whether managed data is lazy and masked.

Return True if the argument is both an Iris 'lazy' data array and the
underlying array is of masked type. Otherwise return False.
Expand Down