Skip to content

Commit 92312f5

Browse files
committed
remove unused imports and useless empty class Base
Change-Id: I78dbb390cf0afe03d4bcf1aa9ffc9497392579dd
1 parent ebfa3dd commit 92312f5

File tree

1 file changed

+1
-10
lines changed

1 file changed

+1
-10
lines changed

test/functional/tests.py

+1-10
Original file line numberDiff line numberDiff line change
@@ -14,32 +14,23 @@
1414
# See the License for the specific language governing permissions and
1515
# limitations under the License.
1616

17-
import array
1817
from datetime import datetime
1918
import locale
20-
import os
21-
import os.path
2219
import random
2320
import StringIO
24-
import sys
2521
import time
2622
import threading
2723
import uuid
2824
import unittest
29-
import urllib
3025

3126
from test import get_config
32-
from swift import Account, AuthenticationFailed, Connection, Container, \
33-
File, ResponseError
27+
from test.functional.swift import Account, Connection, File, ResponseError
3428

3529
config = get_config()
3630

3731
locale.setlocale(locale.LC_COLLATE, config.get('collate', 'C'))
3832

3933

40-
class Base:
41-
pass
42-
4334
def chunks(s, length=3):
4435
i, j = 0, length
4536
while i < len(s):

0 commit comments

Comments
 (0)