We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ffb50d2 commit 5cec0ebCopy full SHA for 5cec0eb
shiny/plotutils.py
@@ -104,7 +104,9 @@ def brushed_points(
104
use_y = "y" in brush["direction"]
105
106
# Filter out x and y values
107
- keep_rows: pd.Series[bool] = pd.Series(True, index=new_df.index)
+ keep_rows: pd.Series[bool] = pd.Series(
108
+ True, index=new_df.index # pyright: ignore[reportUnknownMemberType]
109
+ )
110
if use_x:
111
if xvar is None and "x" in brush["mapping"]:
112
xvar = brush["mapping"]["x"]
0 commit comments