Plugins/CheckerPlugins/Pep8/Pep8Fixer.py

changeset 1131
7781e396c903
parent 1031
c0f795aa71a7
child 1203
2e9f25df356f
equal deleted inserted replaced
1130:3e9f0330f833 1131:7781e396c903
36 (list of string) 36 (list of string)
37 @param fixCodes list of codes to be fixed as a comma separated 37 @param fixCodes list of codes to be fixed as a comma separated
38 string (string) 38 string (string)
39 @param inPlace flag indicating to modify the file in place (boolean) 39 @param inPlace flag indicating to modify the file in place (boolean)
40 """ 40 """
41 QObject.__init__(self) 41 super().__init__()
42 42
43 self.__project = project 43 self.__project = project
44 self.__filename = filename 44 self.__filename = filename
45 self.__origName = "" 45 self.__origName = ""
46 self.__source = sourceLines[:] # save a copy 46 self.__source = sourceLines[:] # save a copy

eric ide

mercurial