Skip to content

Commit

Permalink
Merge pull request #972 from pywbem/andy/#812-minor-todos-recorder
Browse files Browse the repository at this point in the history
Fixes minor Pylint TODOs in _recorder.py
  • Loading branch information
andy-maier committed Jan 17, 2018
2 parents 795795d + 57ff292 commit e473307
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions pywbem/_recorder.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,17 +22,15 @@

from __future__ import print_function, absolute_import
from collections import namedtuple

try:
from collections import OrderedDict # pylint: disable=import-error
except ImportError:
from ordereddict import OrderedDict # pylint: disable=import-error

from datetime import datetime, timedelta
import logging
import six
import yaml
from yaml.representer import RepresenterError
import six

from .cim_obj import CIMInstance, CIMInstanceName, CIMClass, CIMClassName, \
CIMProperty, CIMMethod, CIMParameter, CIMQualifier, \
Expand Down

0 comments on commit e473307

Please sign in to comment.