Skip to content

Commit

Permalink
style
Browse files Browse the repository at this point in the history
  • Loading branch information
Jackenmen committed Mar 21, 2024
1 parent d0dd2f9 commit 0687339
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/scripts/merge_requirements.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,11 +176,7 @@ def iter_envs(envs: Iterable[str]) -> Iterable[Tuple[str, str]]:
)
)

new_marker = (
f"({req.marker}) and ({env_marker})"
if req.marker is not None
else env_marker
)
new_marker = f"({req.marker}) and ({env_marker})" if req.marker is not None else env_marker
req.marker = Marker(new_marker)
if base_req is not None and base_req.marker == req.marker:
continue
Expand Down

0 comments on commit 0687339

Please sign in to comment.