Skip to content

Commit

Permalink
Fix linter errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
libklein committed Apr 18, 2024
1 parent aca33a5 commit 46b4690
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions typer/utils.py
Expand Up @@ -194,9 +194,9 @@ def get_params_from_function(func: Callable[..., Any]) -> Dict[str, ParamMeta]:

class MultipleSeparatorForNonListTypeError(Exception):
argument_name: str
argument_type: Type
argument_type: Type[Any]

def __init__(self, argument_name: str, argument_type: Type):
def __init__(self, argument_name: str, argument_type: Type[Any]):
self.argument_name = argument_name
self.argument_type = argument_type

Expand Down

0 comments on commit 46b4690

Please sign in to comment.