Skip to content

Commit

Permalink
more coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
krneta committed Oct 17, 2023
1 parent dfb1ca2 commit c6dce89
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -161,20 +161,21 @@ def function_15(*args, a0: int) -> int:
pass


def function_16(a0: int | list) -> int:
def function_16(a0: int | list, a1: bool & float) -> int:
"""This is a description.
Args:
a0 (int | list): This is a parameter
a1 (bool & float): This is a parameter also
Returns:
int: value of the function
"""
pass


def function_17(*, a0: int | list) -> int:
def function_17(*, a0: int) -> int:
"""This is a description.
Args:
a0 (int | list): This is a parameter
a0 (int): This is a parameter
Returns:
int: value of the function
"""
Expand Down

0 comments on commit c6dce89

Please sign in to comment.