Skip to content

Commit

Permalink
ignore weird typing error
Browse files Browse the repository at this point in the history
  • Loading branch information
ajparsons committed Sep 1, 2023
1 parent d325457 commit e54b0fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/data_common/helpers/pipe.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# pyright: strict
from typing import Iterator, Any
from itertools import product
from typing import Any, Iterator


def iter_format(
Expand All @@ -25,6 +25,6 @@ def pos_from_keyword(p: dict[str, Any]) -> Iterator[str]:
x += 1

for p in parameters:
kw_parameters = label_parameters(p)
kw_parameters = label_parameters(p) # type: ignore
pos_parameters = list(pos_from_keyword(kw_parameters))
yield str_source.format(*pos_parameters, **kw_parameters)

0 comments on commit e54b0fd

Please sign in to comment.