Skip to content

Commit

Permalink
PEP8
Browse files Browse the repository at this point in the history
  • Loading branch information
misl6 committed May 26, 2024
1 parent b283b87 commit a6ed9ae
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion buildozer/targets/android.py
Original file line number Diff line number Diff line change
Expand Up @@ -1306,7 +1306,9 @@ def build_package(self):
pass

build_tools_versions = os.listdir(join(self.android_sdk_dir, "build-tools"))
build_tools_versions = sorted(build_tools_versions, key=packaging.version.parse)
build_tools_versions = sorted(
build_tools_versions, key=packaging.version.parse
)
build_tools_version = build_tools_versions[-1]
gradle_files = ["build.gradle", "gradle", "gradlew"]
is_gradle_build = build_tools_version >= "25.0" and any(
Expand Down

0 comments on commit a6ed9ae

Please sign in to comment.