Skip to content

Commit

Permalink
fix: linter errors
Browse files Browse the repository at this point in the history
  • Loading branch information
matveypashkovskiy committed Mar 31, 2021
1 parent f303ef8 commit bba133d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pytest_rts/utils/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,8 @@ def intersect_with_surroundings(changed_lines: Set[int], mapped_lines: Set[int])
mapped_lines | 2 3 10 11 12 20 21 22
result | 2 3 10 21 22
Algorithm could be improved. See conversation: https://github.com/F-Secure/pytest-rts/pull/103#pullrequestreview-625312058
Algorithm could be improved. See conversation:
https://github.com/F-Secure/pytest-rts/pull/103#pullrequestreview-625312058
"""
mapped = changed_lines.intersection(mapped_lines)
unmapped = changed_lines.difference(mapped)
Expand Down

0 comments on commit bba133d

Please sign in to comment.