Skip to content

Commit 658cdf6

Browse files
committed
BUG: Fix scatter plot colors in groupby context to match line plot behavior (pandas-dev#59846)
Make the comment shorter
1 parent 09f1c7c commit 658cdf6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/groupby/groupby.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -431,7 +431,7 @@ def __init__(self, groupby: GroupBy) -> None:
431431
self._groupby = groupby
432432

433433
def __call__(self, *args, **kwargs):
434-
# Special case for scatter plots to enable automatic colors, similar to line plots
434+
# Special case for scatter plots to enable auto colors like line plots
435435
if kwargs.get("kind") == "scatter":
436436
import matplotlib.pyplot as plt
437437

0 commit comments

Comments
 (0)