Skip to content

Commit

Permalink
Inline-ignore access to protected member of matplotlib class that is …
Browse files Browse the repository at this point in the history
…not exposed unprotected
  • Loading branch information
joweich committed Sep 8, 2024
1 parent 7649010 commit c0dc949
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chatminer/visualizations.py
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ def transform_path_non_affine(self, path: Path):
# Paths with non-unit interpolation steps correspond to gridlines,
# in which case we force interpolation (to defeat PolarTransform's
# autoconversion to circular arcs).
if path._interpolation_steps > 1:
if path._interpolation_steps > 1: # type: ignore[attr-defined]
path = path.interpolated(num_vars)
return Path(self.transform(path.vertices), path.codes)

Expand Down

0 comments on commit c0dc949

Please sign in to comment.