Skip to content

Commit

Permalink
Update click.py
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasz-migas committed Sep 25, 2024
1 parent 110ff3e commit 37104bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/koyo/click.py
Original file line number Diff line number Diff line change
Expand Up @@ -511,7 +511,7 @@ def filter_kwargs(*allowed: str, **kwargs: ty.Any) -> dict[str, ty.Any]:
return {key: value for key, value in kwargs.items() if key in allowed}


def exit_with_error(skip_error: bool = False):
def exit_with_error(skip_error: bool = False) -> int | None:
"""Skip error or exit with error."""
import sys

Expand Down

0 comments on commit 37104bd

Please sign in to comment.