We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ec372e commit d002911Copy full SHA for d002911
pandas/_libs/internals.pyx
@@ -585,12 +585,8 @@ cdef class BlockManager:
585
# Populate known_consolidate, blknos, and blklocs lazily
586
self._known_consolidated = False
587
self._is_consolidated = False
588
- # error: Incompatible types in assignment (expression has type "None",
589
- # variable has type "ndarray")
590
- self._blknos = None # type: ignore[assignment]
591
592
593
- self._blklocs = None # type: ignore[assignment]
+ self._blknos = None
+ self._blklocs = None
594
595
# -------------------------------------------------------------------
596
# Pickle
0 commit comments