Improve comformance to pep8 (+dos2unix)

PyGithub is now a public projects with several public contibutors,
I have to abandon my very personal coding conventions.
This commit is contained in:
Vincent Jacques
2012-09-17 20:37:22 +02:00
parent 7f61adcaf5
commit 531c3f2d32
107 changed files with 5245 additions and 5094 deletions
+4 -3
View File
@@ -11,12 +11,13 @@
# You should have received a copy of the GNU Lesser General Public License along with PyGithub. If not, see <http://www.gnu.org/licenses/>.
class InputFileContent( object ):
def __init__( self, content ):
class InputFileContent(object):
def __init__(self, content):
self.__content = content
@property
def _identity( self ):
def _identity(self):
return {
"content": self.__content,
}