Skip to content

Commit

Permalink
Fix lint issue with micropkg typing (#3673)
Browse files Browse the repository at this point in the history
Signed-off-by: Merel Theisen <[email protected]>
  • Loading branch information
merelcht committed Mar 7, 2024
1 parent 5481707 commit 32adbc8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion kedro/framework/cli/micropkg.py
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,8 @@ def _pull_package( # noqa: PLR0913
)
package_name = packages[0]

package_reqs = _get_all_library_reqs(library_meta)
# Type ignored because of https://github.com/pypa/build/pull/693
package_reqs = _get_all_library_reqs(library_meta) # type: ignore[arg-type]

if package_reqs:
requirements_txt = metadata.project_path / "requirements.txt"
Expand Down

0 comments on commit 32adbc8

Please sign in to comment.