Skip to content

Commit

Permalink
Fix type lint issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Yang committed Apr 13, 2022
1 parent 04bee55 commit f7be590
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion metricflow/cli/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def start_end_time_options(function: Callable) -> Callable:
return function


def separated_by_comma_option(option_name: str, help_msg: str = "", required=True) -> Callable:
def separated_by_comma_option(option_name: str, help_msg: str = "", required: bool = True) -> Callable:
"""Parse input containing a string separated by commma to a List."""

def wraps(function: Callable) -> Callable:
Expand Down

0 comments on commit f7be590

Please sign in to comment.