Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix legend contents typing after rebase
  • Loading branch information
mwaskom committed Aug 4, 2022
commit 2ff3e203c93c6d03041163a86c5c760b6830e4f7
2 changes: 1 addition & 1 deletion seaborn/_core/plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -779,7 +779,7 @@ def __init__(self, pyplot: bool, theme: dict[str, Any]):
self._pyplot = pyplot
self._theme = theme
self._legend_contents: list[tuple[
tuple[str | None, str | int], list[Artist], list[str],
tuple[str, str | int], list[Artist], list[str],
]] = []
self._scales: dict[str, Scale] = {}

Expand Down