239 "RepeatMessages": False, |
239 "RepeatMessages": False, |
240 "FixCodes": "", |
240 "FixCodes": "", |
241 "FixIssues": False, |
241 "FixIssues": False, |
242 } |
242 } |
243 if "MaxLineLength" not in self.__data: |
243 if "MaxLineLength" not in self.__data: |
244 self.__data["MaxLineLength"] = pep8.MAX_LINE_LENGTH, |
244 self.__data["MaxLineLength"] = pep8.MAX_LINE_LENGTH |
245 if "HangClosing" not in self.__data: |
245 if "HangClosing" not in self.__data: |
246 self.__data["HangClosing"] = False |
246 self.__data["HangClosing"] = False |
247 if "NoFixCodes" not in self.__data: |
247 if "NoFixCodes" not in self.__data: |
248 self.__data["NoFixCodes"] = "E501" |
248 self.__data["NoFixCodes"] = "E501" |
249 |
249 |