Skip to content

Commit

Permalink
fix: resolving lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
krishnanand5 committed Aug 23, 2024
1 parent 4fdfcd1 commit 042eb70
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 1 addition & 0 deletions example/py-shiny/example_pyshiny_reactive_scatter.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ def create_reactivebarplot():
ax.set_xlabel(input.x_var().replace("_", " ").title())
ax.set_ylabel(input.y_var().replace("_", " ").title()) # Hello
return s_plot

output.reactivebarplot = render_maidr(create_reactivebarplot)


Expand Down
4 changes: 1 addition & 3 deletions maidr/patch/histogram.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,7 @@


@wrapt.patch_function_wrapper(Axes, "hist")
def mpl_hist(
wrapped, _, args, kwargs
) -> tuple[
def mpl_hist(wrapped, _, args, kwargs) -> tuple[
np.ndarray | list[np.ndarray],
np.ndarray,
BarContainer | Polygon | list[BarContainer | Polygon],
Expand Down

0 comments on commit 042eb70

Please sign in to comment.