Skip to content

Commit

Permalink
fix(mypy): Ignore type error from bug
Browse files Browse the repository at this point in the history
  • Loading branch information
defrank committed Oct 14, 2024
1 parent fffe428 commit f9cebfa
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion terraform/infrastructure/frankencluster/dodo.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ def __call__(self, *args, **kwargs):

@classmethod
def with_params(cls, params: list[dict]) -> Callable[[Callable], Self]:
return partial(cls, params=params)
# TODO: https://github.com/python/mypy/issues/17646#issuecomment-2281182505
return partial(cls, params=params) # type: ignore[misc]


@task
Expand Down

0 comments on commit f9cebfa

Please sign in to comment.