Skip to content

Commit ee2176e

Browse files
committed
📝 meta-review
1 parent d5d6080 commit ee2176e

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

examples/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ pip install -r requirements.txt
1313
## 1. Example notebooks
1414
### 1.1 basic examples
1515

16-
The [basic example notebook](basic_example.ipynb) covers most use-cases in which plotly resampler will be employed. It servers as an ideal starting point for data-scientists who want to use plotly-resampler in their day-to-day jupyter environments.
16+
The [basic example notebook](basic_example.ipynb) covers most use-cases in which plotly resampler will be employed. It serves as an ideal starting point for data-scientists who want to use plotly-resampler in their day-to-day jupyter environments.
1717

1818
Additionally, this notebook also shows some more advanced functionalities, such as:
1919
* Retaining (a static) plotly-resampler figure in your notebook

examples/dash_apps/13_coarse_fine.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ def update_dynamic_fig(coarse_grained_relayout, fine_grained_relayout, fr_fig):
176176

177177
ctx = dash.callback_context
178178
trigger_id = ctx.triggered[0].get("prop_id", "").split(".")[0]
179-
179+
180180
if trigger_id == "plotly-resampler-graph":
181181
return fr_fig.construct_update_data(fine_grained_relayout)
182182
elif trigger_id == "coarse-graph":

examples/dash_apps/utils/callback_helpers.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,6 @@ def get_selector_states(n: int) -> List[State]:
118118
The number of folder selectors
119119
120120
"""
121-
# Note: the list sum-operations flattens the list
122121
return list(
123122
itertools.chain.from_iterable(
124123
[

0 commit comments

Comments
 (0)