Skip to content

Commit 1e3faf9

Browse files
author
Anh Tran
committed
Remove unused logging import
Change-Id: I9edf4075ffea2e8d42283bd654b74cd4ab4a3638
1 parent 98d5641 commit 1e3faf9

3 files changed

Lines changed: 0 additions & 13 deletions

File tree

openstackclient/common/client_config.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,10 @@
1313

1414
"""OpenStackConfig subclass for argument compatibility"""
1515

16-
import logging
17-
1816
from os_client_config import exceptions as occ_exceptions
1917
from osc_lib.cli import client_config
2018

2119

22-
LOG = logging.getLogger(__name__)
23-
24-
2520
# Sublcass OpenStackConfig in order to munge config values
2621
# before auth plugins are loaded
2722
class OSC_Config(client_config.OSC_Config):

openstackclient/network/v2/network_qos_rule.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
# under the License.
1515

1616
import itertools
17-
import logging
1817
import six
1918

2019
from osc_lib.command import command
@@ -25,8 +24,6 @@
2524
from openstackclient.network import sdk_utils
2625

2726

28-
LOG = logging.getLogger(__name__)
29-
3027
RULE_TYPE_BANDWIDTH_LIMIT = 'bandwidth-limit'
3128
RULE_TYPE_DSCP_MARKING = 'dscp-marking'
3229
RULE_TYPE_MINIMUM_BANDWIDTH = 'minimum-bandwidth'

openstackclient/network/v2/network_qos_rule_type.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,12 @@
1313
# License for the specific language governing permissions and limitations
1414
# under the License.
1515

16-
import logging
17-
1816
from osc_lib.command import command
1917
from osc_lib import utils
2018

2119
from openstackclient.i18n import _
2220

2321

24-
LOG = logging.getLogger(__name__)
25-
26-
2722
class ListNetworkQosRuleType(command.Lister):
2823
_description = _("List QoS rule types")
2924

0 commit comments

Comments
 (0)