diff options
author | Timotej Lazar <timotej.lazar@fri.uni-lj.si> | 2015-12-22 15:39:55 +0100 |
---|---|---|
committer | Timotej Lazar <timotej.lazar@fri.uni-lj.si> | 2015-12-22 15:39:55 +0100 |
commit | 1925a08740689f49af5355110a7624f367fa1e8e (patch) | |
tree | 3ad7800e40fae16095d7044f497a80daccf0b35e /monkey | |
parent | f4d7b0e5963f3b1fd3f0eab0be3eef01131cf2d9 (diff) |
Remove a stray "pass"
Diffstat (limited to 'monkey')
-rw-r--r-- | monkey/edits.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/monkey/edits.py b/monkey/edits.py index 223e159..447b71b 100644 --- a/monkey/edits.py +++ b/monkey/edits.py @@ -109,7 +109,6 @@ def get_edits_from_trace(trace, test, id): break if not (orig_next and orig_next.val[0] == action.text): new_pos_end += 1 - pass if new_pos_start != new_pos_end: new_open_edits.append([start_tree, start_tokens, path, new_pos_start, new_pos_end]) open_edits = new_open_edits |