Skip to content

Commit

Permalink
Lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
agjohnson committed Mar 22, 2018
1 parent 863b4af commit 54edcf0
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions readthedocs/vcs_support/backends/git.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,11 @@ def repo_exists(self):
return code == 0

def are_submodules_available(self):
"""Test whether git submodule checkout step should be performed
"""
Test whether git submodule checkout step should be performed.
.. note::
Temporarily, we support skipping these steps as submodule step can
fail if using private submodules. This will eventually be
configureable with our YAML config.
Expand Down Expand Up @@ -85,9 +87,11 @@ def checkout_revision(self, revision=None):
return [code, out, err]

def clone(self):
"""Clone the repository
"""
Clone the repository.
.. note::
Temporarily, we support skipping submodule recursive clone via a
feature flag. This will eventually be configureable with our YAML
config.
Expand Down

0 comments on commit 54edcf0

Please sign in to comment.