py3: Remove "from six.moves import range".

This is no longer required, since in Python 3, this is what the range
built-in does.
This commit is contained in:
rht
2017-10-14 10:46:09 +02:00
committed by Tim Abbott
parent 2f3ae84e5a
commit 691598a88b
31 changed files with 6 additions and 34 deletions

View File

@@ -2,7 +2,6 @@ import itertools
import ujson
import random
from typing import List, Dict, Any, Text, Optional
from six.moves import range
def load_config():
# type: () -> Dict [str, Any]