Skip to content

Commit 14d64e9

Browse files
committed
more fixes
1 parent 5ed0a8e commit 14d64e9

File tree

2 files changed

+1
-13
lines changed

2 files changed

+1
-13
lines changed

requirements-dev.txt

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,6 @@
22
coverage
33
flake8<3.8
44
flake8-import-order
5-
funcsigs
6-
linecache2
7-
mccabe
8-
MiniMock
95
mock
106
nose
11-
pbr
12-
pep8
13-
pyflakes
14-
six
15-
traceback2
167
unittest2

zanataclient/parseconfig.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
)
2525

2626
import os.path
27+
from collections import OrderedDict
2728
from xml.dom import minidom
2829

2930
from .zanatalib.logger import Logger
@@ -34,10 +35,6 @@
3435
except ImportError:
3536
from configparser import ConfigParser
3637

37-
try:
38-
from collections import OrderedDict
39-
except ImportError:
40-
from ordereddict import OrderedDict
4138

4239
project_config = {}
4340

0 commit comments

Comments
 (0)