Skip to content

Commit

Permalink
Add pylint disable for C0103 triggering on cc attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
shidarin committed Jun 14, 2014
1 parent fe7b100 commit 78715b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cdl_convert/cdl_convert.py
Original file line number Diff line number Diff line change
Expand Up @@ -1154,7 +1154,7 @@ def parse_xml_color_correction(self, xml_element):
else:
# Parse the ColorCorrectionRef
ref_id = cc_elem.attrib['ref']
self.cc = ColorCorrectionReference(ref_id)
self.cc = ColorCorrectionReference(ref_id) # pylint: disable=C0103
self.cc.parent = self
else:
# Parse the ColorCorrection
Expand Down

0 comments on commit 78715b2

Please sign in to comment.