Skip to content

Commit 6251316

Browse files
committed
Fix lint failure on f-string.
1 parent b42d0d6 commit 6251316

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pythonforandroid/distribution.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -140,13 +140,13 @@ def get_distribution(
140140
# If any dist has perfect recipes, arch and NDK API, return it
141141
for dist in possible_dists:
142142
if force_build:
143-
debug(f"Skipping dist due to forced build")
143+
debug("Skipping dist due to forced build")
144144
continue
145145
if ndk_api is not None and dist.ndk_api != ndk_api:
146-
debug(f"Skipping dist due to ndk_api mismatch")
146+
debug("Skipping dist due to ndk_api mismatch")
147147
continue
148148
if not all(arch_name in dist.archs for arch_name in archs):
149-
debug(f"Skipping dist due to arch mismatch")
149+
debug("Skipping dist due to arch mismatch")
150150
continue
151151
if (set(dist.recipes) == set(recipes) or
152152
(set(recipes).issubset(set(dist.recipes)) and

0 commit comments

Comments
 (0)