Skip to content

Commit e6b2222

Browse files
committed
style: Appease flake8
1 parent 4a5e765 commit e6b2222

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/patchwork/helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def next_path(path_pattern):
4646
# We call this interval (a..b] and narrow it down until a + 1 = b
4747
a, b = (i // 2, i)
4848
while a + 1 < b:
49-
c = (a + b) // 2 # interval midpoint
49+
c = (a + b) // 2 # interval midpoint
5050
a, b = (c, b) if os.path.exists(path_pattern % c) else (a, c)
5151

5252
return path_pattern % b

0 commit comments

Comments
 (0)