pep8: Fix E303 violations.

This commit is contained in:
Sidhant Bhavnani 2016-12-02 16:18:11 +00:00 committed by Tim Abbott
parent 6eb6016913
commit 2e2b8af9fd
5 changed files with 0 additions and 10 deletions

View file

@ -873,7 +873,6 @@ class P4UserMap(object):
self.users[output["User"]] = output["FullName"] + " <" + output["Email"] + ">"
self.emails[output["Email"]] = output["User"]
s = ''
for (key, val) in self.users.items():
s += "%s\t%s\n" % (key.expandtabs(1), val.expandtabs(1))
@ -959,7 +958,6 @@ class P4RollBack(Command):
log = extractLogMessageFromGitCommit(ref)
settings = extractSettingsGitLog(log)
depotPaths = settings['depot-paths']
change = settings['change']
@ -2480,7 +2478,6 @@ class P4Sync(Command, P4UserMap):
if source not in self.knownBranches:
lostAndFoundBranches.add(source)
for branch in lostAndFoundBranches:
self.knownBranches[branch] = branch
@ -2698,7 +2695,6 @@ class P4Sync(Command, P4UserMap):
sys.stderr.write("p4 exitcode: %s\n" % info['p4ExitCode'])
sys.exit(1)
change = int(info["change"])
if change > newestRevision:
newestRevision = change
@ -2727,7 +2723,6 @@ class P4Sync(Command, P4UserMap):
print("IO error with git fast-import. Is your git version recent enough?")
print(self.gitError.read())
def run(self, args):
self.depotPaths = []
self.changeRange = ""