Skip to content

Commit 7fcf06b

Browse files
committed
Added some blank lines to make pep8 happy
1 parent b3e7676 commit 7fcf06b

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

pythonforandroid/patching.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,15 +71,18 @@ def is_x(recipe, **kwargs):
7171
return recipe.ctx.ndk == ndk
7272
return is_x
7373

74+
7475
def is_version_gt(version):
7576
def is_x(recipe, **kwargs):
7677
return LooseVersion(recipe.version) > version
7778

79+
7880
def is_version_lt(version):
7981
def is_x(recipe, **kwargs):
8082
return LooseVersion(recipe.version) < version
8183
return is_x
8284

85+
8386
def version_starts_with(version):
8487
def is_x(recipe, **kwargs):
8588
return recipe.version.startswith(version)

0 commit comments

Comments
 (0)