Skip to content

Commit

Permalink
Make plotInfo non-optional
Browse files Browse the repository at this point in the history
  • Loading branch information
arunkannawadi committed Dec 21, 2022
1 parent 04a3cdf commit 507775f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def _validateInput(self, data: KeyedData, **kwargs) -> None:
def makePlot(
self,
data: KeyedData,
plotInfo: Mapping[str, str] | None = None,
plotInfo: Mapping[str, str],
**kwargs,
) -> Figure:
"""Make stellar locus plots using pre fitted values.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ def makePlot(
self,
data: KeyedData,
skymap: BaseSkyMap,
plotInfo: Optional[Mapping[str, str]] = None,
plotInfo: Mapping[str, str],
sumStats: Optional[Mapping] = None,
**kwargs,
) -> Figure:
Expand Down

0 comments on commit 507775f

Please sign in to comment.