Skip to content

Commit

Permalink
Added some blank lines to make pep8 happy
Browse files Browse the repository at this point in the history
  • Loading branch information
inclement committed Feb 16, 2020
1 parent b3e7676 commit 7fcf06b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pythonforandroid/patching.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,15 +71,18 @@ def is_x(recipe, **kwargs):
return recipe.ctx.ndk == ndk
return is_x


def is_version_gt(version):
def is_x(recipe, **kwargs):
return LooseVersion(recipe.version) > version


def is_version_lt(version):
def is_x(recipe, **kwargs):
return LooseVersion(recipe.version) < version
return is_x


def version_starts_with(version):
def is_x(recipe, **kwargs):
return recipe.version.startswith(version)
Expand Down

0 comments on commit 7fcf06b

Please sign in to comment.