Skip to content

Commit d8f61f8

Browse files
committed
Fix a linting problem.
1 parent 68ab7e4 commit d8f61f8

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Platforms/Apple/__main__.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,10 @@ def framework_path(host_triple: str, multiarch: str) -> Path:
440440
:param host_triple: The host triple (e.g., arm64-apple-ios-simulator)
441441
:param multiarch: The multiarch identifier (e.g., arm64-simulator)
442442
"""
443-
return CROSS_BUILD_DIR / f"{host_triple}/Platforms/Apple/iOS/Frameworks/{multiarch}"
443+
return (
444+
CROSS_BUILD_DIR
445+
/ f"{host_triple}/Platforms/Apple/iOS/Frameworks/{multiarch}"
446+
)
444447

445448

446449
def package_version(prefix_path: Path) -> str:

0 commit comments

Comments
 (0)