Skip to content
Snippets Groups Projects
Commit 26ec6a13 authored by Chris Lamb's avatar Chris Lamb :eyes:
Browse files

diffoscope.main: Add spaces around operators.

parent 990f4737
No related branches found
No related tags found
No related merge requests found
......@@ -266,7 +266,7 @@ class RangeCompleter(object):
tmp = end
end = start
start = tmp
self.choices = range(start, end + 1, int((end-start+1)/divisions))
self.choices = range(start, end + 1, int((end - start + 1) / divisions))
def __call__(self, prefix, **kwargs):
return (str(i) for i in self.choices if str(i).startswith(prefix))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment