diff mbox series

[v3,19/21] git-p4: only seperate code blocks by a single empty line

Message ID 20220116160550.514637-20-jholdsworth@nvidia.com (mailing list archive)
State Superseded
Headers show
Series git-p4: Various code tidy-ups | expand

Commit Message

Joel Holdsworth Jan. 16, 2022, 4:05 p.m. UTC
PEP8 recommends that blank lines should be used sparingly to separate
sections in the "Blank Lines" section:

https://www.python.org/dev/peps/pep-0008/#blank-lines

This patch replaces all double blank-line separations with a single
blank line.

Signed-off-by: Joel Holdsworth <jholdsworth@nvidia.com>
---
 git-p4.py | 3 ---
 1 file changed, 3 deletions(-)
diff mbox series

Patch

diff --git a/git-p4.py b/git-p4.py
index d98ed09f84..accb1b0f1d 100755
--- a/git-p4.py
+++ b/git-p4.py
@@ -3579,7 +3579,6 @@  def getBranchMapping(self):
                 if source not in self.knownBranches:
                     lostAndFoundBranches.add(source)
 
-
         for branch in lostAndFoundBranches:
             self.knownBranches[branch] = branch
 
@@ -3803,7 +3802,6 @@  def importHeadRevision(self, revision):
                 sys.stderr.write("p4 exitcode: %s\n" % info['p4ExitCode'])
                 sys.exit(1)
 
-
             change = int(info["change"])
             if change > newestRevision:
                 newestRevision = change
@@ -3831,7 +3829,6 @@  def importHeadRevision(self, revision):
             print("IO error details: {}".format(err))
             print(self.gitError.read())
 
-
     def importRevisions(self, args, branch_arg_given):
         changes = []