Skip to content
Snippets Groups Projects
Commit 0ce3cf7f authored by Campbell Barton's avatar Campbell Barton
Browse files

Code cleanup: whitespace

parent a274f6ae
Branches
Tags
No related merge requests found
...@@ -40,6 +40,7 @@ class GitCommit: ...@@ -40,6 +40,7 @@ class GitCommit:
"_files", "_files",
"_files_status", "_files_status",
) )
def __init__(self, sha1, git_dir): def __init__(self, sha1, git_dir):
self.sha1 = sha1 self.sha1 = sha1
self._git_dir = git_dir self._git_dir = git_dir
...@@ -51,7 +52,6 @@ class GitCommit: ...@@ -51,7 +52,6 @@ class GitCommit:
self._files_status = \ self._files_status = \
None None
def _log_format(self, format, args=()): def _log_format(self, format, args=()):
# sha1 = self.sha1.decode('ascii') # sha1 = self.sha1.decode('ascii')
cmd = ( cmd = (
...@@ -171,6 +171,7 @@ class CreditUser: ...@@ -171,6 +171,7 @@ class CreditUser:
"year_min", "year_min",
"year_max", "year_max",
) )
def __init__(self): def __init__(self):
self.commit_total = 0 self.commit_total = 0
...@@ -179,6 +180,7 @@ class Credits: ...@@ -179,6 +180,7 @@ class Credits:
__slots__ = ( __slots__ = (
"users", "users",
) )
def __init__(self): def __init__(self):
self.users = {} self.users = {}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment