Skip to content

Commit

Permalink
Formatting fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
czwa committed Oct 16, 2024
1 parent 0bcd4e3 commit e23fa6a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def __call__(self, data: KeyedData, ax: Axes, **kwargs) -> KeyedData:
data[self.xKey] if self.xKey is not None else range(len(data[self.valsKey])), # type: ignore
data[self.valsKey], # type: ignore
color=self.color if self.color is not None else None,
marker=self.marker if self.marker is not None else '.',
marker=self.marker if self.marker is not None else ".",
linestyle=self.linestyle if self.linestyle is not None else None,
linewidth=self.linewidth if self.linewidth is not None else None,
markersize=self.markersize if self.markersize is not None else None,
Expand Down

0 comments on commit e23fa6a

Please sign in to comment.