Skip to content

Commit

Permalink
Run black
Browse files Browse the repository at this point in the history
  • Loading branch information
Rot127 committed Dec 6, 2024
1 parent a81e770 commit 16803a0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions suite/auto-sync/src/autosync/ASUpdater.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,14 +118,14 @@ def patch_main_header(self) -> list:
builder = CompatHeaderBuilder(
v6=main_header,
v5=get_path("{CS_INCLUDE_DIR}").joinpath(f"arm64.h"),
arch="aarch64"
arch="aarch64",
)
builder.generate_v5_compat_header()
elif self.arch == "AArch64":
builder = CompatHeaderBuilder(
v6=main_header,
v5=get_path("{CS_INCLUDE_DIR}").joinpath(f"systemz_compatibility.h"),
arch="systemz"
arch="systemz",
)
builder.generate_v5_compat_header()
return patched
Expand Down

0 comments on commit 16803a0

Please sign in to comment.