From 50a0f842d4001b4b542cde61753cf1177b3a6d45 Mon Sep 17 00:00:00 2001 From: melissaml Date: Thu, 8 Feb 2018 09:34:55 +0800 Subject: [PATCH] Remove redundant "the" from a docstring Change-Id: I6d76109d5da52c3ec35ed2710815b6593a4b02ce --- ironic_inspector/common/lldp_parsers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ironic_inspector/common/lldp_parsers.py b/ironic_inspector/common/lldp_parsers.py index d2055158d..1f7c21a78 100644 --- a/ironic_inspector/common/lldp_parsers.py +++ b/ironic_inspector/common/lldp_parsers.py @@ -99,7 +99,7 @@ class LLDPParser(object): self.nv_dict.setdefault(name, []).append(value) def add_single_value(self, struct, name, data): - """Add a single name/value pair the the nv dict""" + """Add a single name/value pair to the nv dict""" self.set_value(name, struct.value) def parse_tlv(self, tlv_type, data):