We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b0091b2 commit dd212edCopy full SHA for dd212ed
1 file changed
src/mudata/_core/mudata.py
@@ -657,8 +657,8 @@ def calc_attrm_update():
657
nonlocal index_order, can_update
658
index_order = data_global.index.get_indexer(data_mod.index)
659
can_update = (
660
- new_idx.shape[0] == 0 # filtered or reordered
661
- or kept_idx.shape[0] == data_global.shape[0] # new rows only
+ new_idx.shape[0] == 0 # noqa: F821 filtered or reordered
+ or kept_idx.shape[0] == data_global.shape[0] # noqa: F821 new rows only
662
or data_mod.shape[0]
663
== data_global.shape[
664
0
0 commit comments