36 (list of string) |
38 (list of string) |
37 @param fixCodes list of codes to be fixed as a comma separated |
39 @param fixCodes list of codes to be fixed as a comma separated |
38 string (string) |
40 string (string) |
39 @param inPlace flag indicating to modify the file in place (boolean) |
41 @param inPlace flag indicating to modify the file in place (boolean) |
40 """ |
42 """ |
41 super().__init__() |
43 super(Pep8Fixer, self).__init__() |
42 |
44 |
43 self.__project = project |
45 self.__project = project |
44 self.__filename = filename |
46 self.__filename = filename |
45 self.__origName = "" |
47 self.__origName = "" |
46 self.__source = sourceLines[:] # save a copy |
48 self.__source = sourceLines[:] # save a copy |